From 8497d2960a411f083a5d9470b15716668daafdc6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 27 Oct 2010 11:40:52 -0400 Subject: [PATCH 001/118] Show social activities as notices and activity streams objects --- ActivityPlugin.php | 293 ++++++++++++++++++++++++++++++++++++++++++++ Notice_activity.php | 155 +++++++++++++++++++++++ 2 files changed, 448 insertions(+) create mode 100644 ActivityPlugin.php create mode 100644 Notice_activity.php diff --git a/ActivityPlugin.php b/ActivityPlugin.php new file mode 100644 index 0000000000..0308550315 --- /dev/null +++ b/ActivityPlugin.php @@ -0,0 +1,293 @@ +. + * + * @category Activity + * @package StatusNet + * @author Evan Prodromou + * @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); +} + +/** + * Activity plugin main class + * + * @category Activity + * @package StatusNet + * @author Evan Prodromou + * @copyright 2010 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class ActivityPlugin extends Plugin +{ + const VERSION = '0.1'; + + /** + * Database schema setup + * + * @see Schema + * @see ColumnDef + * + * @return boolean hook value; true means continue processing, false means stop. + */ + + function onCheckSchema() + { + $schema = Schema::get(); + + // For storing the activity part of a notice + + $schema->ensureTable('notice_activity', + array(new ColumnDef('notice_id', 'integer', null, + false, 'PRI'), + new ColumnDef('verb', 'varchar', 255, + false, 'MUL'), + new ColumnDef('object', 'varchar', 255, + true, 'MUL'))); + + return true; + } + + function onAutoload($cls) + { + $dir = dirname(__FILE__); + + switch ($cls) + { + case 'Notice_activity': + include_once $dir . '/'.$cls.'.php'; + return false; + default: + return true; + } + } + + function onEndSubscribe($subscriber, $other) + { + $user = User::staticGet('id', $subscriber->id); + if (!empty($user)) { + $rendered = sprintf(_m('Started following %s.'), + $other->profileurl, + $other->getBestName()); + $content = sprintf(_m('Started following %s.'), + $other->getBestName()); + + $notice = Notice::saveNew($user->id, + $content, + 'activity', + array('rendered' => $rendered)); + + Notice_activity::setActivity($notice->id, + ActivityVerb::FOLLOW, + $other->getUri()); + } + return true; + } + + function onEndUnsubscribe($subscriber, $other) + { + $user = User::staticGet('id', $subscriber->id); + if (!empty($user)) { + $rendered = sprintf(_m('Stopped following %s.'), + $other->profileurl, + $other->getBestName()); + $content = sprintf(_m('Stopped following %s.'), + $other->getBestName()); + + $notice = Notice::saveNew($user->id, + $content, + 'activity', + array('rendered' => $rendered)); + + Notice_activity::setActivity($notice->id, + ActivityVerb::UNFOLLOW, + $other->getUri()); + } + return true; + } + + function onEndFavorNotice($profile, $notice) + { + $user = User::staticGet('id', $profile->id); + + if (!empty($user)) { + $author = Profile::staticGet('id', $notice->profile_id); + $rendered = sprintf(_m('Liked %s\'s status.'), + $notice->bestUrl(), + $author->getBestName()); + $content = sprintf(_m('Liked %s\'s status.'), + $author->getBestName()); + + $notice = Notice::saveNew($user->id, + $content, + 'activity', + array('rendered' => $rendered)); + + Notice_activity::setActivity($notice->id, + ActivityVerb::FAVORITE, + $notice->uri); + } + return true; + } + + function onEndDisfavorNotice($profile, $notice) + { + $user = User::staticGet('id', $profile->id); + + if (!empty($user)) { + $author = Profile::staticGet('id', $notice->profile_id); + $rendered = sprintf(_m('Stopped liking %s\'s status.'), + $notice->bestUrl(), + $author->getBestName()); + $content = sprintf(_m('Stopped liking %s\'s status.'), + $author->getBestName()); + + $notice = Notice::saveNew($user->id, + $content, + 'activity', + array('rendered' => $rendered)); + + Notice_activity::setActivity($notice->id, + ActivityVerb::UNFAVORITE, + $notice->uri); + } + return true; + } + + function onEndJoinGroup($group, $user) + { + $rendered = sprintf(_m('Joined the group "%s".'), + $group->homeUrl(), + $group->getBestName()); + $content = sprintf(_m('Joined the group %s.'), + $group->getBestName()); + + $notice = Notice::saveNew($user->id, + $content, + 'activity', + array('rendered' => $rendered)); + + Notice_activity::setActivity($notice->id, + ActivityVerb::JOIN, + $group->getUri()); + return true; + } + + function onEndLeaveGroup($group, $user) + { + $rendered = sprintf(_m('Left the group "%s".'), + $group->homeUrl(), + $group->getBestName()); + $content = sprintf(_m('Left the group "%s".'), + $group->getBestName()); + + $notice = Notice::saveNew($user->id, + $content, + 'activity', + array('rendered' => $rendered)); + + Notice_activity::setActivity($notice->id, + ActivityVerb::LEAVE, + $group->getUri()); + return true; + } + + function onStartActivityVerb(&$notice, &$xs, &$verb) + { + $act = Notice_activity::staticGet('notice_id', $notice->id); + + if (!empty($act)) { + $this->debug("Have an activity ({$act->notice_id}, {$act->verb}, {$act->object})"); + $verb = $act->verb; + } + + return true; + } + + function onStartActivityDefaultObjectType(&$notice, &$xs, &$type) + { + $act = Notice_activity::staticGet('notice_id', $notice->id); + + if (!empty($act)) { + $this->debug("Have an activity ({$act->notice_id}, {$act->verb}, {$act->object})"); + // no default object + return false; + } + + return true; + } + + function onStartActivityObjects(&$notice, &$xs, &$objects) + { + $act = Notice_activity::staticGet('notice_id', $notice->id); + + if (!empty($act)) { + $this->debug("Have an activity ({$act->notice_id}, {$act->verb}, {$act->object})"); + switch ($act->verb) + { + case ActivityVerb::FOLLOW: + case ActivityVerb::UNFOLLOW: + $profile = Profile::fromURI($act->object); + if (!empty($profile)) { + $objects[] = ActivityObject::fromProfile($profile); + } + break; + case ActivityVerb::FAVORITE: + case ActivityVerb::UNFAVORITE: + $notice = Notice::staticGet('uri', $act->object); + if (!empty($notice)) { + $objects[] = $notice->asActivity(); + } + break; + case ActivityVerb::JOIN: + case ActivityVerb::LEAVE: + $group = User_group::staticGet('uri', $act->object); + if (!empty($notice)) { + $objects[] = ActivityObject::fromGroup($group); + } + break; + default: + break; + } + } + return true; + } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Activity', + 'version' => self::VERSION, + 'author' => 'Evan Prodromou', + 'homepage' => 'http://status.net/wiki/Plugin:Activity', + 'rawdescription' => + _m('Emits notices when social activities happen.')); + return true; + } +} diff --git a/Notice_activity.php b/Notice_activity.php new file mode 100644 index 0000000000..90d280dfc4 --- /dev/null +++ b/Notice_activity.php @@ -0,0 +1,155 @@ + + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * StatusNet - the distributed open-source microblogging tool + * Copyright (C) 2009, 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); +} + +require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; + +/** + * Data class for saving social activities as notices + * + * @category Action + * @package StatusNet + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 + * @link http://status.net/ + * + * @see DB_DataObject + */ + +class Notice_activity extends Memcached_DataObject +{ + public $__table = 'notice_activity'; // table name + + public $notice_id; // int(4) primary_key not_null + public $verb; // varchar(255) + public $object; // varchar(255) + + /** + * 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 'notice_id' for this class) + * @param mixed $v Value to lookup + * + * @return Notice_activity object found, or null for no hits + * + */ + + function staticGet($k, $v=null) + { + common_debug("Notice_activity::staticGet($k, $v)"); + $result = Memcached_DataObject::staticGet('Notice_activity', $k, $v); + return $result; + } + + /** + * return table definition for DB_DataObject + * + * DB_DataObject needs to know something about the table to manipulate + * instances. This method provides all the DB_DataObject needs to know. + * + * @return array array of column definitions + */ + function table() + { + return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, + 'verb' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, + 'object' => DB_DATAOBJECT_STR); + } + + /** + * return key definitions for DB_DataObject + * + * DB_DataObject needs to know about keys that the table has, since it + * won't appear in StatusNet's own keys list. In most cases, this will + * simply reference your keyTypes() function. + * + * @return array list of key field names + */ + + function keys() + { + return array_keys($this->keyTypes()); + } + + /** + * return key definitions for Memcached_DataObject + * + * Our caching system uses the same key definitions, but uses a different + * method to get them. This key information is used to store and clear + * cached data, so be sure to list any key that will be used for static + * lookups. + * + * @return array associative array of key definitions, field name to type: + * 'K' for primary key: for compound keys, add an entry for each component; + * 'U' for unique keys: compound keys are not well supported here. + */ + function keyTypes() + { + return array('notice_id' => 'K'); + } + + /** + * Magic formula for non-autoincrementing integer primary keys + * + * If a table has a single integer column as its primary key, DB_DataObject + * assumes that the column is auto-incrementing and makes a sequence table + * to do this incrementation. Since we don't need this for our class, we + * overload this method and return the magic formula that DB_DataObject needs. + * + * @return array magic three-false array that stops auto-incrementing. + */ + + function sequenceKey() + { + return array(false, false, false); + } + + static function setActivity($notice_id, $verb, $object=null) + { + $act = self::staticGet('notice_id', $notice_id); + + if (empty($act)) { + $act = new Notice_activity(); + $act->notice_id = $notice_id; + $act->verb = $verb; + $act->object = $object; + $act->insert(); + } else { + $orig = clone($act); + $act->verb = $verb; + $act->object = $object; + $act->update($orig); + } + } +} From 861b2c56d90612f4f3d2dc880abb2db1b2d0fb5a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 27 Oct 2010 11:44:08 -0400 Subject: [PATCH 002/118] add license file --- COPYING | 661 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 661 insertions(+) create mode 100644 COPYING diff --git a/COPYING b/COPYING new file mode 100644 index 0000000000..dba13ed2dd --- /dev/null +++ b/COPYING @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. From f5a764117faf4f97e7ece22157b3cebb4bfd0365 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 27 Oct 2010 11:45:02 -0400 Subject: [PATCH 003/118] remove debugging statements --- ActivityPlugin.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/ActivityPlugin.php b/ActivityPlugin.php index 0308550315..769ff36930 100644 --- a/ActivityPlugin.php +++ b/ActivityPlugin.php @@ -224,7 +224,6 @@ class ActivityPlugin extends Plugin $act = Notice_activity::staticGet('notice_id', $notice->id); if (!empty($act)) { - $this->debug("Have an activity ({$act->notice_id}, {$act->verb}, {$act->object})"); $verb = $act->verb; } @@ -236,7 +235,6 @@ class ActivityPlugin extends Plugin $act = Notice_activity::staticGet('notice_id', $notice->id); if (!empty($act)) { - $this->debug("Have an activity ({$act->notice_id}, {$act->verb}, {$act->object})"); // no default object return false; } @@ -249,7 +247,6 @@ class ActivityPlugin extends Plugin $act = Notice_activity::staticGet('notice_id', $notice->id); if (!empty($act)) { - $this->debug("Have an activity ({$act->notice_id}, {$act->verb}, {$act->object})"); switch ($act->verb) { case ActivityVerb::FOLLOW: From 90aecd0e8cce32f47cf37beb2ac06d9894f874e6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 15 Nov 2010 10:38:49 -0500 Subject: [PATCH 004/118] gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..b25c15b81f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ From 2c5de55b4bbe2255ddc19136905a21bd4261c796 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 6 Dec 2010 15:21:21 -0500 Subject: [PATCH 005/118] remove common_debug() from Notice_activity::staticGet() --- Notice_activity.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Notice_activity.php b/Notice_activity.php index 90d280dfc4..abc5f59c8f 100644 --- a/Notice_activity.php +++ b/Notice_activity.php @@ -67,7 +67,6 @@ class Notice_activity extends Memcached_DataObject function staticGet($k, $v=null) { - common_debug("Notice_activity::staticGet($k, $v)"); $result = Memcached_DataObject::staticGet('Notice_activity', $k, $v); return $result; } From 65bbd991c286b045be1bf9a7015112a0c48c149d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 6 Dec 2010 15:21:34 -0500 Subject: [PATCH 006/118] Use new hooks for Notice::asActivity() Changed the atom activity generation code so it uses the new hooks built into Notice::asActivity() rather than the hooks in the old Notice::asAtomEntry(). --- ActivityPlugin.php | 46 ++++++++++++++++------------------------------ 1 file changed, 16 insertions(+), 30 deletions(-) diff --git a/ActivityPlugin.php b/ActivityPlugin.php index 769ff36930..c6d79f0cd8 100644 --- a/ActivityPlugin.php +++ b/ActivityPlugin.php @@ -219,64 +219,50 @@ class ActivityPlugin extends Plugin return true; } - function onStartActivityVerb(&$notice, &$xs, &$verb) + function onEndNoticeAsActivity($notice, &$activity) { - $act = Notice_activity::staticGet('notice_id', $notice->id); + $na = Notice_activity::staticGet('notice_id', $notice->id); - if (!empty($act)) { - $verb = $act->verb; - } + if (!empty($na)) { - return true; - } + $activity->verb = $na->verb; - function onStartActivityDefaultObjectType(&$notice, &$xs, &$type) - { - $act = Notice_activity::staticGet('notice_id', $notice->id); + // wipe the old object! - if (!empty($act)) { - // no default object - return false; - } + $activity->objects = array(); - return true; - } - - function onStartActivityObjects(&$notice, &$xs, &$objects) - { - $act = Notice_activity::staticGet('notice_id', $notice->id); - - if (!empty($act)) { - switch ($act->verb) + switch ($na->verb) { case ActivityVerb::FOLLOW: case ActivityVerb::UNFOLLOW: - $profile = Profile::fromURI($act->object); + $profile = Profile::fromURI($na->object); if (!empty($profile)) { - $objects[] = ActivityObject::fromProfile($profile); + $activity->objects[] = ActivityObject::fromProfile($profile); } break; case ActivityVerb::FAVORITE: case ActivityVerb::UNFAVORITE: - $notice = Notice::staticGet('uri', $act->object); - if (!empty($notice)) { - $objects[] = $notice->asActivity(); + $target = Notice::staticGet('uri', $na->object); + if (!empty($target)) { + $activity->objects[] = ActivityObject::fromNotice($target); } break; case ActivityVerb::JOIN: case ActivityVerb::LEAVE: - $group = User_group::staticGet('uri', $act->object); + $group = User_group::staticGet('uri', $na->object); if (!empty($notice)) { - $objects[] = ActivityObject::fromGroup($group); + $activity->objects[] = ActivityObject::fromGroup($group); } break; default: break; } } + return true; } + function onPluginVersion(&$versions) { $versions[] = array('name' => 'Activity', From 82db24831bed70e9828192868578241d9006eff0 Mon Sep 17 00:00:00 2001 From: Marcel van der Boom Date: Tue, 14 Dec 2010 14:27:37 +0100 Subject: [PATCH 007/118] Include a link in the plain text too for (un)favored notices, (un)subbed groups etc. --- ActivityPlugin.php | 30 ++++++++++++++++++------------ Notice_activity.php | 1 + 2 files changed, 19 insertions(+), 12 deletions(-) diff --git a/ActivityPlugin.php b/ActivityPlugin.php index c6d79f0cd8..c5f98f8617 100644 --- a/ActivityPlugin.php +++ b/ActivityPlugin.php @@ -96,8 +96,9 @@ class ActivityPlugin extends Plugin $rendered = sprintf(_m('Started following %s.'), $other->profileurl, $other->getBestName()); - $content = sprintf(_m('Started following %s.'), - $other->getBestName()); + $content = sprintf(_m('Started following %s : %s'), + $other->getBestName(), + $other->profileurl); $notice = Notice::saveNew($user->id, $content, @@ -118,8 +119,9 @@ class ActivityPlugin extends Plugin $rendered = sprintf(_m('Stopped following %s.'), $other->profileurl, $other->getBestName()); - $content = sprintf(_m('Stopped following %s.'), - $other->getBestName()); + $content = sprintf(_m('Stopped following %s : %s'), + $other->getBestName(), + $other->profileurl); $notice = Notice::saveNew($user->id, $content, @@ -142,8 +144,9 @@ class ActivityPlugin extends Plugin $rendered = sprintf(_m('Liked %s\'s status.'), $notice->bestUrl(), $author->getBestName()); - $content = sprintf(_m('Liked %s\'s status.'), - $author->getBestName()); + $content = sprintf(_m('Liked %s\'s status: %s'), + $author->getBestName(), + $notice->bestUrl()); $notice = Notice::saveNew($user->id, $content, @@ -166,8 +169,9 @@ class ActivityPlugin extends Plugin $rendered = sprintf(_m('Stopped liking %s\'s status.'), $notice->bestUrl(), $author->getBestName()); - $content = sprintf(_m('Stopped liking %s\'s status.'), - $author->getBestName()); + $content = sprintf(_m('Stopped liking %s\'s status: %s'), + $author->getBestName(), + $notice->bestUrl()); $notice = Notice::saveNew($user->id, $content, @@ -186,8 +190,9 @@ class ActivityPlugin extends Plugin $rendered = sprintf(_m('Joined the group "%s".'), $group->homeUrl(), $group->getBestName()); - $content = sprintf(_m('Joined the group %s.'), - $group->getBestName()); + $content = sprintf(_m('Joined the group %s : %s'), + $group->getBestName(), + $group->homeUrl()); $notice = Notice::saveNew($user->id, $content, @@ -205,8 +210,9 @@ class ActivityPlugin extends Plugin $rendered = sprintf(_m('Left the group "%s".'), $group->homeUrl(), $group->getBestName()); - $content = sprintf(_m('Left the group "%s".'), - $group->getBestName()); + $content = sprintf(_m('Left the group "%s" : %s'), + $group->getBestName(), + $group->homeUrl()); $notice = Notice::saveNew($user->id, $content, diff --git a/Notice_activity.php b/Notice_activity.php index abc5f59c8f..d1256228c5 100644 --- a/Notice_activity.php +++ b/Notice_activity.php @@ -152,3 +152,4 @@ class Notice_activity extends Memcached_DataObject } } } +?> \ No newline at end of file From 7f99ce058007509d48055e4dec9e84b2e5187bed Mon Sep 17 00:00:00 2001 From: Marcel van der Boom Date: Fri, 17 Jun 2011 13:37:16 +0200 Subject: [PATCH 008/118] Allow on/off switch for all activity notifications. Default behaviour was/is to do all actitivity notifications supported by plugin. Configure is in the config file by passing array with keyed boolean values like: addPlugin('Activity', array( 'StartFollowUser' => true, 'StopFollowUser' => false, 'JoinGroup' => true, 'LeaveGroup' => true, 'StartLike' => true, 'StopLike' => false)); --- ActivityPlugin.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/ActivityPlugin.php b/ActivityPlugin.php index c5f98f8617..7ea705fbe2 100644 --- a/ActivityPlugin.php +++ b/ActivityPlugin.php @@ -49,6 +49,14 @@ class ActivityPlugin extends Plugin { const VERSION = '0.1'; + // Flags to switch off certain activity notices + public $StartFollowUser = true; + public $StopFollowUser = true; + public $JoinGroup = true; + public $LeaveGroup = true; + public $StartLike = true; + public $StopLike = true; + /** * Database schema setup * @@ -91,6 +99,8 @@ class ActivityPlugin extends Plugin function onEndSubscribe($subscriber, $other) { + // Only do this if config is enabled + if(!$this->StartFollowUser) return true; $user = User::staticGet('id', $subscriber->id); if (!empty($user)) { $rendered = sprintf(_m('Started following %s.'), @@ -114,6 +124,8 @@ class ActivityPlugin extends Plugin function onEndUnsubscribe($subscriber, $other) { + // Only do this if config is enabled + if(!$this->StopFollowUser) return true; $user = User::staticGet('id', $subscriber->id); if (!empty($user)) { $rendered = sprintf(_m('Stopped following %s.'), @@ -137,6 +149,8 @@ class ActivityPlugin extends Plugin function onEndFavorNotice($profile, $notice) { + // Only do this if config is enabled + if(!$this->StartLike) return true; $user = User::staticGet('id', $profile->id); if (!empty($user)) { @@ -162,6 +176,8 @@ class ActivityPlugin extends Plugin function onEndDisfavorNotice($profile, $notice) { + // Only do this if config is enabled + if(!$this->StopLike) return true; $user = User::staticGet('id', $profile->id); if (!empty($user)) { @@ -187,6 +203,8 @@ class ActivityPlugin extends Plugin function onEndJoinGroup($group, $user) { + // Only do this if config is enabled + if(!$this->JoinGroup) return true; $rendered = sprintf(_m('Joined the group "%s".'), $group->homeUrl(), $group->getBestName()); @@ -207,6 +225,8 @@ class ActivityPlugin extends Plugin function onEndLeaveGroup($group, $user) { + // Only do this if config is enabled + if(!$this->LeaveGroup) return true; $rendered = sprintf(_m('Left the group "%s".'), $group->homeUrl(), $group->getBestName()); From ed31052d2641d0cc8f9f87facce88ab779d7a909 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Aug 2011 10:22:20 -0400 Subject: [PATCH 009/118] Store pkeys in cache for listGet() I was storing the full objects in the cache for the listGet() function. I've changed it to store only pkeys, and use pivotGet() to get all the corresponding values. This also required changing pivotGet() so it can get objects with multi-column pkeys, which complicated the whole thing quite a bit. But it seems to work OK. --- classes/Fave.php | 4 +- classes/Memcached_DataObject.php | 189 ++++++++++++++++++++++++++----- 2 files changed, 161 insertions(+), 32 deletions(-) diff --git a/classes/Fave.php b/classes/Fave.php index 5067185c0e..c69a6816d0 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -44,7 +44,7 @@ class Fave extends Memcached_DataObject common_log_db_error($fave, 'INSERT', __FILE__); return false; } - self::blow('fave:list:notice_id:%d', $fave->notice_id); + self::blow('fave:list-ids:notice_id:%d', $fave->notice_id); Event::handle('EndFavorNotice', array($profile, $notice)); } @@ -62,7 +62,7 @@ class Fave extends Memcached_DataObject if (Event::handle('StartDisfavorNotice', array($profile, $notice, &$result))) { $result = parent::delete(); - self::blow('fave:list:notice_id:%d', $this->notice_id); + self::blow('fave:list-ids:notice_id:%d', $this->notice_id); if ($result) { Event::handle('EndDisfavorNotice', array($profile, $notice)); diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php index e1610c56b2..11be6c7c27 100644 --- a/classes/Memcached_DataObject.php +++ b/classes/Memcached_DataObject.php @@ -105,23 +105,39 @@ class Memcached_DataObject extends Safe_DataObject */ static function pivotGet($cls, $keyCol, $keyVals, $otherCols = array()) { - $result = array_fill_keys($keyVals, null); + if (is_array($keyCol)) { + foreach ($keyVals as $keyVal) { + $result[implode(',', $keyVal)] = null; + } + } else { + $result = array_fill_keys($keyVals, null); + } $toFetch = array(); foreach ($keyVals as $keyVal) { - - $kv = array_merge($otherCols, array($keyCol => $keyVal)); + + if (is_array($keyCol)) { + $kv = array_combine($keyCol, $keyVal); + } else { + $kv = array($keyCol => $keyVal); + } + + $kv = array_merge($otherCols, $kv); $i = self::multicache($cls, $kv); if ($i !== false) { - $result[$keyVal] = $i; + if (is_array($keyCol)) { + $result[implode(',', $keyVal)] = $i; + } else { + $result[$keyVal] = $i; + } } else if (!empty($keyVal)) { $toFetch[] = $keyVal; } } - + if (count($toFetch) > 0) { $i = DB_DataObject::factory($cls); if (empty($i)) { @@ -130,20 +146,43 @@ class Memcached_DataObject extends Safe_DataObject foreach ($otherCols as $otherKeyCol => $otherKeyVal) { $i->$otherKeyCol = $otherKeyVal; } - $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); + if (is_array($keyCol)) { + $i->whereAdd(self::_inMultiKey($i, $keyCol, $toFetch)); + } else { + $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); + } if ($i->find()) { while ($i->fetch()) { $copy = clone($i); $copy->encache(); - $result[$i->$keyCol] = $copy; + if (is_array($keyCol)) { + $vals = array(); + foreach ($keyCol as $k) { + $vals[] = $i->$k; + } + $result[implode(',', $vals)] = $copy; + } else { + $result[$i->$keyCol] = $copy; + } } } // Save state of DB misses foreach ($toFetch as $keyVal) { - if (empty($result[$keyVal])) { - $kv = array_merge($otherCols, array($keyCol => $keyVal)); + $r = null; + if (is_array($keyCol)) { + $r = $result[implode(',', $keyVal)]; + } else { + $r = $result[$keyVal]; + } + if (empty($r)) { + if (is_array($keyCol)) { + $kv = array_combine($keyCol, $keyVal); + } else { + $kv = array($keyCol => $keyVal); + } + $kv = array_merge($otherCols, $kv); // save the fact that no such row exists $c = self::memcache(); if (!empty($c)) { @@ -153,43 +192,133 @@ class Memcached_DataObject extends Safe_DataObject } } } - + return $result; } - + + static function _inMultiKey($i, $cols, $values) + { + $types = array(); + + foreach ($cols as $col) { + $types[$col] = $i->columnType($col); + } + + $first = true; + + $query = ''; + + foreach ($values as $value) { + if ($first) { + $query .= '( '; + $first = false; + } else { + $query .= ' OR '; + } + $query .= '( '; + $i = 0; + $firstc = true; + foreach ($cols as $col) { + if (!$firstc) { + $query .= ' AND '; + } else { + $firstc = false; + } + switch ($types[$col]) { + case 'string': + case 'datetime': + $query .= sprintf("%s = %s", $col, $i->_quote($value[$i])); + break; + default: + $query .= sprintf("%s = %s", $col, $value[$i]); + break; + } + } + $query .= ') '; + } + + if (!$first) { + $query .= ' )'; + } + + return $query; + } + + static function pkeyCols($cls) + { + $i = DB_DataObject::factory($cls); + if (empty($i)) { + throw new Exception(_('Cannot instantiate a ' . $cls)); + } + $types = $i->keyTypes(); + ksort($types); + + $pkey = array(); + + foreach ($types as $key => $type) { + if ($type == 'K' || $type == 'N') { + $pkey[] = $key; + } + } + + return $pkey; + } + function listGet($cls, $keyCol, $keyVals) { - $result = array_fill_keys($keyVals, array()); - + $pkeyMap = array_fill_keys($keyVals, array()); + $results = array_fill_keys($keyVals, array()); + + $pkeyCols = self::pkeyCols($cls); + $toFetch = array(); - + $allPkeys = array(); + + // We only cache keys -- not objects! + foreach ($keyVals as $keyVal) { - $l = self::cacheGet(sprintf("%s:list:%s:%s", $cls, $keyCol, $keyVal)); + $l = self::cacheGet(sprintf("%s:list-ids:%s:%s", $cls, $keyCol, $keyVal)); if ($l !== false) { - $result[$keyVal] = $l; + $pkeyMap[$keyVal] = $l; + $allPkeys = array_merge($allPkeys, $l); } else { $toFetch[] = $keyVal; } } - + + $keyResults = self::pivotGet($cls, $pkeyCols, $allPkeys); + + foreach ($pkeyMap as $keyVal => $pkeyList) { + foreach ($pkeyList as $pkeyVal) { + $i = $keyResults[$pkeyVal]; + if (!empty($i)) { + $results[$keyVal][] = $i; + } + } + } + if (count($toFetch) > 0) { $i = DB_DataObject::factory($cls); if (empty($i)) { throw new Exception(_('Cannot instantiate class ' . $cls)); } - $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); - if ($i->find()) { - while ($i->fetch()) { - $copy = clone($i); - $copy->encache(); - $result[$i->$keyCol][] = $copy; - } - } - foreach ($toFetch as $keyVal) - { - self::cacheSet(sprintf("%s:list:%s:%s", $cls, $keyCol, $keyVal), - $result[$keyVal]); - } + $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); + if ($i->find()) { + while ($i->fetch()) { + $copy = clone($i); + $copy->encache(); + $result[$i->$keyCol][] = $copy; + $pkeyVal = array(); + foreach ($pkeyCols as $pkeyCol) { + $pkeyVal[] = $i->$pkeyCol; + } + $pkeyMap[$i->$keyCol][] = $pkeyVal; + } + } + foreach ($toFetch as $keyVal) { + self::cacheSet(sprintf("%s:list-ids:%s:%s", $cls, $keyCol, $keyVal), + $pkeyMap[$keyVal]); + } } return $result; From 0c762dde42f463f4f45628fed0a29128e4cd37a7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Aug 2011 10:39:45 -0400 Subject: [PATCH 010/118] pre-fill all notices in conversations on the page --- lib/threadednoticelist.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/lib/threadednoticelist.php b/lib/threadednoticelist.php index cf3c0b8943..6df4ed99df 100644 --- a/lib/threadednoticelist.php +++ b/lib/threadednoticelist.php @@ -80,7 +80,7 @@ class ThreadedNoticeList extends NoticeList $total = count($notices); $notices = array_slice($notices, 0, NOTICES_PER_PAGE); - self::prefill($notices); + self::prefill(self::_allNotices($notices)); $conversations = array(); @@ -123,6 +123,21 @@ class ThreadedNoticeList extends NoticeList return $total; } + function _allNotices($notices) + { + $convId = array(); + foreach ($notices as $notice) { + $convId[] = $notice->conversation; + } + $convId = array_unique($convId); + $allMap = Memcached_DataObject::listGet('Notice', 'conversation', $convId); + $allArray = array(); + foreach ($allMap as $convId => $convNotices) { + $allArray = array_merge($allArray, $convNotices); + } + return $allArray; + } + /** * returns a new list item for the current notice * From e09310ffb712a4c597de571b6be49c30d4b0b5ae Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Aug 2011 10:51:13 -0400 Subject: [PATCH 011/118] Cache the repeat_of query for noticelists --- lib/noticelist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/noticelist.php b/lib/noticelist.php index 148f428edf..7ec5be1c0f 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -143,6 +143,7 @@ class NoticeList extends Widget if (!empty($p)) { Memcached_DataObject::pivotGet('Fave', 'notice_id', $ids, array('user_id' => $p->id)); + Memcached_DataObject::pivotGet('Notice', 'repeat_of', $ids, array('profile_id' => $p->id)); } } } From f405ffa507fdbadba993227d7459f38e82b311d1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Aug 2011 12:01:15 -0400 Subject: [PATCH 012/118] Corrected pkeys for listGet() --- classes/Memcached_DataObject.php | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php index 11be6c7c27..e515e3d9e0 100644 --- a/classes/Memcached_DataObject.php +++ b/classes/Memcached_DataObject.php @@ -267,10 +267,10 @@ class Memcached_DataObject extends Safe_DataObject function listGet($cls, $keyCol, $keyVals) { $pkeyMap = array_fill_keys($keyVals, array()); - $results = array_fill_keys($keyVals, array()); + $result = array_fill_keys($keyVals, array()); $pkeyCols = self::pkeyCols($cls); - + $toFetch = array(); $allPkeys = array(); @@ -280,19 +280,23 @@ class Memcached_DataObject extends Safe_DataObject $l = self::cacheGet(sprintf("%s:list-ids:%s:%s", $cls, $keyCol, $keyVal)); if ($l !== false) { $pkeyMap[$keyVal] = $l; - $allPkeys = array_merge($allPkeys, $l); + foreach ($l as $pkey) { + $allPkeys[] = $pkey; + } } else { $toFetch[] = $keyVal; } } - $keyResults = self::pivotGet($cls, $pkeyCols, $allPkeys); + if (count($allPkeys) > 0) { + $keyResults = self::pivotGet($cls, $pkeyCols, $allPkeys); - foreach ($pkeyMap as $keyVal => $pkeyList) { - foreach ($pkeyList as $pkeyVal) { - $i = $keyResults[$pkeyVal]; - if (!empty($i)) { - $results[$keyVal][] = $i; + foreach ($pkeyMap as $keyVal => $pkeyList) { + foreach ($pkeyList as $pkeyVal) { + $i = $keyResults[implode(',',$pkeyVal)]; + if (!empty($i)) { + $result[$keyVal][] = $i; + } } } } @@ -304,6 +308,7 @@ class Memcached_DataObject extends Safe_DataObject } $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); if ($i->find()) { + sprintf("listGet() got {$i->N} results for class $cls key $keyCol"); while ($i->fetch()) { $copy = clone($i); $copy->encache(); @@ -320,7 +325,7 @@ class Memcached_DataObject extends Safe_DataObject $pkeyMap[$keyVal]); } } - + return $result; } From ac268773bf917e3463856b5971c9843fb6a24cf8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Aug 2011 12:01:39 -0400 Subject: [PATCH 013/118] Pass correct notice id to Memcached_DataObject::listGet() in getFaves() --- classes/Notice.php | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index d39aea6c22..122c3c6299 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2547,7 +2547,7 @@ class Notice extends Memcached_DataObject } } - protected $_faves = -1; + protected $_faves; /** * All faves of this notice @@ -2557,15 +2557,15 @@ class Notice extends Memcached_DataObject function getFaves() { - if ($this->_faves != -1) { + if (isset($this->_faves) && is_array($this->_faves)) { return $this->_faves; } - $faveMap = Memcached_DataObject::listGet('Fave', 'notice_id', array($noticeId)); - $this->_faves = $faveMap[$noticeId]; + $faveMap = Memcached_DataObject::listGet('Fave', 'notice_id', array($this->id)); + $this->_faves = $faveMap[$this->id]; return $this->_faves; } - function _setFaves($faves) + function _setFaves(&$faves) { $this->_faves = $faves; } @@ -2574,6 +2574,14 @@ class Notice extends Memcached_DataObject { $ids = self::_idsOf($notices); $faveMap = Memcached_DataObject::listGet('Fave', 'notice_id', $ids); + $cnt = 0; + $faved = array(); + foreach ($faveMap as $id => $faves) { + $cnt += count($faves); + if (count($faves) > 0) { + $faved[] = $id; + } + } foreach ($notices as $notice) { $notice->_setFaves($faveMap[$notice->id]); } From 6f386b2f8bce73dc3978d203d8b83b5d94d478ed Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Aug 2011 15:50:36 +0200 Subject: [PATCH 014/118] Update translator documentation. --- lib/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mail.php b/lib/mail.php index 776447cd5b..3f8a08f3ca 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -750,7 +750,7 @@ function mail_notify_attn($user, $notice) // TRANS: Body of @-reply notification e-mail. // TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, // 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: %5$s is the text "The full conversation can be read here:" and 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, $body = sprintf(_("%1\$s just sent a notice to your attention (an '@-reply') on %2\$s.\n\n". "The notice is here:\n\n". From 6319003a34a72255ea22e870367166d1d25ecb96 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Aug 2011 15:57:36 +0200 Subject: [PATCH 015/118] Change "stream" to "timeline" for consistency. --- actions/public.php | 10 +++++----- actions/restoreaccount.php | 2 +- actions/showstream.php | 14 +++++++------- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/actions/public.php b/actions/public.php index e4f98dacc3..f62d032ef8 100644 --- a/actions/public.php +++ b/actions/public.php @@ -95,7 +95,7 @@ class PublicAction extends Action if (!$this->notice) { // TRANS: Server error displayed when a public timeline cannot be retrieved. - $this->serverError(_('Could not retrieve public stream.')); + $this->serverError(_('Could not retrieve public timeline.')); return; } @@ -166,20 +166,20 @@ class PublicAction extends Action common_local_url('ApiTimelinePublic', array('format' => 'as')), // TRANS: Link description for public timeline feed. - _('Public Stream Feed (Activity Streams JSON)')), + _('Public Timeline Feed (Activity Streams JSON)')), new Feed(Feed::RSS1, common_local_url('publicrss'), // TRANS: Link description for public timeline feed. - _('Public Stream Feed (RSS 1.0)')), + _('Public Timeline Feed (RSS 1.0)')), new Feed(Feed::RSS2, common_local_url('ApiTimelinePublic', array('format' => 'rss')), // TRANS: Link description for public timeline feed. - _('Public Stream Feed (RSS 2.0)')), + _('Public Timeline Feed (RSS 2.0)')), new Feed(Feed::ATOM, common_local_url('ApiTimelinePublic', array('format' => 'atom')), // TRANS: Link description for public timeline feed. - _('Public Stream Feed (Atom)'))); + _('Public Timeline Feed (Atom)'))); } function showEmptyList() diff --git a/actions/restoreaccount.php b/actions/restoreaccount.php index 22f0a8e5da..81c792bd00 100644 --- a/actions/restoreaccount.php +++ b/actions/restoreaccount.php @@ -339,7 +339,7 @@ class RestoreAccountForm extends Form $this->out->elementStart('p', 'instructions'); // TRANS: Form instructions for feed restore. - $this->out->raw(_('You can upload a backed-up stream in '. + $this->out->raw(_('You can upload a backed-up timeline in '. 'Activity Streams format.')); $this->out->elementEnd('p'); diff --git a/actions/showstream.php b/actions/showstream.php index b4b7faf80a..ca7af0f2ed 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -65,11 +65,11 @@ class ShowstreamAction extends ProfileAction $base = $this->profile->getFancyName(); if (!empty($this->tag)) { if ($this->page == 1) { - // TRANS: Page title showing tagged notices in one user's stream. + // TRANS: Page title showing tagged notices in one user's timeline. // TRANS: %1$s is the username, %2$s is the hash 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: Page title showing tagged notices in one user's timeline. // TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. return sprintf(_('Notices by %1$s tagged %2$s, page %3$d'), $base, $this->tag, $this->page); } @@ -77,7 +77,7 @@ class ShowstreamAction extends ProfileAction if ($this->page == 1) { return $base; } else { - // TRANS: Extended page title showing tagged notices in one user's stream. + // TRANS: Extended page title showing tagged notices in one user's timeline. // TRANS: %1$s is the username, %2$d is the page number. return sprintf(_('Notices by %1$s, page %2$d'), $base, @@ -205,7 +205,7 @@ class ShowstreamAction extends ProfileAction function showEmptyListMessage() { - // TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. + // TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. $message = sprintf(_('This is the timeline for %1$s, but %1$s hasn\'t posted anything yet.'), $this->user->nickname) . ' '; if (common_logged_in()) { @@ -214,7 +214,7 @@ class ShowstreamAction extends ProfileAction // TRANS: Second sentence of empty list message for a stream for the user themselves. $message .= _('Seen anything interesting recently? You haven\'t posted any notices yet, now would be a good time to start :)'); } else { - // TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. + // TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. // TRANS: This message contains a Markdown link. Keep "](" together. $message .= sprintf(_('You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%%?status_textarea=%2$s).'), $this->user->nickname, '@' . $this->user->nickname); } @@ -257,14 +257,14 @@ class ShowstreamAction extends ProfileAction function showAnonymousMessage() { if (!(common_config('site','closed') || common_config('site','inviteonly'))) { - // TRANS: Announcement for anonymous users showing a stream if site registrations are open. + // TRANS: Announcement for anonymous users showing a timeline if site registrations are open. // TRANS: This message contains a Markdown link. Keep "](" together. $m = sprintf(_('**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. ' . '[Join now](%%%%action.register%%%%) to follow **%s**\'s notices and many more! ([Read more](%%%%doc.help%%%%))'), $this->user->nickname, $this->user->nickname); } else { - // TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. + // TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. // TRANS: This message contains a Markdown link. Keep "](" together. $m = sprintf(_('**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. '), From 5115aa3e4c7bf39fc9c683cb55042827a5cc1783 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Aug 2011 16:03:24 +0200 Subject: [PATCH 016/118] tag -> list --- actions/peopletagsbyuser.php | 2 +- actions/peopletagsforuser.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/peopletagsbyuser.php b/actions/peopletagsbyuser.php index 0d9bd50faa..dc3e50b9f2 100644 --- a/actions/peopletagsbyuser.php +++ b/actions/peopletagsbyuser.php @@ -213,7 +213,7 @@ class PeopletagsbyuserAction extends Action '(http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. ' . 'You can easily keep track of what they ' . - 'are doing by subscribing to the tag\'s timeline.' ), $this->tagger->nickname); + 'are doing by subscribing to the list\'s timeline.' ), $this->tagger->nickname); $this->elementStart('div', array('id' => 'anon_notice')); $this->raw(common_markup_to_html($notice)); $this->elementEnd('div'); diff --git a/actions/peopletagsforuser.php b/actions/peopletagsforuser.php index cc28133940..321dbe19a1 100644 --- a/actions/peopletagsforuser.php +++ b/actions/peopletagsforuser.php @@ -111,7 +111,7 @@ class PeopletagsforuserAction extends Action '(http://en.wikipedia.org/wiki/Micro-blogging) service ' . 'based on the Free Software [StatusNet](http://status.net/) tool. ' . 'You can easily keep track of what they ' . - 'are doing by subscribing to the tag\'s timeline.' ), $this->tagged->nickname); + 'are doing by subscribing to the list\'s timeline.' ), $this->tagged->nickname); $this->elementStart('div', array('id' => 'anon_notice')); $this->raw(common_markup_to_html($notice)); $this->elementEnd('div'); From 4239e2bb9ec510bdfea00cc83cdbf4baceb9aaa8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Aug 2011 16:04:06 +0200 Subject: [PATCH 017/118] Fix incorrect documentation. --- plugins/TwitterBridge/twittersettings.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/TwitterBridge/twittersettings.php b/plugins/TwitterBridge/twittersettings.php index d972203e9c..88799e75a9 100644 --- a/plugins/TwitterBridge/twittersettings.php +++ b/plugins/TwitterBridge/twittersettings.php @@ -142,8 +142,7 @@ class TwittersettingsAction extends ProfileSettingsAction $this->text($message); $this->elementEnd('p'); } else { - // TRANS: Form instructions. %s is a URL to the password settings. - // TRANS: %1$s is the StatusNet sitename. + // TRANS: Form instructions. %1$s is the StatusNet sitename. $note = _m('Keep your %1$s account but disconnect from Twitter. ' . 'You can use your %1$s password to log in.'); $site = common_config('site', 'name'); From 0a420fd7d09b42db212b17f7bc44eddabfcdeb49 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Aug 2011 16:06:35 +0200 Subject: [PATCH 018/118] More list... --- lib/peopletaglist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/peopletaglist.php b/lib/peopletaglist.php index 3ee1d34938..986712f51d 100644 --- a/lib/peopletaglist.php +++ b/lib/peopletaglist.php @@ -169,8 +169,8 @@ class PeopletagListItem extends Widget array('href' => common_local_url('peopletagged', array('tagger' => $this->profile->nickname, 'tag' => $this->peopletag->tag))), - // TRANS: Link description for link to list of users tagged with a tag. - _('Tagged')); + // TRANS: Link description for link to list of users tagged with a tag (so part of a list). + _('Listed')); $this->out->raw($this->peopletag->taggedCount()); $this->out->elementEnd('span'); From bd32b6935514e8cbf05301260063d6c20f9ddf14 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Aug 2011 16:18:21 +0200 Subject: [PATCH 019/118] Fix punctuation. --- plugins/OStatus/classes/Ostatus_profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 64094803ca..3e5c531fd2 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -542,7 +542,7 @@ class Ostatus_profile extends Managed_DataObject if (empty($sharedNotice)) { $sharedId = ($shared->id) ? $shared->id : $shared->objects[0]->id; - throw new ClientException(sprintf(_m("Failed to save activity %s"), + throw new ClientException(sprintf(_m("Failed to save activity %s."), $sharedId)); } From 31556e3c004b17fbf59db3c2cc8cd0abb3044ca4 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Aug 2011 16:32:26 +0200 Subject: [PATCH 020/118] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 1130 +++--- locale/be-tarask/LC_MESSAGES/statusnet.po | 300 +- locale/bg/LC_MESSAGES/statusnet.po | 216 +- locale/br/LC_MESSAGES/statusnet.po | 187 +- locale/ca/LC_MESSAGES/statusnet.po | 269 +- locale/cs/LC_MESSAGES/statusnet.po | 238 +- locale/de/LC_MESSAGES/statusnet.po | 443 +-- locale/en_GB/LC_MESSAGES/statusnet.po | 230 +- locale/eo/LC_MESSAGES/statusnet.po | 247 +- locale/es/LC_MESSAGES/statusnet.po | 258 +- locale/eu/LC_MESSAGES/statusnet.po | 244 +- locale/fa/LC_MESSAGES/statusnet.po | 221 +- locale/fi/LC_MESSAGES/statusnet.po | 215 +- locale/fr/LC_MESSAGES/statusnet.po | 345 +- locale/fur/LC_MESSAGES/statusnet.po | 135 +- locale/gl/LC_MESSAGES/statusnet.po | 254 +- locale/he/LC_MESSAGES/statusnet.po | 272 +- locale/hsb/LC_MESSAGES/statusnet.po | 171 +- locale/hu/LC_MESSAGES/statusnet.po | 162 +- locale/ia/LC_MESSAGES/statusnet.po | 272 +- locale/it/LC_MESSAGES/statusnet.po | 255 +- locale/ja/LC_MESSAGES/statusnet.po | 3412 +++++++---------- locale/ka/LC_MESSAGES/statusnet.po | 253 +- locale/ko/LC_MESSAGES/statusnet.po | 237 +- locale/mk/LC_MESSAGES/statusnet.po | 272 +- locale/ml/LC_MESSAGES/statusnet.po | 145 +- locale/nb/LC_MESSAGES/statusnet.po | 202 +- locale/nl/LC_MESSAGES/statusnet.po | 310 +- locale/pl/LC_MESSAGES/statusnet.po | 254 +- locale/pt/LC_MESSAGES/statusnet.po | 253 +- locale/pt_BR/LC_MESSAGES/statusnet.po | 243 +- locale/ru/LC_MESSAGES/statusnet.po | 239 +- locale/statusnet.pot | 163 +- locale/sv/LC_MESSAGES/statusnet.po | 243 +- locale/te/LC_MESSAGES/statusnet.po | 152 +- locale/tl/LC_MESSAGES/statusnet.po | 255 +- locale/uk/LC_MESSAGES/statusnet.po | 240 +- locale/zh_CN/LC_MESSAGES/statusnet.po | 228 +- plugins/APC/locale/APC.pot | 2 +- plugins/APC/locale/ast/LC_MESSAGES/APC.po | 10 +- .../APC/locale/be-tarask/LC_MESSAGES/APC.po | 12 +- plugins/APC/locale/br/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/de/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/es/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/fr/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/gl/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/he/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/ia/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/id/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/mk/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/ms/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/nb/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/nl/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/pl/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/pt/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po | 11 +- plugins/APC/locale/ru/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/tl/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/uk/LC_MESSAGES/APC.po | 10 +- plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po | 11 +- .../AccountManager/locale/AccountManager.pot | 2 +- .../locale/af/LC_MESSAGES/AccountManager.po | 10 +- .../locale/ast/LC_MESSAGES/AccountManager.po | 10 +- .../locale/ca/LC_MESSAGES/AccountManager.po | 10 +- .../locale/de/LC_MESSAGES/AccountManager.po | 10 +- .../locale/fi/LC_MESSAGES/AccountManager.po | 10 +- .../locale/fr/LC_MESSAGES/AccountManager.po | 10 +- .../locale/he/LC_MESSAGES/AccountManager.po | 10 +- .../locale/ia/LC_MESSAGES/AccountManager.po | 10 +- .../locale/mk/LC_MESSAGES/AccountManager.po | 10 +- .../locale/ms/LC_MESSAGES/AccountManager.po | 10 +- .../locale/nl/LC_MESSAGES/AccountManager.po | 10 +- .../locale/pt/LC_MESSAGES/AccountManager.po | 10 +- .../locale/ru/LC_MESSAGES/AccountManager.po | 10 +- .../locale/tl/LC_MESSAGES/AccountManager.po | 10 +- .../locale/uk/LC_MESSAGES/AccountManager.po | 10 +- plugins/Adsense/locale/Adsense.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Adsense.po | 12 +- .../Adsense/locale/br/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/ca/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/de/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/es/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/fr/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/gl/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/ia/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/it/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/ka/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/mk/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/ms/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/nb/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/nl/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/pt/LC_MESSAGES/Adsense.po | 10 +- .../locale/pt_BR/LC_MESSAGES/Adsense.po | 11 +- .../Adsense/locale/ru/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/sv/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/tl/LC_MESSAGES/Adsense.po | 10 +- .../Adsense/locale/uk/LC_MESSAGES/Adsense.po | 10 +- .../locale/zh_CN/LC_MESSAGES/Adsense.po | 11 +- plugins/Aim/locale/Aim.pot | 2 +- plugins/Aim/locale/af/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/ca/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/de/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/fi/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/fr/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/ia/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/mk/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/ms/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/nl/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/pt/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/sv/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/tl/LC_MESSAGES/Aim.po | 10 +- plugins/Aim/locale/uk/LC_MESSAGES/Aim.po | 10 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../be-tarask/LC_MESSAGES/AnonymousFave.po | 12 +- .../locale/br/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/ca/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/de/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/es/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/fr/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/gl/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/ia/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/mk/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/nl/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/pt/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/tl/LC_MESSAGES/AnonymousFave.po | 10 +- .../locale/uk/LC_MESSAGES/AnonymousFave.po | 10 +- plugins/ApiLogger/locale/ApiLogger.pot | 2 +- .../locale/ast/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/de/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/fr/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/he/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/ia/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/ksh/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/mk/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/ms/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/nl/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/pt/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/tl/LC_MESSAGES/ApiLogger.po | 10 +- .../locale/uk/LC_MESSAGES/ApiLogger.po | 10 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- .../be-tarask/LC_MESSAGES/AutoSandbox.po | 12 +- .../locale/br/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/de/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/es/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/fr/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/ia/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/mk/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/nl/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/ru/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/tl/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/uk/LC_MESSAGES/AutoSandbox.po | 10 +- .../locale/zh_CN/LC_MESSAGES/AutoSandbox.po | 11 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ast/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/ca/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/de/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/es/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/fr/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/he/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/ia/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/mk/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/ms/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/nl/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/sv/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/tl/LC_MESSAGES/Autocomplete.po | 10 +- .../locale/uk/LC_MESSAGES/Autocomplete.po | 10 +- plugins/Awesomeness/locale/Awesomeness.pot | 2 +- .../be-tarask/LC_MESSAGES/Awesomeness.po | 12 +- .../locale/de/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/fi/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/fr/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/he/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/ia/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/mk/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/nl/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/pt/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/ru/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/tl/LC_MESSAGES/Awesomeness.po | 10 +- .../locale/uk/LC_MESSAGES/Awesomeness.po | 10 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BitlyUrl.po | 12 +- .../locale/ca/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/de/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/fr/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/fur/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/ia/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/mk/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/nl/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/ru/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/sv/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/tl/LC_MESSAGES/BitlyUrl.po | 10 +- .../locale/uk/LC_MESSAGES/BitlyUrl.po | 10 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Blacklist.po | 12 +- .../locale/ca/LC_MESSAGES/Blacklist.po | 10 +- .../locale/de/LC_MESSAGES/Blacklist.po | 10 +- .../locale/fr/LC_MESSAGES/Blacklist.po | 10 +- .../locale/ia/LC_MESSAGES/Blacklist.po | 10 +- .../locale/mk/LC_MESSAGES/Blacklist.po | 10 +- .../locale/nl/LC_MESSAGES/Blacklist.po | 10 +- .../locale/ru/LC_MESSAGES/Blacklist.po | 10 +- .../locale/sv/LC_MESSAGES/Blacklist.po | 10 +- .../locale/tl/LC_MESSAGES/Blacklist.po | 10 +- .../locale/uk/LC_MESSAGES/Blacklist.po | 10 +- .../locale/zh_CN/LC_MESSAGES/Blacklist.po | 11 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/BlankAd.po | 12 +- .../BlankAd/locale/br/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/de/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/es/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/fi/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/fr/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/he/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/ia/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/mk/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/nb/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/nl/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/pt/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/ru/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/sv/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/tl/LC_MESSAGES/BlankAd.po | 10 +- .../BlankAd/locale/uk/LC_MESSAGES/BlankAd.po | 10 +- .../locale/zh_CN/LC_MESSAGES/BlankAd.po | 11 +- plugins/Blog/locale/Blog.pot | 2 +- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 10 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 10 +- plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 10 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 10 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 21 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- .../locale/de/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/fr/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/ia/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/mk/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/nb/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/nl/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/ru/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/tl/LC_MESSAGES/BlogspamNet.po | 10 +- .../locale/uk/LC_MESSAGES/BlogspamNet.po | 10 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- .../locale/ar/LC_MESSAGES/Bookmark.po | 56 +- .../locale/ca/LC_MESSAGES/Bookmark.po | 10 +- .../locale/de/LC_MESSAGES/Bookmark.po | 10 +- .../locale/fr/LC_MESSAGES/Bookmark.po | 10 +- .../locale/ia/LC_MESSAGES/Bookmark.po | 10 +- .../locale/mk/LC_MESSAGES/Bookmark.po | 10 +- .../locale/nl/LC_MESSAGES/Bookmark.po | 10 +- .../locale/sv/LC_MESSAGES/Bookmark.po | 10 +- .../locale/tl/LC_MESSAGES/Bookmark.po | 10 +- .../locale/uk/LC_MESSAGES/Bookmark.po | 10 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/CacheLog.po | 12 +- .../locale/br/LC_MESSAGES/CacheLog.po | 10 +- .../locale/de/LC_MESSAGES/CacheLog.po | 10 +- .../locale/es/LC_MESSAGES/CacheLog.po | 10 +- .../locale/fr/LC_MESSAGES/CacheLog.po | 10 +- .../locale/he/LC_MESSAGES/CacheLog.po | 10 +- .../locale/ia/LC_MESSAGES/CacheLog.po | 10 +- .../locale/mk/LC_MESSAGES/CacheLog.po | 10 +- .../locale/nb/LC_MESSAGES/CacheLog.po | 10 +- .../locale/nl/LC_MESSAGES/CacheLog.po | 10 +- .../locale/pt/LC_MESSAGES/CacheLog.po | 10 +- .../locale/ru/LC_MESSAGES/CacheLog.po | 10 +- .../locale/tl/LC_MESSAGES/CacheLog.po | 10 +- .../locale/uk/LC_MESSAGES/CacheLog.po | 10 +- .../locale/zh_CN/LC_MESSAGES/CacheLog.po | 11 +- .../locale/CasAuthentication.pot | 2 +- .../LC_MESSAGES/CasAuthentication.po | 12 +- .../br/LC_MESSAGES/CasAuthentication.po | 10 +- .../de/LC_MESSAGES/CasAuthentication.po | 10 +- .../es/LC_MESSAGES/CasAuthentication.po | 10 +- .../fr/LC_MESSAGES/CasAuthentication.po | 10 +- .../hu/LC_MESSAGES/CasAuthentication.po | 10 +- .../ia/LC_MESSAGES/CasAuthentication.po | 10 +- .../mk/LC_MESSAGES/CasAuthentication.po | 10 +- .../nl/LC_MESSAGES/CasAuthentication.po | 10 +- .../pt_BR/LC_MESSAGES/CasAuthentication.po | 11 +- .../ru/LC_MESSAGES/CasAuthentication.po | 10 +- .../tl/LC_MESSAGES/CasAuthentication.po | 10 +- .../uk/LC_MESSAGES/CasAuthentication.po | 10 +- .../zh_CN/LC_MESSAGES/CasAuthentication.po | 11 +- .../locale/ClientSideShorten.pot | 2 +- .../LC_MESSAGES/ClientSideShorten.po | 12 +- .../de/LC_MESSAGES/ClientSideShorten.po | 10 +- .../es/LC_MESSAGES/ClientSideShorten.po | 10 +- .../fr/LC_MESSAGES/ClientSideShorten.po | 10 +- .../he/LC_MESSAGES/ClientSideShorten.po | 10 +- .../ia/LC_MESSAGES/ClientSideShorten.po | 10 +- .../id/LC_MESSAGES/ClientSideShorten.po | 10 +- .../mk/LC_MESSAGES/ClientSideShorten.po | 10 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 10 +- .../nl/LC_MESSAGES/ClientSideShorten.po | 10 +- .../ru/LC_MESSAGES/ClientSideShorten.po | 10 +- .../tl/LC_MESSAGES/ClientSideShorten.po | 10 +- .../uk/LC_MESSAGES/ClientSideShorten.po | 10 +- .../zh_CN/LC_MESSAGES/ClientSideShorten.po | 11 +- plugins/Comet/locale/Comet.pot | 2 +- plugins/Comet/locale/de/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/fr/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/he/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/ia/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/mk/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/nb/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/nl/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/ru/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/tl/LC_MESSAGES/Comet.po | 10 +- plugins/Comet/locale/uk/LC_MESSAGES/Comet.po | 10 +- .../locale/DirectionDetector.pot | 2 +- .../LC_MESSAGES/DirectionDetector.po | 12 +- .../br/LC_MESSAGES/DirectionDetector.po | 10 +- .../de/LC_MESSAGES/DirectionDetector.po | 10 +- .../es/LC_MESSAGES/DirectionDetector.po | 10 +- .../fi/LC_MESSAGES/DirectionDetector.po | 10 +- .../fr/LC_MESSAGES/DirectionDetector.po | 10 +- .../he/LC_MESSAGES/DirectionDetector.po | 10 +- .../ia/LC_MESSAGES/DirectionDetector.po | 10 +- .../id/LC_MESSAGES/DirectionDetector.po | 10 +- .../ja/LC_MESSAGES/DirectionDetector.po | 10 +- .../lb/LC_MESSAGES/DirectionDetector.po | 10 +- .../mk/LC_MESSAGES/DirectionDetector.po | 10 +- .../nb/LC_MESSAGES/DirectionDetector.po | 10 +- .../nl/LC_MESSAGES/DirectionDetector.po | 10 +- .../pt/LC_MESSAGES/DirectionDetector.po | 10 +- .../ru/LC_MESSAGES/DirectionDetector.po | 10 +- .../tl/LC_MESSAGES/DirectionDetector.po | 10 +- .../uk/LC_MESSAGES/DirectionDetector.po | 10 +- .../zh_CN/LC_MESSAGES/DirectionDetector.po | 11 +- plugins/Directory/locale/Directory.pot | 2 +- .../locale/ar/LC_MESSAGES/Directory.po | 24 +- .../locale/ca/LC_MESSAGES/Directory.po | 14 +- .../locale/de/LC_MESSAGES/Directory.po | 10 +- .../locale/fi/LC_MESSAGES/Directory.po | 10 +- .../locale/fr/LC_MESSAGES/Directory.po | 10 +- .../locale/ia/LC_MESSAGES/Directory.po | 10 +- .../locale/mk/LC_MESSAGES/Directory.po | 10 +- .../locale/nl/LC_MESSAGES/Directory.po | 10 +- .../locale/sv/LC_MESSAGES/Directory.po | 10 +- .../locale/tl/LC_MESSAGES/Directory.po | 10 +- .../locale/uk/LC_MESSAGES/Directory.po | 10 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/DiskCache.po | 12 +- .../locale/br/LC_MESSAGES/DiskCache.po | 10 +- .../locale/ca/LC_MESSAGES/DiskCache.po | 10 +- .../locale/de/LC_MESSAGES/DiskCache.po | 10 +- .../locale/es/LC_MESSAGES/DiskCache.po | 10 +- .../locale/fi/LC_MESSAGES/DiskCache.po | 10 +- .../locale/fr/LC_MESSAGES/DiskCache.po | 10 +- .../locale/he/LC_MESSAGES/DiskCache.po | 10 +- .../locale/ia/LC_MESSAGES/DiskCache.po | 10 +- .../locale/id/LC_MESSAGES/DiskCache.po | 10 +- .../locale/mk/LC_MESSAGES/DiskCache.po | 10 +- .../locale/nb/LC_MESSAGES/DiskCache.po | 10 +- .../locale/nl/LC_MESSAGES/DiskCache.po | 10 +- .../locale/pt/LC_MESSAGES/DiskCache.po | 10 +- .../locale/pt_BR/LC_MESSAGES/DiskCache.po | 11 +- .../locale/ru/LC_MESSAGES/DiskCache.po | 10 +- .../locale/sv/LC_MESSAGES/DiskCache.po | 10 +- .../locale/tl/LC_MESSAGES/DiskCache.po | 10 +- .../locale/uk/LC_MESSAGES/DiskCache.po | 10 +- .../locale/zh_CN/LC_MESSAGES/DiskCache.po | 11 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/be-tarask/LC_MESSAGES/Disqus.po | 12 +- .../Disqus/locale/br/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/de/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/es/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/fr/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/ia/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/mk/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/nb/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/nl/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/pt/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/ru/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/tl/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/uk/LC_MESSAGES/Disqus.po | 10 +- .../Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po | 11 +- .../locale/DomainStatusNetwork.pot | 2 +- .../de/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../fr/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../he/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../ia/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../mk/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../nl/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../tl/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../uk/LC_MESSAGES/DomainStatusNetwork.po | 10 +- .../locale/DomainWhitelist.pot | 2 +- .../locale/ar/LC_MESSAGES/DomainWhitelist.po | 82 + .../locale/de/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/ia/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/mk/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/nl/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/tl/LC_MESSAGES/DomainWhitelist.po | 10 +- .../locale/uk/LC_MESSAGES/DomainWhitelist.po | 10 +- plugins/Echo/locale/Echo.pot | 2 +- plugins/Echo/locale/ar/LC_MESSAGES/Echo.po | 10 +- .../Echo/locale/be-tarask/LC_MESSAGES/Echo.po | 12 +- plugins/Echo/locale/br/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/de/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/es/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/fi/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/fr/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/he/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/ia/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/id/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/lb/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/mk/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/nb/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/nl/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/pt/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po | 11 +- plugins/Echo/locale/ru/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/tl/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/uk/LC_MESSAGES/Echo.po | 10 +- plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po | 11 +- .../locale/EmailAuthentication.pot | 2 +- .../LC_MESSAGES/EmailAuthentication.po | 12 +- .../br/LC_MESSAGES/EmailAuthentication.po | 10 +- .../ca/LC_MESSAGES/EmailAuthentication.po | 10 +- .../de/LC_MESSAGES/EmailAuthentication.po | 10 +- .../es/LC_MESSAGES/EmailAuthentication.po | 10 +- .../fi/LC_MESSAGES/EmailAuthentication.po | 10 +- .../fr/LC_MESSAGES/EmailAuthentication.po | 10 +- .../he/LC_MESSAGES/EmailAuthentication.po | 10 +- .../ia/LC_MESSAGES/EmailAuthentication.po | 10 +- .../id/LC_MESSAGES/EmailAuthentication.po | 10 +- .../ja/LC_MESSAGES/EmailAuthentication.po | 10 +- .../mk/LC_MESSAGES/EmailAuthentication.po | 10 +- .../nb/LC_MESSAGES/EmailAuthentication.po | 10 +- .../nl/LC_MESSAGES/EmailAuthentication.po | 10 +- .../pt/LC_MESSAGES/EmailAuthentication.po | 10 +- .../pt_BR/LC_MESSAGES/EmailAuthentication.po | 11 +- .../ru/LC_MESSAGES/EmailAuthentication.po | 10 +- .../tl/LC_MESSAGES/EmailAuthentication.po | 10 +- .../uk/LC_MESSAGES/EmailAuthentication.po | 10 +- .../zh_CN/LC_MESSAGES/EmailAuthentication.po | 11 +- .../locale/EmailRegistration.pot | 2 +- .../ar/LC_MESSAGES/EmailRegistration.po | 14 +- .../ca/LC_MESSAGES/EmailRegistration.po | 10 +- .../de/LC_MESSAGES/EmailRegistration.po | 12 +- .../fr/LC_MESSAGES/EmailRegistration.po | 13 +- .../hu/LC_MESSAGES/EmailRegistration.po | 10 +- .../ia/LC_MESSAGES/EmailRegistration.po | 10 +- .../mk/LC_MESSAGES/EmailRegistration.po | 10 +- .../nl/LC_MESSAGES/EmailRegistration.po | 10 +- .../sv/LC_MESSAGES/EmailRegistration.po | 10 +- .../tl/LC_MESSAGES/EmailRegistration.po | 10 +- .../uk/LC_MESSAGES/EmailRegistration.po | 10 +- .../EmailReminder/locale/EmailReminder.pot | 2 +- .../locale/de/LC_MESSAGES/EmailReminder.po | 15 +- .../locale/ia/LC_MESSAGES/EmailReminder.po | 10 +- .../locale/mk/LC_MESSAGES/EmailReminder.po | 10 +- .../locale/nl/LC_MESSAGES/EmailReminder.po | 10 +- .../locale/pt/LC_MESSAGES/EmailReminder.po | 10 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- .../locale/ca/LC_MESSAGES/EmailSummary.po | 10 +- .../locale/de/LC_MESSAGES/EmailSummary.po | 13 +- .../locale/ia/LC_MESSAGES/EmailSummary.po | 10 +- .../locale/mk/LC_MESSAGES/EmailSummary.po | 10 +- .../locale/nl/LC_MESSAGES/EmailSummary.po | 10 +- .../locale/tl/LC_MESSAGES/EmailSummary.po | 10 +- .../locale/uk/LC_MESSAGES/EmailSummary.po | 10 +- plugins/Event/locale/Event.pot | 100 +- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 391 +- plugins/Event/locale/br/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/ca/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/de/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/hu/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 33 +- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 33 +- .../locale/ExtendedProfile.pot | 2 +- .../locale/ar/LC_MESSAGES/ExtendedProfile.po | 233 ++ .../locale/br/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/ca/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/de/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/fr/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/ia/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/mk/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/nl/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/sv/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/te/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/tl/LC_MESSAGES/ExtendedProfile.po | 10 +- .../locale/uk/LC_MESSAGES/ExtendedProfile.po | 10 +- .../FacebookBridge/locale/FacebookBridge.pot | 2 +- .../locale/ar/LC_MESSAGES/FacebookBridge.po | 44 +- .../locale/br/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/ca/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/de/LC_MESSAGES/FacebookBridge.po | 14 +- .../locale/fr/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/fur/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/ia/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/mg/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/mk/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/nl/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/tl/LC_MESSAGES/FacebookBridge.po | 10 +- .../locale/uk/LC_MESSAGES/FacebookBridge.po | 10 +- .../zh_CN/LC_MESSAGES/FacebookBridge.po | 11 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FirePHP/locale/ca/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/de/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/es/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/fi/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/fr/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/he/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/ia/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/id/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/ja/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/mk/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/nb/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/nl/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/pt/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/ru/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/tl/LC_MESSAGES/FirePHP.po | 10 +- .../FirePHP/locale/uk/LC_MESSAGES/FirePHP.po | 10 +- .../locale/zh_CN/LC_MESSAGES/FirePHP.po | 11 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- .../locale/de/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/fi/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/fr/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/he/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/ia/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/mk/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/nl/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/pt/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/ru/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/tl/LC_MESSAGES/FollowEveryone.po | 10 +- .../locale/uk/LC_MESSAGES/FollowEveryone.po | 10 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- .../locale/br/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/de/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/es/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/fr/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/he/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/ia/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/id/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/mk/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/nl/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/pt/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/te/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/tl/LC_MESSAGES/ForceGroup.po | 10 +- .../locale/uk/LC_MESSAGES/ForceGroup.po | 10 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- .../GeoURL/locale/ca/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/de/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/eo/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/es/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/fi/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/fr/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/he/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/ia/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/id/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/mk/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/nb/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/nl/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/pl/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/pt/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/ru/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/sv/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/tl/LC_MESSAGES/GeoURL.po | 10 +- .../GeoURL/locale/uk/LC_MESSAGES/GeoURL.po | 10 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/de/LC_MESSAGES/Geonames.po | 10 +- .../locale/fi/LC_MESSAGES/Geonames.po | 10 +- .../locale/fr/LC_MESSAGES/Geonames.po | 10 +- .../locale/ia/LC_MESSAGES/Geonames.po | 10 +- .../locale/mk/LC_MESSAGES/Geonames.po | 10 +- .../locale/nl/LC_MESSAGES/Geonames.po | 10 +- .../locale/sv/LC_MESSAGES/Geonames.po | 10 +- .../locale/tl/LC_MESSAGES/Geonames.po | 10 +- .../locale/uk/LC_MESSAGES/Geonames.po | 10 +- .../locale/GoogleAnalytics.pot | 2 +- .../locale/br/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/de/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/es/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/fi/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/fr/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/he/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/ia/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/id/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/mk/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/nb/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/nl/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/pt/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../pt_BR/LC_MESSAGES/GoogleAnalytics.po | 11 +- .../locale/ru/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/sv/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/tl/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../locale/uk/LC_MESSAGES/GoogleAnalytics.po | 10 +- .../zh_CN/LC_MESSAGES/GoogleAnalytics.po | 11 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../locale/ca/LC_MESSAGES/Gravatar.po | 10 +- .../locale/de/LC_MESSAGES/Gravatar.po | 10 +- .../locale/es/LC_MESSAGES/Gravatar.po | 10 +- .../locale/fr/LC_MESSAGES/Gravatar.po | 10 +- .../locale/he/LC_MESSAGES/Gravatar.po | 10 +- .../locale/ia/LC_MESSAGES/Gravatar.po | 10 +- .../locale/mk/LC_MESSAGES/Gravatar.po | 10 +- .../locale/nl/LC_MESSAGES/Gravatar.po | 10 +- .../locale/pl/LC_MESSAGES/Gravatar.po | 10 +- .../locale/pt/LC_MESSAGES/Gravatar.po | 10 +- .../locale/tl/LC_MESSAGES/Gravatar.po | 10 +- .../locale/uk/LC_MESSAGES/Gravatar.po | 10 +- .../locale/zh_CN/LC_MESSAGES/Gravatar.po | 11 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/ar/LC_MESSAGES/GroupFavorited.po | 50 + .../locale/br/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/ca/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/de/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/es/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/fr/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/ia/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/mk/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/nl/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/ru/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/te/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/tl/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/uk/LC_MESSAGES/GroupFavorited.po | 10 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 294 ++ .../ca/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../de/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../fr/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../ia/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../mk/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../nl/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../sv/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../tl/LC_MESSAGES/GroupPrivateMessage.po | 10 +- .../uk/LC_MESSAGES/GroupPrivateMessage.po | 10 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/br/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/de/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/fr/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/ia/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/mk/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/nl/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/ru/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/sv/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/tl/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/uk/LC_MESSAGES/Imap.po | 10 +- plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po | 11 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../locale/de/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/fr/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/he/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/ia/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/mk/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/nl/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/pt/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/ru/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/tl/LC_MESSAGES/InProcessCache.po | 10 +- .../locale/uk/LC_MESSAGES/InProcessCache.po | 10 +- .../zh_CN/LC_MESSAGES/InProcessCache.po | 11 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- .../locale/de/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/es/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/fr/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/he/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/ia/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/id/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/ja/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/mk/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/nb/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/nl/LC_MESSAGES/InfiniteScroll.po | 10 +- .../pt_BR/LC_MESSAGES/InfiniteScroll.po | 11 +- .../locale/ru/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/tl/LC_MESSAGES/InfiniteScroll.po | 10 +- .../locale/uk/LC_MESSAGES/InfiniteScroll.po | 10 +- .../zh_CN/LC_MESSAGES/InfiniteScroll.po | 11 +- plugins/Irc/locale/Irc.pot | 2 +- plugins/Irc/locale/de/LC_MESSAGES/Irc.po | 10 +- plugins/Irc/locale/fr/LC_MESSAGES/Irc.po | 10 +- plugins/Irc/locale/ia/LC_MESSAGES/Irc.po | 10 +- plugins/Irc/locale/mk/LC_MESSAGES/Irc.po | 10 +- plugins/Irc/locale/nl/LC_MESSAGES/Irc.po | 10 +- plugins/Irc/locale/sv/LC_MESSAGES/Irc.po | 10 +- plugins/Irc/locale/tl/LC_MESSAGES/Irc.po | 10 +- plugins/Irc/locale/uk/LC_MESSAGES/Irc.po | 10 +- .../locale/LdapAuthentication.pot | 2 +- .../de/LC_MESSAGES/LdapAuthentication.po | 10 +- .../fr/LC_MESSAGES/LdapAuthentication.po | 10 +- .../ia/LC_MESSAGES/LdapAuthentication.po | 10 +- .../mk/LC_MESSAGES/LdapAuthentication.po | 10 +- .../nl/LC_MESSAGES/LdapAuthentication.po | 10 +- .../tl/LC_MESSAGES/LdapAuthentication.po | 10 +- .../uk/LC_MESSAGES/LdapAuthentication.po | 10 +- .../locale/LdapAuthorization.pot | 2 +- .../de/LC_MESSAGES/LdapAuthorization.po | 10 +- .../ia/LC_MESSAGES/LdapAuthorization.po | 10 +- .../mk/LC_MESSAGES/LdapAuthorization.po | 10 +- .../nl/LC_MESSAGES/LdapAuthorization.po | 10 +- .../tl/LC_MESSAGES/LdapAuthorization.po | 10 +- .../uk/LC_MESSAGES/LdapAuthorization.po | 10 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- .../locale/de/LC_MESSAGES/LdapCommon.po | 10 +- .../locale/fr/LC_MESSAGES/LdapCommon.po | 10 +- .../locale/ia/LC_MESSAGES/LdapCommon.po | 10 +- .../locale/mk/LC_MESSAGES/LdapCommon.po | 10 +- .../locale/nl/LC_MESSAGES/LdapCommon.po | 10 +- .../locale/tl/LC_MESSAGES/LdapCommon.po | 10 +- .../locale/uk/LC_MESSAGES/LdapCommon.po | 10 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- .../LilUrl/locale/ca/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/de/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/fr/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/he/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/ia/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/id/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/ja/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/mk/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/nb/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/nl/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/ru/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/sv/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/tl/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/uk/LC_MESSAGES/LilUrl.po | 10 +- .../LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po | 11 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- .../locale/de/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/fr/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/ia/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/mk/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/nl/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/sv/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/tl/LC_MESSAGES/LinkPreview.po | 10 +- .../locale/uk/LC_MESSAGES/LinkPreview.po | 10 +- plugins/Linkback/locale/Linkback.pot | 2 +- .../locale/ar/LC_MESSAGES/Linkback.po | 38 + .../locale/ca/LC_MESSAGES/Linkback.po | 10 +- .../locale/de/LC_MESSAGES/Linkback.po | 10 +- .../locale/es/LC_MESSAGES/Linkback.po | 10 +- .../locale/fi/LC_MESSAGES/Linkback.po | 10 +- .../locale/fr/LC_MESSAGES/Linkback.po | 10 +- .../locale/he/LC_MESSAGES/Linkback.po | 10 +- .../locale/ia/LC_MESSAGES/Linkback.po | 10 +- .../locale/id/LC_MESSAGES/Linkback.po | 10 +- .../locale/mk/LC_MESSAGES/Linkback.po | 10 +- .../locale/nb/LC_MESSAGES/Linkback.po | 10 +- .../locale/nl/LC_MESSAGES/Linkback.po | 10 +- .../locale/pt/LC_MESSAGES/Linkback.po | 10 +- .../locale/ru/LC_MESSAGES/Linkback.po | 10 +- .../locale/tl/LC_MESSAGES/Linkback.po | 10 +- .../locale/uk/LC_MESSAGES/Linkback.po | 10 +- .../locale/zh_CN/LC_MESSAGES/Linkback.po | 11 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- .../locale/de/LC_MESSAGES/LogFilter.po | 10 +- .../locale/fi/LC_MESSAGES/LogFilter.po | 10 +- .../locale/fr/LC_MESSAGES/LogFilter.po | 10 +- .../locale/he/LC_MESSAGES/LogFilter.po | 10 +- .../locale/ia/LC_MESSAGES/LogFilter.po | 10 +- .../locale/mk/LC_MESSAGES/LogFilter.po | 10 +- .../locale/nl/LC_MESSAGES/LogFilter.po | 10 +- .../locale/pt/LC_MESSAGES/LogFilter.po | 10 +- .../locale/ru/LC_MESSAGES/LogFilter.po | 10 +- .../locale/tl/LC_MESSAGES/LogFilter.po | 10 +- .../locale/uk/LC_MESSAGES/LogFilter.po | 10 +- .../locale/zh_CN/LC_MESSAGES/LogFilter.po | 11 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/br/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/ca/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/de/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/fi/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/fr/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/fur/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/gl/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/hu/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/ia/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/lb/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/mk/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/nl/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/ru/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/sv/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/ta/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/te/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/tl/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/uk/LC_MESSAGES/Mapstraction.po | 10 +- .../locale/zh_CN/LC_MESSAGES/Mapstraction.po | 11 +- plugins/Memcache/locale/Memcache.pot | 2 +- .../locale/de/LC_MESSAGES/Memcache.po | 10 +- .../locale/es/LC_MESSAGES/Memcache.po | 10 +- .../locale/fi/LC_MESSAGES/Memcache.po | 10 +- .../locale/fr/LC_MESSAGES/Memcache.po | 10 +- .../locale/he/LC_MESSAGES/Memcache.po | 10 +- .../locale/ia/LC_MESSAGES/Memcache.po | 10 +- .../locale/mk/LC_MESSAGES/Memcache.po | 10 +- .../locale/nb/LC_MESSAGES/Memcache.po | 10 +- .../locale/nl/LC_MESSAGES/Memcache.po | 10 +- .../locale/pt/LC_MESSAGES/Memcache.po | 10 +- .../locale/pt_BR/LC_MESSAGES/Memcache.po | 11 +- .../locale/ru/LC_MESSAGES/Memcache.po | 10 +- .../locale/sv/LC_MESSAGES/Memcache.po | 10 +- .../locale/tl/LC_MESSAGES/Memcache.po | 10 +- .../locale/uk/LC_MESSAGES/Memcache.po | 10 +- .../locale/zh_CN/LC_MESSAGES/Memcache.po | 11 +- plugins/Memcached/locale/Memcached.pot | 2 +- .../locale/de/LC_MESSAGES/Memcached.po | 10 +- .../locale/es/LC_MESSAGES/Memcached.po | 10 +- .../locale/fi/LC_MESSAGES/Memcached.po | 10 +- .../locale/fr/LC_MESSAGES/Memcached.po | 10 +- .../locale/he/LC_MESSAGES/Memcached.po | 10 +- .../locale/ia/LC_MESSAGES/Memcached.po | 10 +- .../locale/id/LC_MESSAGES/Memcached.po | 10 +- .../locale/ja/LC_MESSAGES/Memcached.po | 10 +- .../locale/mk/LC_MESSAGES/Memcached.po | 10 +- .../locale/nb/LC_MESSAGES/Memcached.po | 10 +- .../locale/nl/LC_MESSAGES/Memcached.po | 10 +- .../locale/pt/LC_MESSAGES/Memcached.po | 10 +- .../locale/ru/LC_MESSAGES/Memcached.po | 10 +- .../locale/sv/LC_MESSAGES/Memcached.po | 10 +- .../locale/tl/LC_MESSAGES/Memcached.po | 10 +- .../locale/uk/LC_MESSAGES/Memcached.po | 10 +- .../locale/zh_CN/LC_MESSAGES/Memcached.po | 11 +- plugins/Meteor/locale/Meteor.pot | 8 +- .../Meteor/locale/de/LC_MESSAGES/Meteor.po | 16 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 12 +- .../Meteor/locale/ia/LC_MESSAGES/Meteor.po | 15 +- .../Meteor/locale/mk/LC_MESSAGES/Meteor.po | 15 +- .../Meteor/locale/nl/LC_MESSAGES/Meteor.po | 16 +- .../Meteor/locale/tl/LC_MESSAGES/Meteor.po | 12 +- .../Meteor/locale/uk/LC_MESSAGES/Meteor.po | 12 +- plugins/Minify/locale/Minify.pot | 2 +- .../Minify/locale/de/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/fr/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/ia/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/mk/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/nb/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/nl/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/ru/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/sv/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/tl/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/uk/LC_MESSAGES/Minify.po | 10 +- .../Minify/locale/zh_CN/LC_MESSAGES/Minify.po | 11 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- .../locale/ca/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/ce/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/de/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/fr/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/fur/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/ia/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/mk/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/nb/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/nl/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/ru/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/sv/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/tl/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/uk/LC_MESSAGES/MobileProfile.po | 10 +- .../locale/zh_CN/LC_MESSAGES/MobileProfile.po | 11 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- .../locale/de/LC_MESSAGES/ModHelper.po | 10 +- .../locale/es/LC_MESSAGES/ModHelper.po | 10 +- .../locale/fr/LC_MESSAGES/ModHelper.po | 10 +- .../locale/he/LC_MESSAGES/ModHelper.po | 10 +- .../locale/ia/LC_MESSAGES/ModHelper.po | 10 +- .../locale/mk/LC_MESSAGES/ModHelper.po | 10 +- .../locale/nl/LC_MESSAGES/ModHelper.po | 10 +- .../locale/pt/LC_MESSAGES/ModHelper.po | 10 +- .../locale/ru/LC_MESSAGES/ModHelper.po | 10 +- .../locale/tl/LC_MESSAGES/ModHelper.po | 10 +- .../locale/uk/LC_MESSAGES/ModHelper.po | 10 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- .../ModPlus/locale/de/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/fr/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/ia/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/mk/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/nl/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/tl/LC_MESSAGES/ModPlus.po | 10 +- .../ModPlus/locale/uk/LC_MESSAGES/ModPlus.po | 10 +- plugins/Mollom/locale/Mollom.pot | 2 +- .../Mollom/locale/ca/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/de/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/fr/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/he/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/ia/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/mk/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/nl/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/sv/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/tl/LC_MESSAGES/Mollom.po | 10 +- .../Mollom/locale/uk/LC_MESSAGES/Mollom.po | 10 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/Msn/locale/ar/LC_MESSAGES/Msn.po | 10 +- plugins/Msn/locale/de/LC_MESSAGES/Msn.po | 10 +- plugins/Msn/locale/ia/LC_MESSAGES/Msn.po | 10 +- plugins/Msn/locale/mk/LC_MESSAGES/Msn.po | 10 +- plugins/Msn/locale/nl/LC_MESSAGES/Msn.po | 10 +- plugins/Msn/locale/sv/LC_MESSAGES/Msn.po | 10 +- plugins/Msn/locale/tl/LC_MESSAGES/Msn.po | 10 +- plugins/Msn/locale/uk/LC_MESSAGES/Msn.po | 10 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- .../locale/ar/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/br/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/de/LC_MESSAGES/NoticeTitle.po | 15 +- .../locale/fr/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/he/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/ia/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/mk/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/nb/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/ne/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/nl/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/ru/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/sv/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/tl/LC_MESSAGES/NoticeTitle.po | 10 +- .../locale/uk/LC_MESSAGES/NoticeTitle.po | 10 +- plugins/OMB/locale/OMB.pot | 4 +- plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 60 + plugins/OStatus/locale/OStatus.pot | 4 +- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 14 +- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 17 +- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 22 +- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 14 +- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 22 +- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 22 +- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 14 +- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 14 +- .../locale/OpenExternalLinkTarget.pot | 2 +- .../ar/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../ca/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../de/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../es/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../fr/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../he/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../ia/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../mk/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../nb/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../nl/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../pt/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../ru/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../tl/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../uk/LC_MESSAGES/OpenExternalLinkTarget.po | 10 +- .../LC_MESSAGES/OpenExternalLinkTarget.po | 11 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/ar/LC_MESSAGES/OpenID.po | 71 +- .../OpenID/locale/ca/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/de/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 12 +- .../OpenID/locale/ia/LC_MESSAGES/OpenID.po | 10 +- .../OpenID/locale/ko/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 | 10 +- .../OpenID/locale/uk/LC_MESSAGES/OpenID.po | 10 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po | 10 +- plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po | 15 +- plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po | 10 +- plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po | 10 +- plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po | 10 +- plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po | 10 +- plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po | 10 +- plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po | 10 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../Orbited/locale/de/LC_MESSAGES/Orbited.po | 10 +- .../Orbited/locale/fr/LC_MESSAGES/Orbited.po | 10 +- .../Orbited/locale/ia/LC_MESSAGES/Orbited.po | 10 +- .../Orbited/locale/mk/LC_MESSAGES/Orbited.po | 10 +- .../Orbited/locale/nl/LC_MESSAGES/Orbited.po | 10 +- .../Orbited/locale/tl/LC_MESSAGES/Orbited.po | 10 +- .../Orbited/locale/uk/LC_MESSAGES/Orbited.po | 10 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- .../locale/de/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/es/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/fr/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/he/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/ia/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/id/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/mk/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/nb/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/nl/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/pt/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../pt_BR/LC_MESSAGES/PiwikAnalytics.po | 11 +- .../locale/ru/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/tl/LC_MESSAGES/PiwikAnalytics.po | 10 +- .../locale/uk/LC_MESSAGES/PiwikAnalytics.po | 10 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/Poll/locale/ar/LC_MESSAGES/Poll.po | 150 + plugins/Poll/locale/de/LC_MESSAGES/Poll.po | 13 +- plugins/Poll/locale/fr/LC_MESSAGES/Poll.po | 12 +- plugins/Poll/locale/ia/LC_MESSAGES/Poll.po | 10 +- plugins/Poll/locale/mk/LC_MESSAGES/Poll.po | 10 +- plugins/Poll/locale/nl/LC_MESSAGES/Poll.po | 10 +- plugins/Poll/locale/tl/LC_MESSAGES/Poll.po | 10 +- plugins/Poll/locale/uk/LC_MESSAGES/Poll.po | 10 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/de/LC_MESSAGES/PostDebug.po | 10 +- .../locale/es/LC_MESSAGES/PostDebug.po | 10 +- .../locale/fi/LC_MESSAGES/PostDebug.po | 10 +- .../locale/fr/LC_MESSAGES/PostDebug.po | 10 +- .../locale/he/LC_MESSAGES/PostDebug.po | 10 +- .../locale/ia/LC_MESSAGES/PostDebug.po | 10 +- .../locale/id/LC_MESSAGES/PostDebug.po | 10 +- .../locale/ja/LC_MESSAGES/PostDebug.po | 10 +- .../locale/mk/LC_MESSAGES/PostDebug.po | 10 +- .../locale/nb/LC_MESSAGES/PostDebug.po | 10 +- .../locale/nl/LC_MESSAGES/PostDebug.po | 10 +- .../locale/pt/LC_MESSAGES/PostDebug.po | 10 +- .../locale/pt_BR/LC_MESSAGES/PostDebug.po | 11 +- .../locale/ru/LC_MESSAGES/PostDebug.po | 10 +- .../locale/tl/LC_MESSAGES/PostDebug.po | 10 +- .../locale/uk/LC_MESSAGES/PostDebug.po | 10 +- .../locale/PoweredByStatusNet.pot | 2 +- .../af/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../br/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../ca/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../de/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../fr/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../gl/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../he/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../ia/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../mk/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../nl/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../pt/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../ru/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../sv/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../tl/LC_MESSAGES/PoweredByStatusNet.po | 10 +- .../uk/LC_MESSAGES/PoweredByStatusNet.po | 10 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- .../PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po | 13 +- .../PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po | 10 +- .../locale/pt_BR/LC_MESSAGES/PtitUrl.po | 11 +- .../PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po | 10 +- .../PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po | 10 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/QnA/locale/ar/LC_MESSAGES/QnA.po | 313 ++ plugins/QnA/locale/de/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/fr/LC_MESSAGES/QnA.po | 18 +- plugins/QnA/locale/ia/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/mk/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/nl/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/tl/LC_MESSAGES/QnA.po | 10 +- plugins/QnA/locale/uk/LC_MESSAGES/QnA.po | 10 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 18 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 10 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 10 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 10 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 10 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 10 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 10 +- plugins/Realtime/locale/Realtime.pot | 2 +- .../locale/af/LC_MESSAGES/Realtime.po | 12 +- .../locale/ar/LC_MESSAGES/Realtime.po | 12 +- .../locale/br/LC_MESSAGES/Realtime.po | 12 +- .../locale/ca/LC_MESSAGES/Realtime.po | 12 +- .../locale/de/LC_MESSAGES/Realtime.po | 19 +- .../locale/fr/LC_MESSAGES/Realtime.po | 12 +- .../locale/ia/LC_MESSAGES/Realtime.po | 18 +- .../locale/lv/LC_MESSAGES/Realtime.po | 12 +- .../locale/mk/LC_MESSAGES/Realtime.po | 18 +- .../locale/ne/LC_MESSAGES/Realtime.po | 12 +- .../locale/nl/LC_MESSAGES/Realtime.po | 18 +- .../locale/sv/LC_MESSAGES/Realtime.po | 12 +- .../locale/tl/LC_MESSAGES/Realtime.po | 12 +- .../locale/tr/LC_MESSAGES/Realtime.po | 12 +- .../locale/uk/LC_MESSAGES/Realtime.po | 12 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/ca/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/de/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/fr/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/fur/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/ia/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/mk/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/nb/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/nl/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/pt/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/ru/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/sv/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/tl/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/uk/LC_MESSAGES/Recaptcha.po | 10 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/de/LC_MESSAGES/RegisterThrottle.po | 10 +- .../locale/fr/LC_MESSAGES/RegisterThrottle.po | 10 +- .../locale/ia/LC_MESSAGES/RegisterThrottle.po | 10 +- .../locale/mk/LC_MESSAGES/RegisterThrottle.po | 10 +- .../locale/nl/LC_MESSAGES/RegisterThrottle.po | 10 +- .../locale/tl/LC_MESSAGES/RegisterThrottle.po | 10 +- .../locale/uk/LC_MESSAGES/RegisterThrottle.po | 10 +- .../locale/RequireValidatedEmail.pot | 2 +- .../ar/LC_MESSAGES/RequireValidatedEmail.po | 103 + .../de/LC_MESSAGES/RequireValidatedEmail.po | 16 +- .../fr/LC_MESSAGES/RequireValidatedEmail.po | 14 +- .../ia/LC_MESSAGES/RequireValidatedEmail.po | 10 +- .../mk/LC_MESSAGES/RequireValidatedEmail.po | 10 +- .../nl/LC_MESSAGES/RequireValidatedEmail.po | 10 +- .../tl/LC_MESSAGES/RequireValidatedEmail.po | 10 +- .../uk/LC_MESSAGES/RequireValidatedEmail.po | 10 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- .../ReverseUsernameAuthentication.po | 10 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- .../locale/de/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/fr/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/he/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/ia/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/mk/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/nl/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/pt/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/ru/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/tl/LC_MESSAGES/SQLProfile.po | 10 +- .../locale/uk/LC_MESSAGES/SQLProfile.po | 10 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- .../locale/de/LC_MESSAGES/SQLStats.po | 10 +- .../locale/fr/LC_MESSAGES/SQLStats.po | 10 +- .../locale/he/LC_MESSAGES/SQLStats.po | 10 +- .../locale/ia/LC_MESSAGES/SQLStats.po | 10 +- .../locale/ksh/LC_MESSAGES/SQLStats.po | 10 +- .../locale/mk/LC_MESSAGES/SQLStats.po | 10 +- .../locale/nl/LC_MESSAGES/SQLStats.po | 10 +- .../locale/tl/LC_MESSAGES/SQLStats.po | 10 +- .../locale/uk/LC_MESSAGES/SQLStats.po | 10 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/af/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/ar/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/br/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/ca/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/de/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/fr/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/ia/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/lb/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/mk/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/pdc/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/ru/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/tl/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/uk/LC_MESSAGES/Sample.po | 10 +- .../Sample/locale/zh_CN/LC_MESSAGES/Sample.po | 11 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- .../locale/de/LC_MESSAGES/SearchSub.po | 23 +- .../locale/fr/LC_MESSAGES/SearchSub.po | 15 +- .../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/ShareNotice/locale/ShareNotice.pot | 2 +- .../locale/ar/LC_MESSAGES/ShareNotice.po | 12 +- .../locale/br/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/ca/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/de/LC_MESSAGES/ShareNotice.po | 13 +- .../locale/fi/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/fr/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/ia/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/mk/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/nl/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/te/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/tl/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/tr/LC_MESSAGES/ShareNotice.po | 10 +- .../locale/uk/LC_MESSAGES/ShareNotice.po | 10 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- .../locale/br/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/de/LC_MESSAGES/SimpleUrl.po | 13 +- .../locale/es/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/fi/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/fr/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/gl/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/he/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/ia/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/id/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/ja/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/mk/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/nb/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/nl/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/pt/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/ru/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/tl/LC_MESSAGES/SimpleUrl.po | 10 +- .../locale/uk/LC_MESSAGES/SimpleUrl.po | 10 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../Sitemap/locale/br/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/de/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/fr/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/ia/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/mk/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/nl/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/ru/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/tl/LC_MESSAGES/Sitemap.po | 10 +- .../Sitemap/locale/uk/LC_MESSAGES/Sitemap.po | 10 +- .../locale/SlicedFavorites.pot | 2 +- .../locale/de/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/fr/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/he/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/ia/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/id/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/mk/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/nl/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/ru/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/tl/LC_MESSAGES/SlicedFavorites.po | 10 +- .../locale/uk/LC_MESSAGES/SlicedFavorites.po | 10 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- .../locale/de/LC_MESSAGES/SphinxSearch.po | 10 +- .../locale/fr/LC_MESSAGES/SphinxSearch.po | 10 +- .../locale/ia/LC_MESSAGES/SphinxSearch.po | 10 +- .../locale/mk/LC_MESSAGES/SphinxSearch.po | 10 +- .../locale/nl/LC_MESSAGES/SphinxSearch.po | 10 +- .../locale/ru/LC_MESSAGES/SphinxSearch.po | 10 +- .../locale/tl/LC_MESSAGES/SphinxSearch.po | 10 +- .../locale/uk/LC_MESSAGES/SphinxSearch.po | 10 +- plugins/Spotify/locale/Spotify.pot | 2 +- .../Spotify/locale/de/LC_MESSAGES/Spotify.po | 26 + .../Spotify/locale/gl/LC_MESSAGES/Spotify.po | 10 +- .../Spotify/locale/he/LC_MESSAGES/Spotify.po | 10 +- .../Spotify/locale/ia/LC_MESSAGES/Spotify.po | 10 +- .../Spotify/locale/mk/LC_MESSAGES/Spotify.po | 10 +- .../Spotify/locale/nl/LC_MESSAGES/Spotify.po | 10 +- .../Spotify/locale/sv/LC_MESSAGES/Spotify.po | 10 +- .../locale/StrictTransportSecurity.pot | 2 +- .../de/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../fr/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../he/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../ia/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../mk/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../nl/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../ru/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../tl/LC_MESSAGES/StrictTransportSecurity.po | 10 +- .../uk/LC_MESSAGES/StrictTransportSecurity.po | 10 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/de/LC_MESSAGES/SubMirror.po | 10 +- .../locale/fr/LC_MESSAGES/SubMirror.po | 14 +- .../locale/ia/LC_MESSAGES/SubMirror.po | 10 +- .../locale/mk/LC_MESSAGES/SubMirror.po | 10 +- .../locale/nl/LC_MESSAGES/SubMirror.po | 10 +- .../locale/tl/LC_MESSAGES/SubMirror.po | 10 +- .../locale/uk/LC_MESSAGES/SubMirror.po | 10 +- .../locale/SubscriptionThrottle.pot | 2 +- .../ca/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../de/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../fr/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../he/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../ia/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../mk/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../ms/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../nl/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../tl/LC_MESSAGES/SubscriptionThrottle.po | 10 +- .../uk/LC_MESSAGES/SubscriptionThrottle.po | 10 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- .../locale/br/LC_MESSAGES/TabFocus.po | 10 +- .../locale/de/LC_MESSAGES/TabFocus.po | 10 +- .../locale/es/LC_MESSAGES/TabFocus.po | 10 +- .../locale/fr/LC_MESSAGES/TabFocus.po | 10 +- .../locale/gl/LC_MESSAGES/TabFocus.po | 10 +- .../locale/he/LC_MESSAGES/TabFocus.po | 10 +- .../locale/ia/LC_MESSAGES/TabFocus.po | 10 +- .../locale/id/LC_MESSAGES/TabFocus.po | 10 +- .../locale/mk/LC_MESSAGES/TabFocus.po | 10 +- .../locale/nb/LC_MESSAGES/TabFocus.po | 10 +- .../locale/nl/LC_MESSAGES/TabFocus.po | 10 +- .../locale/nn/LC_MESSAGES/TabFocus.po | 10 +- .../locale/ru/LC_MESSAGES/TabFocus.po | 10 +- .../locale/tl/LC_MESSAGES/TabFocus.po | 10 +- .../locale/uk/LC_MESSAGES/TabFocus.po | 10 +- plugins/TagSub/locale/TagSub.pot | 2 +- .../TagSub/locale/ca/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/de/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/ia/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/mk/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/nl/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po | 12 +- .../TagSub/locale/te/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/tl/LC_MESSAGES/TagSub.po | 10 +- .../TagSub/locale/uk/LC_MESSAGES/TagSub.po | 10 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- .../locale/de/LC_MESSAGES/TightUrl.po | 13 +- .../locale/es/LC_MESSAGES/TightUrl.po | 10 +- .../locale/fr/LC_MESSAGES/TightUrl.po | 10 +- .../locale/gl/LC_MESSAGES/TightUrl.po | 10 +- .../locale/he/LC_MESSAGES/TightUrl.po | 10 +- .../locale/ia/LC_MESSAGES/TightUrl.po | 10 +- .../locale/id/LC_MESSAGES/TightUrl.po | 10 +- .../locale/ja/LC_MESSAGES/TightUrl.po | 10 +- .../locale/mk/LC_MESSAGES/TightUrl.po | 10 +- .../locale/ms/LC_MESSAGES/TightUrl.po | 10 +- .../locale/nb/LC_MESSAGES/TightUrl.po | 10 +- .../locale/nl/LC_MESSAGES/TightUrl.po | 10 +- .../locale/pt/LC_MESSAGES/TightUrl.po | 10 +- .../locale/pt_BR/LC_MESSAGES/TightUrl.po | 11 +- .../locale/ru/LC_MESSAGES/TightUrl.po | 10 +- .../locale/tl/LC_MESSAGES/TightUrl.po | 10 +- .../locale/uk/LC_MESSAGES/TightUrl.po | 10 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po | 10 +- .../locale/pt_BR/LC_MESSAGES/TinyMCE.po | 11 +- .../TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po | 10 +- .../TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po | 10 +- .../TwitterBridge/locale/TwitterBridge.pot | 37 +- .../locale/ar/LC_MESSAGES/TwitterBridge.po | 80 +- .../locale/ca/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/de/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/fr/LC_MESSAGES/TwitterBridge.po | 20 +- .../locale/fur/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/ia/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/ko/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/mk/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/ms/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/nl/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/tl/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/tr/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/uk/LC_MESSAGES/TwitterBridge.po | 13 +- .../locale/zh_CN/LC_MESSAGES/TwitterBridge.po | 14 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- .../locale/ar/LC_MESSAGES/UserFlag.po | 14 +- .../locale/ca/LC_MESSAGES/UserFlag.po | 10 +- .../locale/de/LC_MESSAGES/UserFlag.po | 19 +- .../locale/fr/LC_MESSAGES/UserFlag.po | 10 +- .../locale/ia/LC_MESSAGES/UserFlag.po | 10 +- .../locale/mk/LC_MESSAGES/UserFlag.po | 10 +- .../locale/nl/LC_MESSAGES/UserFlag.po | 10 +- .../locale/pt/LC_MESSAGES/UserFlag.po | 10 +- .../locale/ru/LC_MESSAGES/UserFlag.po | 10 +- .../locale/tl/LC_MESSAGES/UserFlag.po | 10 +- .../locale/uk/LC_MESSAGES/UserFlag.po | 10 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- .../locale/br/LC_MESSAGES/UserLimit.po | 10 +- .../locale/de/LC_MESSAGES/UserLimit.po | 13 +- .../locale/es/LC_MESSAGES/UserLimit.po | 10 +- .../locale/fa/LC_MESSAGES/UserLimit.po | 10 +- .../locale/fi/LC_MESSAGES/UserLimit.po | 10 +- .../locale/fr/LC_MESSAGES/UserLimit.po | 10 +- .../locale/gl/LC_MESSAGES/UserLimit.po | 10 +- .../locale/he/LC_MESSAGES/UserLimit.po | 10 +- .../locale/ia/LC_MESSAGES/UserLimit.po | 10 +- .../locale/id/LC_MESSAGES/UserLimit.po | 10 +- .../locale/lb/LC_MESSAGES/UserLimit.po | 10 +- .../locale/lv/LC_MESSAGES/UserLimit.po | 10 +- .../locale/mk/LC_MESSAGES/UserLimit.po | 10 +- .../locale/ms/LC_MESSAGES/UserLimit.po | 10 +- .../locale/nb/LC_MESSAGES/UserLimit.po | 10 +- .../locale/nl/LC_MESSAGES/UserLimit.po | 10 +- .../locale/pt/LC_MESSAGES/UserLimit.po | 10 +- .../locale/pt_BR/LC_MESSAGES/UserLimit.po | 11 +- .../locale/ru/LC_MESSAGES/UserLimit.po | 10 +- .../locale/tl/LC_MESSAGES/UserLimit.po | 10 +- .../locale/tr/LC_MESSAGES/UserLimit.po | 10 +- .../locale/uk/LC_MESSAGES/UserLimit.po | 10 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHashtags.po | 13 +- .../locale/ia/LC_MESSAGES/WikiHashtags.po | 10 +- .../locale/mk/LC_MESSAGES/WikiHashtags.po | 10 +- .../locale/ms/LC_MESSAGES/WikiHashtags.po | 10 +- .../locale/nl/LC_MESSAGES/WikiHashtags.po | 10 +- .../locale/tl/LC_MESSAGES/WikiHashtags.po | 10 +- .../locale/uk/LC_MESSAGES/WikiHashtags.po | 10 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- .../locale/de/LC_MESSAGES/WikiHowProfile.po | 15 +- .../locale/fr/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/ia/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/mk/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/ms/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/nl/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/ru/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/tl/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/tr/LC_MESSAGES/WikiHowProfile.po | 10 +- .../locale/uk/LC_MESSAGES/WikiHowProfile.po | 10 +- plugins/XCache/locale/XCache.pot | 2 +- .../XCache/locale/ast/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/br/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/de/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/es/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/fi/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/fr/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/gl/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/he/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/ia/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/id/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/mk/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/ms/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/nb/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/nl/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/pt/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/pt_BR/LC_MESSAGES/XCache.po | 11 +- .../XCache/locale/ru/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/tl/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/tr/LC_MESSAGES/XCache.po | 10 +- .../XCache/locale/uk/LC_MESSAGES/XCache.po | 10 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po | 10 +- plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po | 10 +- plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po | 10 +- plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po | 10 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- .../locale/br/LC_MESSAGES/YammerImport.po | 10 +- .../locale/de/LC_MESSAGES/YammerImport.po | 13 +- .../locale/fr/LC_MESSAGES/YammerImport.po | 16 +- .../locale/ia/LC_MESSAGES/YammerImport.po | 10 +- .../locale/mk/LC_MESSAGES/YammerImport.po | 10 +- .../locale/nl/LC_MESSAGES/YammerImport.po | 10 +- .../locale/tl/LC_MESSAGES/YammerImport.po | 10 +- .../locale/tr/LC_MESSAGES/YammerImport.po | 10 +- .../locale/uk/LC_MESSAGES/YammerImport.po | 10 +- 1425 files changed, 12156 insertions(+), 16714 deletions(-) create mode 100644 plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po create mode 100644 plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po create mode 100644 plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po create mode 100644 plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po create mode 100644 plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po create mode 100644 plugins/OMB/locale/nl/LC_MESSAGES/OMB.po create mode 100644 plugins/Poll/locale/ar/LC_MESSAGES/Poll.po create mode 100644 plugins/QnA/locale/ar/LC_MESSAGES/QnA.po create mode 100644 plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po create mode 100644 plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 02d4123600..f5c74009c3 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,19 +15,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:31+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:37+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -38,12 +38,6 @@ msgid "" "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 "حدث خطأ." @@ -65,7 +59,7 @@ msgstr "إجراء غير معروف" #. TRANS: Page title for Access admin panel that allows configuring site access. msgid "Access" -msgstr "نفاذ" +msgstr "النفاذ" #. TRANS: Page notice. msgid "Site access settings" @@ -177,7 +171,7 @@ msgstr "" #. TRANS: Title after adding a user to a list. msgctxt "TITLE" msgid "Listed" -msgstr "" +msgstr "المدرجون" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) @@ -236,22 +230,21 @@ msgid "No such user." msgstr "لا مستخدم كهذا." #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "مسار %s الزمني" +msgstr "المسار الزمني الرئيسي" #. TRANS: Title of another user's start page. #. TRANS: %s is the other user's name. -#, fuzzy, php-format +#, php-format msgid "%s's home timeline" -msgstr "مسار %s الزمني" +msgstr "المسار الزمني الرئيسي ل%s" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "تغذية أصدقاء %s (أتوم)" +msgstr "تغذية أصدقاء %s (آكتفتي ستريمز جيسن)" #. TRANS: %s is user nickname. #, php-format @@ -311,10 +304,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "الدعوات" +msgstr "أرسل دعوة" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -536,7 +528,7 @@ msgstr "تعذر متابعة المستخدم: الحساب غير موجود." #. TRANS: %s is the nickname of the user that is already being followed. #, php-format msgid "Could not follow user: %s is already on your list." -msgstr "تعذر متابعة المستخدم: %s موجود في قائمتك مسبقًا." +msgstr "تعذر متابعة المستخدم: %s موجود في لائحتك مسبقًا." #. TRANS: Client error displayed when trying to unfollow a user that cannot be found. msgid "Could not unfollow user: User not found." @@ -1183,7 +1175,7 @@ msgstr "" #. TRANS: Client error displayed when requesting user information for a non-existing user. msgid "User not found." -msgstr "لم يُعثرعلى المستخدم." +msgstr "لم يُعثر على المستخدم." #. TRANS: Client error displayed when trying to leave a group while not logged in. msgid "You must be logged in to leave a group." @@ -1300,10 +1292,10 @@ msgstr "" #. 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. msgid "Subscription approved." @@ -1420,9 +1412,9 @@ msgstr "" #. 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 "!!FUZZY! ملف مجهول" +msgstr "ملف %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. @@ -1548,8 +1540,8 @@ msgid "" "addresses is not backed up. Additionally, uploaded files and direct messages " "are not backed up." msgstr "" -"يمكنك نسخ بيانات حسابك بنسق Activity " -"Streams. هذه الميزة تجريبية وتوفر نسخة احتياطية غير مكتملة. معلومات " +"يمكنك نسخ بيانات حسابك بنسق آكتفتي " +"ستريمز. هذه الميزة تجريبية وتوفر نسخة احتياطية غير مكتملة. معلومات " "الحساب الخاصة كالبريد الإلكتروني وعناوين المحادثة الفورية لن تنسخ. الملفات " "المرفوعة والرسائل المباشرة أيضًا لن تنسخ." @@ -1727,15 +1719,13 @@ msgstr "لقد تم التأكد من عنوان حسابك \"%s\"." #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "الردود على %s" +msgstr "تغذية المحادثة (آكتفتي ستريمز جيسن)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "محادثة" +msgstr "تغذية المحادثة (آرإس​إس 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -1822,7 +1812,7 @@ msgstr "" #. TRANS: Title for delete application page. #. TRANS: Fieldset legend on delete application page. msgid "Delete application" -msgstr "احذف هذا التطبيق" +msgstr "احذف التطبيق" #. TRANS: Confirmation text on delete application page. msgid "" @@ -2097,9 +2087,8 @@ msgid "" msgstr "" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "صورة غير صالحة." +msgstr "وسم غير صالح." #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. @@ -2114,9 +2103,8 @@ msgid "" msgstr "" #. TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "تعذّر تحديث المستخدم." +msgstr "تعذّر تحديث اللائحة." #. TRANS: Title for e-mail settings. msgid "Email settings" @@ -2277,7 +2265,7 @@ msgstr "" #. TRANS: Message given canceling Instant Messaging address confirmation that is not pending. #. TRANS: Message given canceling SMS phone number confirmation that is not pending. msgid "No pending confirmation to cancel." -msgstr "لا يوجد تأكيد قيد الانتظار لتلغيه." +msgstr "لا يوجد تأكيد معلق لتلغيه." #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. msgid "That is the wrong email address." @@ -2326,9 +2314,8 @@ msgid "This notice is already a favorite!" msgstr "هذا الإشعار مفضلة مسبقًا!" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#, fuzzy msgid "Disfavor favorite." -msgstr "ألغِ تفضيل المفضلة" +msgstr "ألغِ تفضيل المفضلة." #. TRANS: Page title for first page of favorited notices. #. TRANS: Title for favourited notices section. @@ -2424,9 +2411,8 @@ msgstr "تعذّرت قراءة الملف." #. TRANS: Client error displayed when trying to assign an invalid role to a user. #. TRANS: Client error displayed when trying to revoke an invalid role. -#, fuzzy msgid "Invalid role." -msgstr "دور غير صحيح" +msgstr "دور غير صالح." #. TRANS: Client error displayed when trying to assign an reserved role to a user. #. TRANS: Client error displayed when trying to revoke a reserved role. @@ -2460,9 +2446,8 @@ 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. -#, fuzzy msgid "User is already blocked from group." -msgstr "المستخدم ليس ممنوعًا من المجموعة." +msgstr "المستخدم ممنوع من المجموعة من قبل." #. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group. msgid "User is not a member of group." @@ -2483,14 +2468,12 @@ msgid "" msgstr "" #. TRANS: Submit button title for 'No' when blocking a user from a group. -#, fuzzy msgid "Do not block this user from this group." -msgstr "لا تحظر هذا المستخدم من هذه المجموعة" +msgstr "لا تمنع هذا المستخدم من هذه المجموعة." #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#, fuzzy msgid "Block this user from this group." -msgstr "حظر هذا المستخدم من هذه المجموعة" +msgstr "امنع هذا المستخدم من هذه المجموعة." #. 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." @@ -2674,6 +2657,8 @@ msgid "" "You can send and receive notices through instant messaging [instant messages]" "(%%doc.im%%). Configure your addresses and settings below." msgstr "" +"يمكنك إرسال واستقبال الإشعارات عبر [المراسلة الفورية](%%doc.im%%). اضبط " +"عنوانك وإعدادتك أدناه." #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." @@ -2686,13 +2671,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 "" -"في انتظار تأكيد هذا العنوان. التمس رسالة تحوي مزيدًا من التعليمات في صندوق " -"الوارد (وصندوق الرسائل المزعجة!)." +"في انتظار تأكيد هذا العنوان. التمس رسالة تحوي مزيدًا من التعليمات في حسابك %1" +"$s. (أأضفت %2$s إلى قائمة أصدقائك؟)" #. TRANS: Field label for IM address. msgid "IM address" @@ -3031,9 +3016,8 @@ msgid "Login to site" msgstr "لُج إلى الموقع" #. TRANS: Field label on login page. -#, fuzzy msgid "Username or email address" -msgstr "الاسم المستعار أو البريد الإلكتروني" +msgstr "اسم المستخدم أو البريد الإلكتروني" #. TRANS: Checkbox label label on login page. #. TRANS: Checkbox label on account registration page. @@ -3170,7 +3154,7 @@ msgstr "أُرسلت الرسالة" #. TRANS: %s is the name of the other user. #, php-format msgid "Direct message to %s sent." -msgstr "رسالة مباشرة ل%s تم إرسالها." +msgstr "تم إرسال رسالة مباشرة ل%s." #. 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. @@ -3223,6 +3207,8 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" +"لمَ لا [تسجل حسابا](%%%%action.register%%%%) وتكون أول من [ينشر عن هذا " +"الموضوع](%%%%action.newnotice%%%%?status_textarea=%s)!" #. TRANS: RSS notice search feed title. %s is the query. #, php-format @@ -3684,28 +3670,29 @@ msgstr "بحث في الأشخاص" #. TRANS: Title for list page. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Public list %s" -msgstr "سحابة الوسوم العمومية" +msgstr "اللائحة العامة %s" #. TRANS: Title for list page. #. TRANS: %1$s is a list, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Public list %1$s, page %2$d" -msgstr "الردود على %1$s، الصفحة %2$d" +msgstr "اللائحة العامة %1$s، الصفحة %2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" -"**%s** مجموعة مستخدمين على %%%%site.name%%%%، خدمة [التدوين المُصغّر](http://" -"en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [ستاتس نت]" -"(http://status.net/). يتشارك أعضاؤها رسائل قصيرة عن حياتهم واهتماماتهم. " +"تمكنك اللائحات من فرز الأشخاص حسب تشابههم على %%site.name%%، خدمة [التدوين " +"المُصغّر](http://en.wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج " +"الحر [ستاتس نت](http://status.net/). يمكنك بعد ذلك متابعتهم بالاشتراك " +"بالمسار الزمني للائحة." #. TRANS: Client error displayed when a tagger is expected but not provided. msgid "No tagger." @@ -3715,13 +3702,13 @@ msgstr "" #. TRANS: %1$s is a list, %2$s is a username. #, php-format msgid "People listed in %1$s by %2$s" -msgstr "الناس المدرجة في %1$s من %2$s" +msgstr "المدرجون في %1$s من %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. #, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "الناس المدرجة في %1$s من %2$s ، الصفحة %3$d" +msgstr "المدرجون في %1$s من %2$s، الصفحة %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -3730,27 +3717,27 @@ msgstr "المنشئ" #. TRANS: Title for lists by a user page for a private tag. msgid "Private lists by you" -msgstr "اللائحات الخاصة بك" +msgstr "لائحاتك الخاصة" #. TRANS: Title for lists by a user page for a public tag. msgid "Public lists by you" -msgstr "اللائحات العامة لك" +msgstr "لائحاتك العامة" #. TRANS: Title for lists by a user page. msgid "Lists by you" -msgstr "اللائحات لك" +msgstr "لائحاتك" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "اللائحات لــ%s" +msgstr "لائحات %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. #, php-format msgid "Lists by %1$s, page %2$d" -msgstr "" +msgstr "لائحات %1$s، الصفحة %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" @@ -3787,79 +3774,87 @@ msgstr "" #. TRANS: Submit button text on gallery action page. msgctxt "BUTTON" msgid "Go" -msgstr "إنطلق" +msgstr "اذهب" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" +"هذه اللائحات التي أنشأها **%s**. تمكنك اللائحات من فرز الأشخاص حسب تشابههم " +"على %%%%site.name%%%% خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/" +"Micro-blogging) المبنية على البرنامج الحر [ستاتس نت](http://status.net/). " +"يمكنك بعد ذلك متابعتهم بالاشتراك بالمسار الزمني للائحة." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. #, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" +msgstr "لم ينشئ %s أي [لائحات](%%%%doc.lists%%%%) إلى الآن." #. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "اللائحات التي فيها %s" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, php-format msgid "Lists with %1$s, page %2$d" -msgstr "" +msgstr "اللائحات التي فيها %1$s، الصفحة %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" +"هذه لائحات **%s**. تمكنك اللائحات من فرز الأشخاص حسب تشابههم على %%%%site." +"name%%%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-blogging) " +"المبنية على البرنامج الحر [ستاتس نت](http://status.net/). يمكنك بعد ذلك " +"متابعتهم بالاشتراك بالمسار الزمني للائحة." #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a user nickname. #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" +msgstr "لم [يدرج](%%%%doc.lists%%%%) أحد %s إلى الآن." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "الردود على %1$s، الصفحة %2$d" +msgstr "المشتركون باللائحة %1$s التي أنشأها %2$s" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" +msgstr "المشتركون باللائحة %1$s التي أنشأها %2$s، الصفحة %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. #, php-format msgid "Lists subscribed to by %s" -msgstr "اللائحات اللتي %s هو مشترك فيها" +msgstr "اللائحات التي %s مشترك بها" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. #, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "" +msgstr "اللائحات التي %1$s مشترك بها، الصفحة %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3872,6 +3867,10 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" +"هذه اللائحات التي أنشأها **%s**. تمكنك اللائحات من فرز الأشخاص حسب تشابههم " +"على %%%%site.name%%%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/" +"Micro-blogging) المبنية على البرنامج الحر [ستاتس نت](http://status.net/). " +"يمكنك بعد ذلك متابعتهم بالاشتراك بالمسار الزمني للائحة." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -3951,9 +3950,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. @@ -4045,11 +4043,11 @@ msgstr "ما المنطقة الزمنية التي تتواجد فيها عاد #. TRANS: Checkbox label in form for profile settings. msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." -msgstr "إشترك تلقائيًا بأي شخص يشترك بي (الأفضل لغير البشر)." +msgstr "اشترك تلقائيًا بأي شخص يشترك بي (مفضل لغير البشر)." #. TRANS: Dropdown field label on profile settings, for what policies to apply when someone else tries to subscribe to your updates. msgid "Subscription policy" -msgstr "سياسة الإشتراكات" +msgstr "سياسة الاشتراكات" #. TRANS: Dropdown field option for following policy. msgid "Let anyone follow me" @@ -4057,7 +4055,7 @@ 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." @@ -4065,7 +4063,7 @@ 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 @@ -4131,7 +4129,8 @@ msgid "Beyond the page limit (%s)." msgstr "بعد حد الصفحة (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "تعذّرت استعادة الدفق العام." #. TRANS: Title for all public timeline pages but the first. @@ -4146,20 +4145,24 @@ msgid "Public timeline" msgstr "المسار الزمني العام" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" +msgstr "تغذية الردود على %s (آكتفتي ستريمز جيسن)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" +msgstr "المسار الزمني العام، صفحة %d" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" +msgstr "المسار الزمني العام، صفحة %d" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (Atom)" +msgstr "المسار الزمني العام، صفحة %d" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4167,6 +4170,7 @@ msgid "" "This is the public timeline for %%site.name%% but no one has posted anything " "yet." msgstr "" +"هذا هو المسار الزمني العام ل%%site.name%% لكن لم يرسل أحد شيئًا حتى الآن." #. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user. msgid "Be the first to post!" @@ -4176,7 +4180,7 @@ msgstr "كن أول من يُرسل!" #, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" -msgstr "" +msgstr "لمَ لا [تسجل حسابا](%%action.register%%) وتكون أول من يرسل!" #. 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. @@ -4217,7 +4221,7 @@ msgstr "هذه هي أكبر اللائحات على %s" #. TRANS: This message contains Markdown links in the form [description](link). #, php-format msgid "No one has [listed](%%doc.tags%%) anyone yet." -msgstr "" +msgstr "لم [يدرج](%%doc.tags%%) أحد أحدًا إلى الآن." #. TRANS: Additional empty list message on page with public list cloud for logged in users. msgid "Be the first to list someone!" @@ -4239,17 +4243,17 @@ msgstr "" #, php-format msgid "1 person listed" msgid_plural "%d people listed" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[0] "لا أحد مدرج" +msgstr[1] "شخص واحد مدرج" +msgstr[2] "شخصان مدرجان" +msgstr[3] "%d أشخاص مدرجون" +msgstr[4] "%d شخصًا مدرجًا" +msgstr[5] "%d شخص مدرج" #. TRANS: Public RSS feed description. %s is the StatusNet site name. #, php-format msgid "%s updates from everyone." -msgstr "%s تحديثات من أي واحد." +msgstr "مستجدات %s من الجميع." #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4259,14 +4263,14 @@ msgstr "سحابة الوسوم العمومية" #. TRANS: %s is the StatusNet sitename. #, php-format msgid "These are most popular recent tags on %s" -msgstr "هذه تحديثات الأوسمة الأكثر شعبية على %s" +msgstr "هذه الأوسمة الحديثة الأكثر شعبية على %s" #. TRANS: This message contains a Markdown URL. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" #. TRANS: and do not change the URL part. #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." -msgstr "" +msgstr "لم ينشر أحد إشعارا ب[وسم](%%doc.tags%%) إلى الآن." #. TRANS: Message shown to a logged in user for the public tag cloud #. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag. @@ -4282,7 +4286,7 @@ msgstr "كن أول من يُرسل!" msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" -msgstr "" +msgstr "لمَ لا [تسجل حسابا](%%action.register%%) وتكون أول من يرسل!" #. TRANS: Client error displayed trying to recover password while already logged in. msgid "You are already logged in!" @@ -4345,7 +4349,7 @@ msgstr "استعد" #. TRANS: Title for password recovery page in password reset mode. msgid "Reset password" -msgstr "أعد ضبط كلمة السر" +msgstr "إعادة تعيين كلمة السر" #. TRANS: Title for password recovery page in password recover mode. msgid "Recover password" @@ -4524,6 +4528,19 @@ msgid "" "\n" "Thanks for signing up and we hope you enjoy using this service." msgstr "" +"تهانينا يا %1$s! ومرحبا بكم في %%%%site.name%%%%. يمكنك بداءً منها...\n" +"\n" +"* الذهاب إلى [ملفك الشخصي](%2$s) وإرسال رسالتك الأولى.\n" +"* إضافة [عنوان جابر أو محادثة غوغل](%%%%action.imsettings%%%%) لتتمكن من " +"إرسال الإشعارات عبر رسائل فورية.\n" +"* [البحث عن أشخاص](%%%%action.peoplesearch%%%%) قد تعرفهم أو تشاركهم " +"الاهتمامات. \n" +"* تحديث [إعدادات ملفك الشخصي](%%%%action.profilesettings%%%%) لتحكي للناس " +"مزيدا عن نفسك. \n" +"* اقرأ المزيد في [الوثائق المنشورة](%%%%doc.help%%%%) لتتعرف على مزايا قد " +"تكون لم تتنبه لها. \n" +"\n" +"شكرا على الاشتراك ونأمل أن تستمعوا باستخدام هذه الخدمة." #. TRANS: Instruction text on how to deal with the e-mail address confirmation e-mail. msgid "" @@ -4584,15 +4601,15 @@ msgstr "الردود على %1$s، الصفحة %2$d" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Activity Streams JSON)" -msgstr "الردود على %s" +msgstr "تغذية الردود على %s (آكتفتي ستريمز جيسن)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. #, php-format msgid "Replies feed for %s (RSS 1.0)" -msgstr "" +msgstr "تغذية أصدقاء %s (آرإس​إس 1.0)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4602,9 +4619,9 @@ msgstr "مشاركة المحتوى للردود لـ %s (RSS 2.0)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Atom)" -msgstr "الردود على %s" +msgstr "تغذية الردود على %s (أتوم)" #. TRANS: Empty list message for page with replies for a user. #. TRANS: %1$s and %s$s are the user nickname. @@ -4632,9 +4649,9 @@ 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 "الردود على %1$s، الصفحة %2$d" +msgstr "الردود على %1$s على %2$s." #. TRANS: Client exception displayed when trying to restore an account while not logged in. msgid "Only logged-in users can restore their account." @@ -4698,10 +4715,13 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "" #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" +"يمكن أن ترفع نسخة احتياطية من مسارك بنسق آكتفتي ستريمز." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -4744,7 +4764,6 @@ msgid "Users self-tagged with %1$s, page %2$d" msgstr "المستخدمون الذين وسموا أنفسهم ب%1$s - الصفحة %2$d" #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "الجلسات" @@ -4781,18 +4800,16 @@ 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." msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق." #. TRANS: Header on the OAuth application page. -#, fuzzy msgid "Application profile" -msgstr "معلومات التطبيق" +msgstr "ملف التطبيق" #. TRANS: Information output on an OAuth application page. #. TRANS: %1$s is the application creator, %2$s is "read-only" or "read-write", @@ -4834,7 +4851,7 @@ msgstr "" #. 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?" -msgstr "أمتأكد من أنك تريد إعادة ضبط مفتاح المستهلك وكلمة سره؟" +msgstr "أمتأكد من أنك تريد إعادة تعيين مفتاح المستهلك وكلمة سره؟" #. TRANS: Title for all but the first page of favourite notices of a user. #. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number. @@ -4848,24 +4865,24 @@ msgid "Could not retrieve favorite notices." msgstr "تعذّر إنشاء مفضلة." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "تغذية أصدقاء %s (أتوم)" +msgstr "تغذية مفضلات %s (آكتفتي ستريمز جيسن)" #. TRANS: Feed link text. %s is a username. #, php-format msgid "Feed for favorites of %s (RSS 1.0)" -msgstr "" +msgstr "تغذية مفضلات %s (آرإس​إس 1.0)" #. TRANS: Feed link text. %s is a username. #, php-format msgid "Feed for favorites of %s (RSS 2.0)" -msgstr "" +msgstr "تغذية مفضلات %s (آرإس​إس 2.0)" #. TRANS: Feed link text. %s is a username. #, php-format msgid "Feed for favorites of %s (Atom)" -msgstr "" +msgstr "تغذية مفضلات %s (أتوم)" #. TRANS: Text displayed instead of favourite notices for the current logged in user that has no favourites. msgid "" @@ -4913,22 +4930,22 @@ msgstr "مجموعة %1$s، الصفحة %2$d" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (Activity Streams JSON)" -msgstr "" +msgstr "تغذية إشعارات مجموعة %s (آكتفتي ستريمز جيسن)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "" +msgstr "تغذية إشعارات مجموعة %s (آرإس​إس 1.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "" +msgstr "تغذية إشعارات مجموعة %s (آرإس​إس 2.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (Atom)" -msgstr "" +msgstr "تغذية إشعارات مجموعة %s (أتوم)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5090,17 +5107,18 @@ msgstr "" #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" -"لمَ لا [تسجل حسابًا](%%%%action.register%%%%) لتنبه %s أو ترسل إليه إشعارًا؟" +"لمَ لا [تسجل حسابًا](%%%%action.register%%%%) وتبدأ في متابعة هذا المسار " +"الزمني!" #. TRANS: Header on show list page. -#, fuzzy +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" -msgstr "الرخصة" +msgstr "المدرجون" #. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. @@ -5117,19 +5135,19 @@ msgstr "المشتركون" msgid "All subscribers" msgstr "جميع المشتركين" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. 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$d" +msgstr "إشعارات %1$s الموسومة ب%2$s" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. 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 "الإشعارات الموسومة ب%s، الصفحة %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5145,25 +5163,25 @@ msgstr "" #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (Activity Streams JSON)" -msgstr "" +msgstr "تغذية إشعارات %s (آكتفتي ستريمز جيسن)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "" +msgstr "تغذية إشعارات %s (آرإس​إس 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "" +msgstr "تغذية إشعارات %s (آرإس​إس 2.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (Atom)" -msgstr "" +msgstr "تغذية إشعارات %s (أتوم)" #. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend. #. TRANS: More information at http://www.foaf-project.org. %s is a user nickname. @@ -5171,7 +5189,7 @@ msgstr "" msgid "FOAF for %s" msgstr "صندوق %s الصادر" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5182,7 +5200,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5192,7 +5210,7 @@ msgstr "" "يمكن أن تحاول تنبيه %1$s أو [مراسلته عن أمر ما](%%%%action.newnotice%%%%?" "status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5207,7 +5225,7 @@ msgstr "" "[انضم الآن](%%%%action.register%%%%) لتتابع إشعارت **%s** وغيره! ([اقرأ " "المزيد](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5307,9 +5325,8 @@ 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 @@ -5330,13 +5347,11 @@ msgid "Default language" msgstr "اللغة المبدئية" #. TRANS: Dropdown title on site settings panel. -#, fuzzy msgid "" "The site language when autodetection from browser settings is not available." -msgstr "لغة الموقع إذا لم يتوفر اكتشاف اللغة آليًا من إعدادات المتصفح" +msgstr "لغة الموقع إذا لم يتوفر اكتشاف اللغة آليًا من إعدادات المتصفح." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "الحدود" @@ -5373,9 +5388,8 @@ msgid "SSL logo" msgstr "شعار SSL" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "احفظ إعدادت الموقع" +msgstr "احفظ إعدادت الموقع." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5398,9 +5412,8 @@ msgid "Site notice text" msgstr "نص إشعار الموقع" #. TRANS: Tooltip for site-wide notice text field in admin panel. -#, fuzzy msgid "Site-wide notice text (255 characters maximum; HTML allowed)" -msgstr "نص إشعار عام للموقع (255 حرف كحد أقصى؛ يسمح بHTML)" +msgstr "نص إشعار يعم الموقع (255 حرف كحد أقصى؛ يسمح بHTML)" #. TRANS: Title for button to save site notice in admin panel. msgid "Save site notice." @@ -5485,9 +5498,8 @@ msgid "That is already your phone number." msgstr "هذا ليس رقم هاتفك." #. TRANS: Message given saving SMS phone number that is already set for another user. -#, fuzzy msgid "That phone number already belongs to another user." -msgstr "هذا البريد الإلكتروني ملك مستخدم آخر بالفعل." +msgstr "رقهم الهاتف هذا ملك مستخدم آخر بالفعل." #. TRANS: Message given saving valid SMS phone number that is to be confirmed. msgid "" @@ -5502,9 +5514,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." @@ -5707,6 +5718,8 @@ msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" "%) and be the first?" msgstr "" +"ليس ل%s أي مشتركون. لم لا [تسجل حسابا](%%%%action.register%%%%) وتكون أول " +"مشترك؟" #. TRANS: Header for subscriptions overview for a user (not first page). #. TRANS: %1$s is a user nickname, %2$d is the page number. @@ -5737,19 +5750,24 @@ msgid "" "featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " "automatically subscribe to people you already follow there." msgstr "" +"أنت لا تستمع الآن لإشعارات أحد. جرب الاشتراك بأناس تعرفهم. حاول أن [تبحث عن " +"الأشخاص](%%action.peoplesearch%%) وابحث في أعضاء مجموعات أنت مهتم بها وفي " +"[مستخدمينا المميزين](%%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. #. 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. -#, fuzzy, php-format +#, php-format msgid "%s is not listening to anyone." -msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." +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 IM messages for a profile in a subscriptions list. msgctxt "LABEL" @@ -5770,65 +5788,60 @@ msgstr "الإشعارات الموسومة ب%s، الصفحة %2$d" #. TRANS: %s is the tag the feed is for. #, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "" +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 "" +msgstr "تغذية إشعارات وسم %s (آرإس​إس 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 "" +msgstr "تغذية إشعارات وسم %s (آرإس​إس 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 "" +msgstr "تغذية إشعارات وسم %s (أتوم)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "لا يمكنك إرسال رسائل إلى هذا المستخدم." +msgstr "لا يمكنك وسم هذا المستخدم." #. TRANS: Title for list form when not on a profile page. -#, fuzzy msgid "List a profile" -msgstr "ملف المستخدم الشخصي" +msgstr "إدراج ملفا شخصيا" #. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgctxt "ADDTOLIST" msgid "List %s" -msgstr "الحدود" +msgstr "إدراج %s" #. TRANS: Title for list form when an error has occurred. -#, fuzzy msgctxt "TITLE" msgid "Error" -msgstr "خطأ أجاكس" +msgstr "خطأ" #. TRANS: Header in list form. msgid "User profile" msgstr "ملف المستخدم الشخصي" #. TRANS: Fieldset legend for list form. -#, fuzzy msgid "List user" -msgstr "الحدود" +msgstr "أدرج مستخدما" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "الحدود" +msgstr "اللائحات" #. TRANS: Field title on list form. #, fuzzy @@ -5839,20 +5852,17 @@ msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "الوسوم" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "حُفظت كلمة السر." +msgstr "حُفظت اللائحات." #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." -msgstr "استخدم هذا النموذج لتعدل تطبيقك." +msgstr "استخدم هذا النموذج لتدرج المشتركين بك أو المشترك أنت بهم إلى لائحة." #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -5876,14 +5886,13 @@ msgstr "غير مشترك" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "مشتركو %1$s, الصفحة %2$d" +msgstr "أزال %1$s اشتراكه من اللائحة %2$s التي أنشأها %3$s" #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "إعدادات المراسلة الفورية" +msgstr "إعدادات المسارات" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -5896,13 +5905,12 @@ msgid " (free service)" msgstr " (خدمة حرة)" #. TRANS: Default value for URL shortening settings. -#, fuzzy msgid "[none]" -msgstr "لا شيء" +msgstr "[لا شيء]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" -msgstr "" +msgstr "[داخلي]" #. TRANS: Label for dropdown with URL shortener services. msgid "Shorten URLs with" @@ -5914,35 +5922,32 @@ msgstr "خدمة التقصير المطلوب استخدامها." #. TRANS: Field label in URL settings in profile. msgid "URL longer than" -msgstr "" +msgstr "المسارات الأطول من" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." -msgstr "" +msgstr "المسارات الأطول من الرقم سوف تقصر، 0 يعني قصر دائما." #. TRANS: Field label in URL settings in profile. msgid "Text longer than" -msgstr "" +msgstr "النصوص الأطول من" #. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." -msgstr "" +msgstr "المسارات التي في إشعارات أطول من الرقم سوف تقصر، 0 يعني قصر دائما." #. TRANS: Form validation error for form "Other settings" in user profile. -#, fuzzy msgid "URL shortening service is too long (maximum 50 characters)." -msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" +msgstr "خدمة تقصير المسارات طويلة جدا (أقصى حد 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 "محتوى إشعار غير صالح." +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 "محتوى إشعار غير صالح." +msgstr "رقم غير صالح لطول الإشعارات." #. TRANS: Server exception thrown in profile URL settings when preferences could not be saved. msgid "Error saving user URL shortening preferences." @@ -5972,7 +5977,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 "الملف الشخصي" @@ -6139,7 +6143,7 @@ msgstr "%1$s علّم الإشعار %2$s مفضّلا." #. TRANS: Server exception thrown when a URL cannot be processed. #, php-format msgid "Cannot process URL '%s'" -msgstr "" +msgstr "تغذرت معالجة المسار '%s'" #. TRANS: Server exception thrown when... Robin thinks something is impossible! msgid "Robin thinks something is impossible." @@ -6398,14 +6402,12 @@ msgid "" msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. -#, fuzzy msgid "Adding list subscription failed." -msgstr "تعذّر حفظ الاشتراك." +msgstr "فشلت إضافة الاشتراك باللائحة." #. TRANS: Exception thrown when deleting a list subscription from the database fails. -#, fuzzy msgid "Removing list subscription failed." -msgstr "تعذّر حفظ الاشتراك." +msgstr "فشلت إزالة الاشتراك باللائحة." #. TRANS: Exception thrown when a right for a non-existing user profile is checked. #, fuzzy @@ -6418,7 +6420,7 @@ msgstr "تعذّر حفظ الوسم." #. TRANS: Exception thrown when trying to subscribe while being banned from subscribing. msgid "You have been banned from subscribing." -msgstr "" +msgstr "تم منعك من الاشتراك." #. TRANS: Exception thrown when trying to subscribe while already subscribed. msgid "Already subscribed!" @@ -6447,9 +6449,9 @@ msgstr "تابع" #. TRANS: Notification given when one person starts following another. #. TRANS: %1$s is the subscriber, %2$s is the subscribed. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." +msgstr "%1$s بدأ في متابعة %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -6594,7 +6596,7 @@ msgstr "اكتب ردًا..." #. TRANS: Tab on the notice form. msgctxt "TAB" 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. @@ -6678,9 +6680,8 @@ msgid "Cannot force remote user to subscribe." msgstr "تعذّر تحديث سجل المستخدم." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. -#, fuzzy msgid "Unknown profile." -msgstr "نوع ملف غير معروف" +msgstr "ملف شخصي غير معروف." #. TRANS: Client exception thrown when trying to import an event not related to the importing user. msgid "This activity seems unrelated to our user." @@ -6722,10 +6723,10 @@ msgstr "لا مستخدم كهذا." #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. #. TRANS: Exception thrown when post to collection fails with a status that is not handled. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. -#, fuzzy, php-format +#, php-format msgctxt "URLSTATUSREASON" msgid "%1$s %2$s %3$s" -msgstr "%1$s - %2$s" +msgstr "%1$s %2$s %3$s" #. TRANS: Client exception thrown when there is no source attribute. msgid "Can't handle remote content yet." @@ -6759,7 +6760,6 @@ msgstr "الأمر لم يُجهزّ بعد." #. TRANS: Header in administrator navigation panel. #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Home" msgstr "الرئيسية" @@ -6768,16 +6768,14 @@ msgstr "الرئيسية" #. 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 "إداري" +msgstr "إدارة" #. TRANS: Menu item title in administrator navigation panel. msgid "Basic site configuration" @@ -6845,10 +6843,9 @@ msgstr "" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" -msgstr "اضبط رخصة الموقع" +msgstr "تعيين رخصة الموقع" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "License" msgstr "الرخصة" @@ -6954,19 +6951,19 @@ msgstr "متصفح" #. TRANS: Radio button label for application type msgid "Desktop" -msgstr "" +msgstr "سطح مكتب" #. TRANS: Form guide. msgid "Type of application, browser or desktop" -msgstr "" +msgstr "نوع التطبيق: متصفح أو سطح مكتب" #. TRANS: Radio button label for access type. msgid "Read-only" -msgstr "" +msgstr "قراءة فقط" #. TRANS: Radio button label for access type. msgid "Read-write" -msgstr "" +msgstr "قراءة-كتابة" #. TRANS: Form guide. msgid "Default access for this application: read-only, or read-write" @@ -6982,27 +6979,26 @@ 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. msgid " by " -msgstr "" +msgstr " أنشأه " #. TRANS: Application access type msgid "read-write" -msgstr "" +msgstr "قراءة-كتابة" #. TRANS: Application access type msgid "read-only" -msgstr "" +msgstr "قراءة فقط" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "أقر في %1$s - نفاذ \"%2$s\"." #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. @@ -7037,34 +7033,31 @@ msgid "Do not use this method!" msgstr "لا تحذف هذا الإشعار" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for people in list %1$s by %2$s" -msgstr "الردود على %1$s، الصفحة %2$d" +msgstr "المسار الزمني لمن هم في اللائحة %1$s التي أنشأها %2$s" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, fuzzy, php-format +#, php-format msgid "Updates from %1$s's list %2$s on %3$s!" -msgstr "مستجدات %1$s على %2$s!" +msgstr "مستجدات قائمة %1$s لمنشئها %2$s على %3$s!" #. TRANS: Title. -#, fuzzy msgid "Notices where this attachment appears" -msgstr "وسوم هذا المرفق" +msgstr "الإشعارات التي يظهر فيها هذا المرفق" #. TRANS: Title. msgid "Tags for this attachment" msgstr "وسوم هذا المرفق" #. TRANS: Exception thrown when a password change fails. -#, fuzzy msgid "Password changing failed." -msgstr "تغيير كلمة السر فشل" +msgstr "فشل تغيير كلمة السر." #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. -#, fuzzy msgid "Password changing is not allowed." -msgstr "تغيير كلمة السر غير مسموح به" +msgstr "لا يسمح بغيير كلمة السر." #. TRANS: Title for the form to block a user. msgid "Block" @@ -7080,17 +7073,15 @@ 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" msgstr "نتائج الأمر" #. TRANS: Title for command results. -#, fuzzy msgid "AJAX error" msgstr "خطأ أجاكس" @@ -7161,9 +7152,8 @@ msgid "Could not create favorite: Already favorited." msgstr "تعذّر إنشاء مفضلة: مفضلة فعلا." #. TRANS: Text shown when a notice has been marked as favourite successfully. -#, fuzzy msgid "Notice marked as fave." -msgstr "هذا الإشعار مفضلة مسبقًا!" +msgstr "عُلّم الإشعار مفضلا." #. TRANS: Message given having added a user to a group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. @@ -7181,7 +7171,7 @@ msgstr "غادر %1$s إلى مجموعة %2$s." #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "خطأ في وسم %1$s: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. @@ -7211,7 +7201,7 @@ msgstr "وسم غير صالح: \"%s\"" #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "خطأ في إزالة وسم %1$s: %2$s" #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7307,9 +7297,9 @@ msgstr[5] "هذه طويلة جدًا. أطول حجم للإشعار %d حرف #. 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. -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent." -msgstr "رُد على رسالة %s" +msgstr "أُرسل الرد إلى %s." #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. msgid "Error saving notice." @@ -7327,18 +7317,18 @@ msgstr "" #. TRANS: %s is the name of the user the subscription was requested for. #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "اشتركت ب%s." #. 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. msgid "Specify the name of the user to unsubscribe from." -msgstr "" +msgstr "حدد اسم المستخدم لتلغي اشتراكك منه." #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. #, php-format msgid "Unsubscribed from %s." -msgstr "" +msgstr "ألغي اشتراكك ب%s." #. 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. @@ -7369,13 +7359,13 @@ msgstr "" #. TRANS: %s is a logon link.. #, php-format msgid "This link is useable only once and is valid for only 2 minutes: %s." -msgstr "" +msgstr "يمكن استخدام هذه الوصلة لمرة واحدة وهي صالحة لدقيقتين فقط: %s" #. 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. #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "ألغي اشتراك %s." #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. msgid "You are not subscribed to anyone." @@ -7428,22 +7418,19 @@ msgstr[4] "" msgstr[5] "" #. 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" @@ -7461,16 +7448,14 @@ msgid "lists the groups you have joined" msgstr "يسرد المجموعات التي أنت مشترك بها" #. TRANS: Help message for IM/SMS command "tag". -#, fuzzy msgctxt "COMMANDHELP" msgid "tag a user" -msgstr "اوسم المستخدم" +msgstr "يوسم مستخدما" #. TRANS: Help message for IM/SMS command "untag". -#, fuzzy msgctxt "COMMANDHELP" msgid "untag a user" -msgstr "اوسم المستخدم" +msgstr "يزيل وسم مستخدم" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" @@ -7548,10 +7533,9 @@ msgid "Get a link to login to the web interface" 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". msgctxt "COMMANDHELP" @@ -7567,17 +7551,17 @@ msgstr "" #. 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 ". @@ -7599,9 +7583,8 @@ msgid "remind a user to update." msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#, fuzzy msgid "No configuration file found." -msgstr "لا رمز تأكيد." +msgstr "لم يعثر على ملف ضبط." #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: Is followed by a list of directories (separated by HTML breaks). @@ -7623,25 +7606,22 @@ 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: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Groups" msgstr "مجموعات" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "الحدود" +msgstr "قوائم" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -7663,10 +7643,9 @@ msgid "Disfavor this notice" msgstr "ألغِ تفضيل هذا الإشعار" #. TRANS: Button text for removing the favourite status for a favourite notice. -#, fuzzy msgctxt "BUTTON" msgid "Disfavor favorite" -msgstr "ألغِ تفضيل المفضلة" +msgstr "ألغِ التفضيل" #. TRANS: Form legend for adding the favourite status to a notice. #. TRANS: Title for button text for adding the favourite status to a notice. @@ -7674,7 +7653,6 @@ msgid "Favor this notice" msgstr "فضّل هذا الإشعار" #. TRANS: Button text for adding the favourite status to a notice. -#, fuzzy msgctxt "BUTTON" msgid "Favor" msgstr "فضّل" @@ -7697,7 +7675,7 @@ msgstr "FOAF" #. TRANS: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" -msgstr "" +msgstr "آكتفتي ستريمز" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." @@ -7710,10 +7688,9 @@ msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" -msgstr "" +msgstr "التغذيات" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "الكل" @@ -7795,7 +7772,6 @@ msgid "" msgstr "" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" msgstr "إداري" @@ -7803,26 +7779,26 @@ msgstr "إداري" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "المجموعة" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "مجموعة %s" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "الأعضاء" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "أعضاء مجموعة %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #. TRANS: %d is the number of pending members. @@ -7830,7 +7806,7 @@ msgstr "" msgctxt "MENU" msgid "Pending members (%d)" msgid_plural "Pending members (%d)" -msgstr[0] "" +msgstr[0] "مستخدمون معلقون (%d)" msgstr[1] "" msgstr[2] "" msgstr[3] "" @@ -7839,10 +7815,10 @@ msgstr[5] "" #. 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" @@ -7867,7 +7843,7 @@ msgstr "إداري" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "عدل خصائص المجموعة %s" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. msgctxt "MENU" @@ -7887,21 +7863,18 @@ msgid "Group actions" msgstr "تصرفات المستخدم" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "إشعارات محبوبة" +msgstr "مجموعات محبوبة" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "كل المجموعات" +msgstr "مجموعات نشطة" -#, fuzzy msgid "See all" -msgstr "اعرض الكل" +msgstr "شاهد الكل" msgid "See all groups you belong to" -msgstr "" +msgstr "شاهد كل المجموعات التي تنتمي إليها" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. @@ -7941,33 +7914,33 @@ msgid "Unknown file type" msgstr "نوع ملف غير معروف" #. TRANS: Number of megabytes. %d is the number. -#, fuzzy, php-format +#, php-format msgid "%dMB" msgid_plural "%dMB" -msgstr[0] "ميجابايت" -msgstr[1] "ميجابايت" -msgstr[2] "ميجابايت" -msgstr[3] "ميجابايت" -msgstr[4] "ميجابايت" -msgstr[5] "ميجابايت" +msgstr[0] "%d م‌ب" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #. TRANS: Number of kilobytes. %d is the number. -#, fuzzy, php-format +#, php-format msgid "%dkB" msgid_plural "%dkB" -msgstr[0] "كيلوبايت" -msgstr[1] "كيلوبايت" -msgstr[2] "كيلوبايت" -msgstr[3] "كيلوبايت" -msgstr[4] "كيلوبايت" -msgstr[5] "كيلوبايت" +msgstr[0] "%d ك‌ب" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #. TRANS: Number of bytes. %d is the number. #, php-format msgid "%dB" msgid_plural "%dB" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%dB" +msgstr[1] "%d ب" msgstr[2] "" msgstr[3] "" msgstr[4] "" @@ -8002,18 +7975,16 @@ msgstr "" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trends" -msgstr "" +msgstr "الراهن" #. TRANS: Default button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "دعوة مستخدمين جدد" +msgstr "ادعُ مزيدا من أصدقائك" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "دعوة مستخدمين جدد" +msgstr "ادعُ أصدقاءك" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" @@ -8038,9 +8009,8 @@ msgid "Send" msgstr "أرسل" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "الدعوات" +msgstr "أرسل الدعوات." #. TRANS: Button text for joining a group. msgctxt "BUTTON" @@ -8052,9 +8022,8 @@ msgctxt "BUTTON" msgid "Leave" msgstr "غادر" -#, fuzzy msgid "See all lists you have created" -msgstr "التطبيقات التي سجلتها" +msgstr "شاهد كل القوائم التي أنشأتها" #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8082,7 +8051,7 @@ msgstr "تأكيد عنوان البريد الإلكتروني" #. 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" @@ -8097,32 +8066,32 @@ msgid "" "Thanks for your time, \n" "%2$s\n" msgstr "" -"مرحبًا، %s.\n" +"مرحبًا، %1$s.\n" "\n" -"لقد أدخل أحدهم قبل لحظات عنوان البريد الإلكتروني هذا على %s.\n" +"لقد أدخل أحدهم قبل لحظات عنوان البريد الإلكتروني هذا على %2$s.\n" "\n" "إذا كنت هو، وإذا كنت تريد تأكيد هذه المدخلة، فاستخدم المسار أدناه:\n" "\n" -" %s\n" +"%3$s\n" "\n" "إذا كان الأمر خلاف ذلك، فتجاهل هذه الرسالة.\n" "\n" "شكرًا على الوقت الذي أمضيته، \n" -"%s\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. #. TRANS: Main body of 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 is now following you on %2$s." -msgstr "%1$s يستمع الآن إلى إشعاراتك على %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 +#, 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. @@ -8135,7 +8104,7 @@ 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. -#, fuzzy, php-format +#, php-format msgid "" "Faithfully yours,\n" "%1$s.\n" @@ -8143,22 +8112,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" -"%7$s.\n" +"مع تحياتنا،\n" +"%1$s.\n" "\n" "----\n" -"غيّر خيارات البريد الإلكتروني والإشعار في %8$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. @@ -8206,13 +8170,13 @@ msgstr "تأكيد الرسالة القصيرة" #. TRANS: %s is the addressed user's nickname. #, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "" +msgstr "%s: أكّد أن هذا رقم هاتفك بهذا الرمز:" #. TRANS: Subject for 'nudge' notification email. #. TRANS: %s is the nudging user. -#, fuzzy, php-format +#, php-format msgid "You have been nudged by %s" -msgstr "لقد نبهك %s" +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, @@ -8228,6 +8192,13 @@ msgid "" "\n" "Don't reply to this email; it won't get to them." msgstr "" +"يتساءل %1$s (%2$s) عن أحوالك مؤخرا ويدعوك إلى نشر بعض المستجدات.\n" +"\n" +"دعنا نراك!\n" +"\n" +"%3$s\n" +"\n" +"لا ترد على هذا البريد؛ لأنه لن يصل إلى المستخدم." #. TRANS: Subject for direct-message notification email. #. TRANS: %s is the sending user's nickname. @@ -8252,12 +8223,23 @@ msgid "" "\n" "Don't reply to this email; it won't get to them." msgstr "" +"أرسل لك %1$s (%2$s) رسالة خاصة:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"يمكن أن ترد عليها هنا:\n" +"\n" +"%4$s\n" +"\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. -#, fuzzy, php-format +#, php-format msgid "%1$s (@%2$s) added your notice as a favorite" -msgstr "لقد أضاف %s (@%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, @@ -8280,6 +8262,19 @@ msgid "" "\n" "%5$s" msgstr "" +"أضاف %1$s (@%7$s) للتو إشعارك في %2$s إلى مفضلاته.\n" +"\n" +"مسار إشعارك:\n" +"\n" +"%3$s\n" +"\n" +"نص إشعارك:\n" +"\n" +"%4$s\n" +"\n" +"يمكن أن تشاهد قائمة بمفضلات %1$s هنا:\n" +"\n" +"%5$s" #. TRANS: Line in @-reply notification e-mail. %s is conversation URL. #, php-format @@ -8301,7 +8296,7 @@ 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, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8323,6 +8318,23 @@ msgid "" "\n" "%7$s" msgstr "" +"أرسل %1$s للتو إشعارك إليك ('رد @') على %2$s.\n" +"\n" +"الإشعار موجود هنا:\n" +"\n" +"\t%3$s\n" +"\n" +"نصه:\n" +"\n" +"\t%4$s\n" +"\n" +"%5$sيمكن أن ترد هنا:\n" +"\n" +"\t%6$s\n" +"\n" +"قائمة بكل الردود (@) إليك موجودة هنا:\n" +"\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. @@ -8330,15 +8342,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, @@ -8361,26 +8373,22 @@ msgid "" 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." @@ -8402,9 +8410,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" @@ -8460,9 +8468,8 @@ msgstr "أرسل إشعارًا مباشرًا" #. 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 "اختر وسمًا لترشيحه" +msgstr "اختر مستلما:" #. TRANS: Entry in drop-down selection box in direct-message inbox/outbox when no one is available to message. #, fuzzy @@ -8479,9 +8486,8 @@ msgid "Send" msgstr "أرسل" #. TRANS: Header in message list. -#, fuzzy msgid "Messages" -msgstr "رسالة" +msgstr "الرسائل" #. TRANS: Followed by notice source (usually the client used to send the notice). #. TRANS: Followed by notice source. @@ -8489,7 +8495,6 @@ msgid "from" msgstr "من" #. TRANS: A possible notice source (web interface). -#, fuzzy msgctxt "SOURCE" msgid "web" msgstr "الوب" @@ -8500,10 +8505,9 @@ msgid "xmpp" msgstr "" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" -msgstr "البريد الإلكتروني" +msgstr "البريد" #. TRANS: A possible notice source (OpenMicroBlogging). msgctxt "SOURCE" @@ -8538,7 +8542,7 @@ msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" msgid "More ▼" -msgstr "" +msgstr "مزيد ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." @@ -8569,9 +8573,8 @@ msgid "Attach" msgstr "أرفق" #. TRANS: Title for input field to attach a file to a notice. -#, fuzzy msgid "Attach a file." -msgstr "أرفق ملفًا" +msgstr "أرفق ملفًا." #. TRANS: Field label to add location to a notice. msgid "Share my location" @@ -8588,10 +8591,9 @@ msgid "" msgstr "" #. TRANS: Separator in profile addressees list. -#, fuzzy msgctxt "SEPARATOR" msgid ", " -msgstr " و " +msgstr "و " #. TRANS: Used in coordinates as abbreviation of north. msgid "N" @@ -8616,7 +8618,7 @@ msgstr "غ" #. 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 "" +msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" #. TRANS: Followed by geo location. msgid "at" @@ -8643,28 +8645,25 @@ 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 "" +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." -msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" +msgstr "أرسل تنبيها للمستخدم." #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. #, fuzzy @@ -8684,190 +8683,169 @@ msgstr "" "سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة." #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "صِف المجموعة أو الموضوع" +msgstr "صِف القائمة أو الموضوع." #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "صِف المجموعة أو الموضوع" -msgstr[1] "صِف المجموعة أو الموضوع" -msgstr[2] "صِف المجموعة أو الموضوع" -msgstr[3] "صِف المجموعة أو الموضوع" -msgstr[4] "صِف المجموعة أو الموضوع" -msgstr[5] "صِف المجموعة أو الموضوع" +msgstr[0] "" +msgstr[1] "صِف القائمة أو الموضوع في حرف واحد" +msgstr[2] "صِف المجموعة أو الموضوع في حرفين" +msgstr[3] "صِف المجموعة أو الموضوع في %d حروف" +msgstr[4] "صِف المجموعة أو الموضوع في %d حرف" +msgstr[5] "صِف المجموعة أو الموضوع في %d حرفًا" #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "احذف هذا المستخدم." +msgstr "احذف هذه القائمة." #. TRANS: Header in list edit form. msgid "Add or remove people" msgstr "" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "ابحث" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "وصلات" +msgstr "القائمة" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s و %2$s" +msgstr "قائمة %1$s التي أنشأها %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "الرخصة" +msgstr "المدرجون" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "المشتركون" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "الردود على %1$s، الصفحة %2$d" +msgstr "المشتركون في قائمة %1$s التي أنشأها %2$s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" -msgstr "عدّل" +msgstr "عدل" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "عدّل مجموعة %s" - -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "الوسم" +msgstr "عدل لائحة %s التي أنشأتها." #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "عدّل إعدادات الملف الشخصي." +msgstr "عدّل إعدادات اللائحة." #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "عدّل" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "خاص" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "الاشتراكات" +msgstr "الاشتراكات باللائحات" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "الأشخاص المشتركون ب%s" +msgstr "الائحات التي اشترك بها %s." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "الإشعارات الموسومة ب%s" +msgstr "اللائحات التي %s فيها" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "الإشعارات الموسومة ب%s" +msgstr "اللائحات التي %s فيها." #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "لائحات %s" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s و %2$s" +msgstr "لائحات %s." #. TRANS: Label in lists widget. -#, fuzzy msgctxt "LABEL" msgid "Your lists" -msgstr "إشعارات محبوبة" +msgstr "لائحاتك" #. TRANS: Fieldset legend in lists widget. -#, fuzzy msgctxt "LEGEND" msgid "Edit lists" -msgstr "ليس وسم أشخاص صالح: %s." +msgstr "عدل اللائحات" #. TRANS: Label in self tags widget. -#, fuzzy msgctxt "LABEL" msgid "Tags" msgstr "الوسوم" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" -msgstr "إشعارات محبوبة" +msgstr "لائحات محبوبة" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "مشتركو %1$s, الصفحة %2$d" +msgstr "المدرجون: %1$d المشتركون: %2$d" #. TRANS: Title for page that displays which lists current user is part of. -#, fuzzy, php-format +#, php-format msgid "Lists with you" -msgstr "لم يُعثرعلى المستخدم." +msgstr "اللائحات التي أنت فيها" #. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "الإشعارات الموسومة ب%s" +msgstr "اللائحات التي %s فيها" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "اشتراكات %s" +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 "الملف الشخصي" @@ -8877,13 +8855,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 "المفضلات" @@ -8895,10 +8871,9 @@ msgid "User" msgstr "المستخدم" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" -msgstr "رسالة" +msgstr "الرسائل" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" @@ -8911,34 +8886,31 @@ msgstr "غير معروفة" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "عطل" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "فعّل" #. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" msgid "" "(The plugin description is unavailable when a plugin has been disabled.)" -msgstr "" +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 "غيّر إعدادات ملفك الشخصي" +msgstr "غيّر إعدادات ملفك الشخصي." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Site configuration." -msgstr "ضبط المستخدم" +msgstr "ضبط الموقع." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -8946,14 +8918,12 @@ msgid "Logout" msgstr "اخرج" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "اخرج من الموقع" +msgstr "اخرج من الموقع." #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." -msgstr "لُج إلى الموقع" +msgstr "لُج إلى الموقع." #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" @@ -8961,19 +8931,16 @@ msgid "Search" msgstr "ابحث" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Search the site." -msgstr "ابحث في الموقع" +msgstr "ابحث في الموقع." #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "تابع" +msgstr "يتابع" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "تابع" +msgstr "المتابعون" #. TRANS: Label for user statistics. msgid "User ID" @@ -8997,9 +8964,8 @@ msgid "Groups" msgstr "مجموعات" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "الحدود" +msgstr "القوائم" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9010,7 +8976,6 @@ msgid "User groups" msgstr "مجموعات المستخدمين" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "الوسوم الحديثة" @@ -9020,13 +8985,11 @@ msgid "Recent tags" msgstr "الوسوم الحديثة" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" -msgstr "مُختارون" +msgstr "مميزون" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "محبوبة" @@ -9034,7 +8997,7 @@ msgstr "محبوبة" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trending topics" -msgstr "" +msgstr "المواضيع الراهنة" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -9045,19 +9008,17 @@ 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. -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "امنع هذا المستخدم من هذه المجموعة" +msgstr "اسحب دور \"%s\" من هذا المستخدم" #. TRANS: Client error on action trying to visit a non-existing page. -#, fuzzy msgid "Page not found." -msgstr "لم يتم العثور على وسيلة API." +msgstr "لم يتم إيحاد الصفحة." #. TRANS: Title of form to sandbox a user. #, fuzzy @@ -9091,6 +9052,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* تأكد من أن كل الكلمات صحيحة التهجئة.\n" +"*حاول بكلمات أخرى.\n" +"* حاول بكلمات أكثر عمومًا.\n" +"* حاول بكلمات أقل." #. TRANS: Standard search suggestions shown when a search does not give any results. #, php-format @@ -9104,6 +9069,14 @@ msgid "" "* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" "* [Collecta](http://collecta.com/#q=%s)" msgstr "" +"يمكن أن تجرب البحث في محركات أخرى:\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)" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" @@ -9169,10 +9142,9 @@ msgid "Contact" msgstr "اتصل" #. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget. -#, fuzzy msgctxt "MENU" msgid "Badge" -msgstr "الجسر" +msgstr "الشارة" #. TRANS: Default title for section/sidebar widget. msgid "Untitled section" @@ -9183,7 +9155,6 @@ msgid "More..." msgstr "المزيد..." #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" msgstr "إعدادات" @@ -9193,17 +9164,15 @@ msgid "Change your profile settings" msgstr "غيّر إعدادات ملفك الشخصي" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Avatar" -msgstr "أفتار" +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 "كلمة السر" @@ -9213,7 +9182,6 @@ msgid "Change your password" msgstr "غير كلمة سرّك" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" msgstr "البريد الإلكتروني" @@ -9223,40 +9191,36 @@ msgid "Change email handling" msgstr "غير أسلوب التعامل مع البريد الإلكتروني" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" -msgstr "مسار" +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 "محادثة فورية" +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 "رسائل قصيرة" +msgstr "الرسائل القصيرة" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" -msgstr "تحديثات عبر الرسائل القصيرة" +msgstr "مستحدات عبر الرسائل القصيرة" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" -msgstr "اتصالات" +msgstr "الارتباطات" #. TRANS: Menu item title in settings navigation panel. #, fuzzy @@ -9264,7 +9228,6 @@ msgid "Authorized connected applications" msgstr "تطبيقات OAuth" #. TRANS: Title of form to silence a user. -#, fuzzy msgctxt "TITLE" msgid "Silence" msgstr "أسكِت" @@ -9311,7 +9274,6 @@ msgid "Failed to delete revoked token." msgstr "" #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscriptions" msgstr "الاشتراكات" @@ -9333,7 +9295,7 @@ msgstr "الأشخاص المشتركون ب%s" #, php-format msgctxt "MENU" msgid "Pending (%d)" -msgstr "" +msgstr "المعلقون (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format @@ -9453,9 +9415,9 @@ msgstr "الإشعارات" msgid "Show reply" msgid_plural "Show all %d replies" msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[1] "أظهر الرد" +msgstr[2] "أظهر الردين" +msgstr[3] "أظهر الردود ال%d" msgstr[4] "" msgstr[5] "" @@ -9496,12 +9458,12 @@ msgstr[5] "" #, php-format msgid "%%s likes this." msgid_plural "%%s like this." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" -msgstr[5] "" +msgstr[0] "لم يعجب أحدًا" +msgstr[1] "أعجب %%s" +msgstr[2] "أعجب %%s" +msgstr[3] "أعجب %%s" +msgstr[4] "أعجب %%s" +msgstr[5] "أعجب %%s" #. TRANS: List message for notice repeated by logged in user. msgctxt "REPEATLIST" @@ -9521,13 +9483,13 @@ msgstr[4] "كرّر %d شخصًا هذا الإشعار" msgstr[5] "كرّر %d شخص هذا الإشعار." #. TRANS: Form legend. -#, fuzzy, php-format +#, php-format msgid "Search and list people" -msgstr "ابحث في الموقع" +msgstr "ابحث أشخاص وأدرجهم" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" -msgstr "" +msgstr "كل شيء" #. TRANS: Dropdown option for searching in profiles. msgid "Fullname" @@ -9548,15 +9510,15 @@ msgstr "اختر حقلا للبحث." #. TRANS: Form legend. #. TRANS: %1$s is a nickname, $2$s is a list. -#, fuzzy, php-format +#, php-format msgid "Remove %1$s from list %2$s" -msgstr "%1$s و %2$s" +msgstr "أزل %1$s من اللائحة %2$s" #. TRANS: Legend on form to add a profile to a list. #. TRANS: %1$s is a nickname, %2$s is a list. -#, fuzzy, php-format +#, php-format msgid "Add %1$s to list %2$s" -msgstr "%1$s و %2$s" +msgstr "أضف %1$s إلى اللائحة %2$s" #. TRANS: Title for top posters section. msgid "Top posters" @@ -9565,13 +9527,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" @@ -9643,27 +9605,27 @@ msgstr "قبل دقيقة تقريبًا" #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "أقل من دقيقة" -msgstr[1] "حوالي دقيقة واحدة" -msgstr[2] "حوالي دقيقتين" -msgstr[3] "حوالي %d دقائق" -msgstr[4] "حوالي %d دقيقة" -msgstr[5] "حوالي %d دقيقة" +msgstr[0] "قبل أقل من دقيقة" +msgstr[1] "قبل حوالي دقيقة واحدة" +msgstr[2] "قبل حوالي دقيقتين" +msgstr[3] "قبل حوالي %d دقائق" +msgstr[4] "قبل حوالي %d دقيقة" +msgstr[5] "قبل حوالي %d دقيقة" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about an hour ago" -msgstr "قبل ساعة تقريبًا" +msgstr "قبل حوالي ساعة" #. TRANS: Used in notices to indicate when the notice was made compared to now. #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" msgstr[0] "قبل أقل من ساعة" -msgstr[1] "قبل ساعة واحدة تقريبا" -msgstr[2] "قبل ساعتين تقريبا" -msgstr[3] "قبل %d ساعات تقريبا" -msgstr[4] "قبل %d ساعة تقريبا" -msgstr[5] "قبل %d ساعة تقريبا" +msgstr[1] "قبل حوالي ساعة واحدة" +msgstr[2] "قبل حوالي ساعتين" +msgstr[3] "قبل حوالي %d ساعات" +msgstr[4] "قبل حوالي %d ساعة" +msgstr[5] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about a day ago" @@ -9720,9 +9682,9 @@ msgid "Getting backup from file '%s'." msgstr "" #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Invalid avatar URL %s." -msgstr "تعذر قراءة رابط الأفتار ‘%s’." +msgstr "مسار أفتار غير صالح %s." #. TRANS: Server exception. %s is a URI. #, fuzzy, php-format @@ -9730,106 +9692,28 @@ msgid "Tried to update avatar for unsaved remote profile %s." msgstr "خطأ أثناء تحديث الملف الشخصي البعيد." #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Unable to fetch avatar from %s." -msgstr "استخدم هذا النموذج لتعدل تطبيقك." +msgstr "تعذر جلب الأفتار من %s." #. TRANS: Exception. %s is a profile URL. -#, fuzzy, php-format +#, php-format msgid "Could not reach profile page %s." -msgstr "لم يمكن حفظ الملف." +msgstr "تعذر الوصول إلى صفحة الملف الشخصي %s." #. TRANS: Exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Could not find a feed URL for profile page %s." -msgstr "تعذّر إيجاد المستخدم الهدف." +msgstr "تغذر إيجاد مسار تغذية الملف الشخصي %s." #. TRANS: Exception. #, fuzzy msgid "Not a valid webfinger address." msgstr "ليس عنوان بريد صالح." -#, fuzzy, php-format +#, php-format msgid "Could not find a valid profile for \"%s\"." -msgstr "لم يمكن حفظ الملف." +msgstr "تعذر إيجاد ملف شخصي صالح ل\"%s\"." -#~ msgid "Not expecting this response!" -#~ msgstr "لم أتوقع هذا الرد!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "المستخدم الذي تستمع إليه غير موجود." - -#~ msgid "You can use the local subscription!" -#~ msgstr "تستطيع استخدام الاشتراك المحلي!" - -#, fuzzy -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "لقد حظرك المستخدم." - -#~ msgid "You are not authorized." -#~ msgstr "لا تملك تصريحًا." - -#~ msgid "Error updating remote profile." -#~ msgstr "خطأ أثناء تحديث الملف الشخصي البعيد." - -#~ msgid "Invalid notice content." -#~ msgstr "محتوى إشعار غير صالح." - -#~ msgid "Remote subscribe" -#~ msgstr "اشتراك بعيد" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "اشترك بمستخدم بعيد" - -#~ msgid "User nickname" -#~ msgstr "اسم المستخدم المستعار" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "الإسم المستعار للمستخدم اللذي تريد متابعته." - -#~ msgid "Profile URL" -#~ msgstr "مسار الملف الشخصي" - -#~ msgid "Authorize subscription" -#~ msgstr "التصريح للاشتراكات" - -#~ 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 "" -#~ "يُرجى التحقق من هذه التفاصيل للتأكد من أنك تريد الاشتراك بإشعارات هذا " -#~ "المستخدم. إذا لم تطلب للتو الاستماع لإشعارات شخص ما فانقر \"ارفض\"." - -#~ msgid "Reject this subscription." -#~ msgstr "ارفض هذا الاشتراك" - -#~ msgid "No authorization request!" -#~ msgstr "لا طلب تصريح!" - -#~ msgid "Subscription authorized" -#~ msgstr "أُذِن للاشتراك" - -#~ msgid "Subscription rejected" -#~ msgstr "رُفض الاشتراك" - -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "مسار المستمع \"%s\" طويل للغاية." - -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "مسار المستمع \"%s\" لمستخدم محلي." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "مسار المصدر ليس صحيحا." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "تعذر قراءة رابط الأفتار ‘%s’." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "تعذّر حفظ الاشتراك." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "تعذّر إدراج اشتراك جديد." +#~ msgid "Tagged" +#~ msgstr "الموسومون" diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index b9dc60a405..aeb1c6df73 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,15 +12,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:32+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-07-01 11:17:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,14 +38,6 @@ msgstr "" "Вы можаце зьвязацца зь імі на %2$s каб у гэтым упэўніцца. У адваротным " "выпадку, пачакайце некалькі хвілінаў і паспрабуйце ізноў." -#. 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 "Адбылася памылка." @@ -319,10 +311,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Дасылаць мне абвяшчэньні" +msgstr "Даслаць запрашэньне" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -447,13 +438,12 @@ msgstr "Памылка блякаваньня карыстальніка." msgid "Unblock user failed." msgstr "Памылка разблякаваньня карыстальніка." -#, fuzzy msgid "no conversation id" -msgstr "Размова" +msgstr "няма ідэнтыфікатару размовы" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "Няма размовы з ідэнтыфікатарам %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -1752,15 +1742,13 @@ msgstr "Адрас «%s» быў пацьверджаны для Вашага р #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Стужка для сяброў %s (стужкі актыўнасьці JSON)" +msgstr "Стужка размовы (стужкі актыўнасьці JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Размова" +msgstr "Стужка размовы (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -2658,8 +2646,8 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"Пошук групаў %%site.name%% па назьве, месцазнаходжаньні ці апісаньні. " -"Падзяляйце словы прабеламі; яны павінны ўтрымліваць 3 ці болей сымбаляў." +"Пошук групаў на %%site.name%% па назьве, месцазнаходжаньні ці апісаньні. " +"Падзяляйце словы прагаламі; яны павінны ўтрымліваць 3 ці болей сымбаляў." #. TRANS: Title for page where groups can be searched. msgid "Group search" @@ -3609,7 +3597,7 @@ msgstr "Афармленьне" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server for themes." -msgstr "Сэрвэр для афармленьняў." +msgstr "Сэрвэр афармленьняў." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to themes." @@ -3625,105 +3613,105 @@ msgstr "SSL-сэрвэр для афармленьняў (па змоўчван #. TRANS: Field label in Paths admin panel. msgid "SSL path" -msgstr "" +msgstr "SSL-шлях" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL path to themes (default: /theme/)." -msgstr "" +msgstr "SSL-шлях да тэмаў (па змоўчваньні: /theme/)." #. TRANS: Field label in Paths admin panel. msgid "Directory" -msgstr "" +msgstr "Дырэкторыя" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Directory where themes are located." -msgstr "" +msgstr "Дырэкторыя, у якой знаходзяцца тэмы." #. TRANS: Fieldset legend in Paths admin panel. msgid "Avatars" -msgstr "" +msgstr "Аватары" #. TRANS: Field label in Paths admin panel. msgid "Avatar server" -msgstr "" +msgstr "Сэрвэр аватараў" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server for avatars." -msgstr "" +msgstr "Сэрвэр для аватараў." #. TRANS: Field label in Paths admin panel. msgid "Avatar path" -msgstr "" +msgstr "Шлях да аватараў" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to avatars." -msgstr "" +msgstr "Ўэб-шлях да аватараў." #. TRANS: Field label in Paths admin panel. msgid "Avatar directory" -msgstr "" +msgstr "Дырэкторыя аватараў" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Directory where avatars are located." -msgstr "" +msgstr "Дырэкторыя, у якой знаходзяцца аватары." #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" -msgstr "" +msgstr "Далучэньні" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server for attachments." -msgstr "" +msgstr "Сэрвэр далучэньняў." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to attachments." -msgstr "" +msgstr "Ўэб-шлях да далучэньняў." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server for attachments on SSL pages." -msgstr "" +msgstr "Сэрвэр для далучэньняў на SSL-старонках." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to attachments on SSL pages." -msgstr "" +msgstr "Уэб-шлях для далучэньняў на SSL-старонках." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Directory where attachments are located." -msgstr "" +msgstr "Дырэкторыя, у якой знаходзяцца далучэньні." #. TRANS: Fieldset legend in Paths admin panel. msgctxt "LEGEND" msgid "SSL" -msgstr "" +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 "" +msgstr "Ніколі" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). msgid "Sometimes" -msgstr "" +msgstr "Часам" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). msgid "Always" -msgstr "" +msgstr "Заўсёды" #. TRANS: Drop down label in Paths admin panel. msgid "Use SSL" -msgstr "" +msgstr "Выкарыстоўваць SSL" #. TRANS: Tooltip for field label in Paths admin panel. msgid "When to use SSL." -msgstr "" +msgstr "Калі выкарыстоўваць SSL." #. TRANS: Tooltip for field label in Paths admin panel. msgid "Server to direct SSL requests to." -msgstr "" +msgstr "Сэрвэр, на які перанакіроўваць SSL-запыты." #. TRANS: Button title text to store form data in the Paths admin panel. msgid "Save paths" -msgstr "" +msgstr "Захаваць шляхі" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3732,22 +3720,24 @@ 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 ці болей сымбаляў." #. TRANS: Title of a page where users can search for other users. msgid "People search" -msgstr "" +msgstr "Пошук людзей" #. TRANS: Title for list page. #. TRANS: %s is a list. #, php-format msgid "Public list %s" -msgstr "" +msgstr "Публічны сьпіс %s" #. TRANS: Title for list page. #. TRANS: %1$s is a list, %2$d is a page number. #, php-format msgid "Public list %1$s, page %2$d" -msgstr "" +msgstr "Публічны сьпіс %1$s, старонка %2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). @@ -3758,129 +3748,144 @@ msgid "" "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" +"Сьпісы — спосаб групоўкі падобных людзей на %%site.name%%, сэрвісе " +"[мікраблёгаў](http://en.wikipedia.org/wiki/Micro-blogging), які працуе з " +"дапамогай вольнага праграмнага забесьпячэньня [StatusNet](http://status." +"net/). Вы можаце зь лёгкасьцю сачыць за тым, што яны робяць, падпісаўшыся на " +"стужку паведамленьняў гэтага сьпісу." #. TRANS: Client error displayed when a tagger is expected but not provided. msgid "No tagger." -msgstr "" +msgstr "Няма аўтара тэга." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. #, php-format msgid "People listed in %1$s by %2$s" -msgstr "" +msgstr "Людзі пазначаныя ў сьпісе %1$s карыстальнікам %2$s" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. #, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "" +msgstr "Людзі пазначаныя ў сьпісе %1$s карыстальнікам %2$s, старонка %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. msgid "Creator" -msgstr "" +msgstr "Аўтар" #. TRANS: Title for lists by a user page for a private tag. msgid "Private lists by you" -msgstr "" +msgstr "Вашыя асабістыя сьпісы" #. TRANS: Title for lists by a user page for a public tag. msgid "Public lists by you" -msgstr "" +msgstr "Вашыя публічныя сьпісы" #. TRANS: Title for lists by a user page. msgid "Lists by you" -msgstr "" +msgstr "Вашыя сьпісы" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "Сьпісы %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. #, php-format msgid "Lists by %1$s, page %2$d" -msgstr "" +msgstr "Сьпісы %1$s, старонка %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" -msgstr "" +msgstr "Вы ня можаце праглядаць прыватныя сьпісы іншых карыстальнікаў" #. TRANS: Mode selector label. msgid "Mode" -msgstr "" +msgstr "Рэжым" #. TRANS: Link text to show lists for user %s. #, php-format msgid "Lists for %s" -msgstr "" +msgstr "Сьпісы для %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. msgid "Select tag to filter" -msgstr "" +msgstr "Выберыце тэг для фільтраваньня" #. TRANS: Checkbox title. msgid "Show private tags." -msgstr "" +msgstr "Паказваць прыватныя тэгі." #. TRANS: Checkbox label to show public tags. msgctxt "LABEL" msgid "Public" -msgstr "" +msgstr "Публічныя" #. TRANS: Checkbox title. msgid "Show public tags." -msgstr "" +msgstr "Паказваць публічныя тэгі." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. msgctxt "BUTTON" msgid "Go" -msgstr "" +msgstr "Перайсьці" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" +"Тут пададзеныя сьпісы створаныя **%s**. Сьпісы — спосаб групоўкі падобных " +"людзей на %%site.name%%, сэрвісе [мікраблёгаў](http://en.wikipedia.org/wiki/" +"Micro-blogging), які працуе з дапамогай вольнага праграмнага забесьпячэньня " +"[StatusNet](http://status.net/). Вы можаце зь лёгкасьцю сачыць за тым, што " +"яны робяць, падпісаўшыся на стужку паведамленьняў гэтага сьпісу." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. #, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" +msgstr "%s яшчэ не стварыў ніводнага [сьпісу](%%%%doc.lists%%%%)." #. TRANS: Page title. %s is a tagged user's nickname. #, php-format msgid "Lists with %s in them" -msgstr "" +msgstr "Сьпісы, да якіх належыць %s" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. #, php-format msgid "Lists with %1$s, page %2$d" -msgstr "" +msgstr "Сьпісы з %1$s, старонка %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" +"Тут пададзеныя сьпісы для **%s**. Сьпісы — спосаб групоўкі падобных людзей " +"на %%%%site.name%%%%, сэрвісе [мікраблёгаў](http://en.wikipedia.org/wiki/" +"Micro-blogging), які працуе з дапамогай вольнага праграмнага забесьпячэньня " +"[StatusNet](http://status.net/). Вы можаце зь лёгкасьцю сачыць за тым, што " +"яны робяць, падпісаўшыся на стужку паведамленьняў гэтага сьпісу." #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3888,30 +3893,32 @@ msgstr "" #, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." msgstr "" +"%s яшчэ не ўваходзіць ні ў які [сьпіс](%%%%doc.lists%%%%) іншых " +"карыстальнікаў." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. #, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "" +msgstr "Падпісаныя на сьпіс %1$s карыстальніка %2$s" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. #, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "" +msgstr "Падпісаныя на сьпіс %1$s карыстальніка %2$s, старонка %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. #, php-format msgid "Lists subscribed to by %s" -msgstr "" +msgstr "Сьпісы, на якія падпісаны %s" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. #, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "" +msgstr "Сьпісы, на якія падпісаны %1$s, старонка %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3924,11 +3931,17 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" +"Тут пададзеныя сьпісы, на якія падпісаны **%s**. Сьпісы — спосаб групоўкі " +"падобных людзей на %%site.name%%, сэрвісе [мікраблёгаў](http://en.wikipedia." +"org/wiki/Micro-blogging), які працуе з дапамогай вольнага праграмнага " +"забесьпячэньня [StatusNet](http://status.net/). Вы можаце зь лёгкасьцю " +"сачыць за тым, што яны робяць, падпісаўшыся на стужку паведамленьняў гэтага " +"сьпісу." #. 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. @@ -3936,25 +3949,25 @@ msgstr "" #. TRANS: Do not translate POST. #. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." -msgstr "" +msgstr "Гэтае дзеяньне прымае толькі POST-запыты." #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. msgid "You cannot administer plugins." -msgstr "" +msgstr "Вы ня можаце кіраваць дапаўненьнямі." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. msgid "No such plugin." -msgstr "" +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. msgctxt "TITLE" msgid "Plugins" -msgstr "" +msgstr "Дапаўненьні" #. TRANS: Instructions at top of plugin admin page. msgid "" @@ -3962,67 +3975,73 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." msgstr "" +"Дадатковыя дапаўненьні можна ўключыць і наладжваць уручную. Глядзіце дакумэнтацыю, каб атрымаць дадатковую " +"інфармацыю." #. TRANS: Admin form section header msgid "Default plugins" -msgstr "" +msgstr "Дапаўненьні па змоўчваньні" #. 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 "" +"Усе дапаўненьні па змоўчваньні былі адключаныя ў файле канфігурацыі сайта." #. TRANS: Client error displayed when trying to add an unindentified field to profile. #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "Невядомае поле %s." #. TRANS: Page title. msgctxt "TITLE" msgid "Search results" -msgstr "" +msgstr "Вынікі пошуку" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." -msgstr "" +msgstr "Радок пошуку павінен утрымліваць ня меней 3 сымбаляў." #. TRANS: Page title for profile settings. msgid "Profile settings" -msgstr "" +msgstr "Налады профілю" #. TRANS: Usage instructions for profile settings. msgid "" "You can update your personal profile info here so people know more about you." msgstr "" +"Вы можаце абнавіць Вашую асабістую інфармацыю ў профілі, каб людзі " +"даведаліся пра Вас болей." #. TRANS: Profile settings form legend. msgid "Profile information" -msgstr "" +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. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "" +msgstr "1-64 малых літараў ці лічбаў, без сымбаляў пунктуацыі і прагалаў." #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. #. TRANS: Field label on group edit form. msgid "Full name" -msgstr "" +msgstr "Поўнае імя" #. TRANS: Field label in form for profile settings. #. 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. msgid "Homepage" -msgstr "" +msgstr "Хатняя старонка" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. msgid "URL of your homepage, blog, or profile on another site." -msgstr "" +msgstr "URL-адрас Вашай хатняй старонкі, блёгу ці профілю на іншым сайце." #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the @@ -4033,19 +4052,19 @@ msgstr "" #, 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[0] "Апішыце сябе і Вашыя зацікаўленасьці ўклаўшыся ў %d сымбаль." +msgstr[1] "Апішыце сябе і Вашыя зацікаўленасьці ўклаўшыся ў %d сымбалі." #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Text area title on account registration page. msgid "Describe yourself and your interests." -msgstr "" +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. msgid "Bio" -msgstr "" +msgstr "Біяграфія" #. TRANS: Field label in form for profile settings. #. TRANS: Field label on account registration page. @@ -4174,8 +4193,9 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." -msgstr "" +#, fuzzy +msgid "Could not retrieve public timeline." +msgstr "Немагчыма стварыць дастасаваньне." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4189,19 +4209,20 @@ msgid "Public timeline" msgstr "" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" +msgstr "Стужка размовы (стужкі актыўнасьці JSON)" + +#. TRANS: Link description for public timeline feed. +msgid "Public Timeline Feed (RSS 1.0)" msgstr "" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +msgid "Public Timeline Feed (RSS 2.0)" msgstr "" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" - -#. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +msgid "Public Timeline Feed (Atom)" msgstr "" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4728,7 +4749,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5100,6 +5121,7 @@ msgid "" msgstr "" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "" @@ -5118,19 +5140,19 @@ msgstr "" msgid "All subscribers" msgstr "" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format msgid "Notices by %1$s tagged %2$s" msgstr "" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format 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: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format msgid "Notices by %1$s, page %2$d" @@ -5172,7 +5194,7 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5183,7 +5205,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5191,7 +5213,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5201,7 +5223,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8085,7 +8107,7 @@ msgstr "" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8504,10 +8526,6 @@ msgstr "" msgid "Edit %s list by you." msgstr "" -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "" @@ -9414,31 +9432,9 @@ msgstr "" msgid "Could not find a valid profile for \"%s\"." msgstr "" -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." +#~ msgid "" +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "Вы ня можаце унесьці ў сьпіс аддалены профіль OMB 0.1 з дапамогай гэтага " -#~ "дзеяньня." - -#~ msgid "Not expecting this response!" -#~ msgstr "Нечаканы адказ!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Карыстальнік якога слухалі, больш не існуе." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Вы можаце выкарыстоўваць лякальную падпіску!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Гэты карыстальнік заблякаваў Вас на яго падпіску." - -#~ msgid "You are not authorized." -#~ msgstr "Вы не аўтарызаваны." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Немагчыма канвэртаваць ключ запыту ў ключ доступу." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Аддалены сэрвіс выкарыстоўвае невядомую вэрсію пратаколу OMB." - -#~ msgid "Error updating remote profile." -#~ msgstr "Немагчыма абнавіць аддалены профіль." +#~ "Узьнікла важная памылка, верагодна зьвязаная з наладамі электроннай " +#~ "пошты. Праверце файлы журналаў для дадатковай інфармацыі." diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 4b233dccf7..f689dc8250 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:34+0000\n" -"Language-Team: Bulgarian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:40+0000\n" +"Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -32,12 +32,6 @@ msgid "" "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 "" @@ -3895,7 +3889,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists by a user when there are none. @@ -3924,7 +3918,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists a user was added to when there are none. @@ -4237,7 +4231,8 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Грешка при изтегляне на общия поток" #. TRANS: Title for all public timeline pages but the first. @@ -4253,19 +4248,22 @@ msgstr "Общ поток" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Емисия на общия поток (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Емисия на общия поток (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Емисия на общия поток (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Емисия на общия поток (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4834,7 +4832,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5220,6 +5218,7 @@ msgid "" msgstr "" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Лиценз" @@ -5239,19 +5238,19 @@ msgstr "Абонати" msgid "All subscribers" msgstr "Всички абонати" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Бележки с етикет %s" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5293,7 +5292,7 @@ msgstr "Емисия с бележки на %s (Atom)" msgid "FOAF for %s" msgstr "FOAF за %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5304,7 +5303,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5312,7 +5311,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5322,7 +5321,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8409,7 +8408,7 @@ msgstr "%s (@%s) отбеляза бележката ви като любима" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8854,11 +8853,6 @@ msgstr "Редактиране" msgid "Edit %s list by you." msgstr "Редактиране на групата %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Етикет" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9844,157 +9838,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "Грешка при запазване на профила." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "Не сте абонирани за този профил" - -#~ msgid "Not expecting this response!" -#~ msgstr "Неочакван отговор." - -#, fuzzy -#~ msgid "User being listened to does not exist." -#~ msgstr "Потребителят, когото проследявате, не съществува. " - -#~ msgid "You can use the local subscription!" -#~ msgstr "Можете да ползвате локален абонамент!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Потребителят е забранил да се абонирате за него." - -#~ msgid "You are not authorized." -#~ msgstr "Не сте абонирани за никого." - -#, fuzzy -#~ msgid "Could not convert request token to access token." -#~ msgstr "Грешка при преобразуване на tokens за одобрение в tokens за достъп." - -#, fuzzy -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Непозната версия на протокола OMB." - -#, fuzzy -#~ msgid "Error updating remote profile." -#~ msgstr "Грешка при обновяване на отдалечен профил" - -#~ msgid "Invalid notice content." -#~ msgstr "Неправилен размер." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "За да се абонирате, можете да [влезете](%%action.login%%) или да " -#~ "[регистрирате](%%action.register%%) нова сметка. Ако имате сметка на " -#~ "друга, [подобна услуга за микроблогване](%%doc.openmublog%%), въведете " -#~ "адреса на профила си в нея по-долу." - -#~ msgid "Remote subscribe" -#~ msgstr "Отдалечен абонамент" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Абониране за отдалечен потребител" - -#~ msgid "User nickname" -#~ msgstr "Потребителски псевдоним" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Псевдоним на потребител, когото искате да следите" - -#~ msgid "Profile URL" -#~ msgstr "Адрес на профила" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Неправилен адрес на профил (грешен формат)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Неправилен адрес на профил (няма документ YADIS или XRDS е неправилен)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Това е локален профил! Влезте, за да се абонирате." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Не е получен token за одобрение." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "Не сте абонирани за този профил" - -#, fuzzy -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "Не сте абонирани за този профил" - -#~ msgid "Authorize subscription" -#~ msgstr "Одобряване на абонамента" - -#, fuzzy -#~ 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 "" -#~ "Проверете тези детайли и се уверете, че искате да се абонирате за " -#~ "бележките на този потребител. Ако не искате абонамента, натиснете \"Cancel" -#~ "\" (Отказ)." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Абонаменти на %s" - -#~ msgid "No authorization request!" -#~ msgstr "Няма заявка за одобрение." - -#~ msgid "Subscription authorized" -#~ msgstr "Абонаментът е одобрен" - -#~ 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 "" -#~ "Абонаментът е одобрен, но не е зададен callback URL. За да завършите " -#~ "одобряването, проверете инструкциите на сайта. Вашият token за абонамент " -#~ "е:" - -#~ msgid "Subscription rejected" -#~ msgstr "Абонаментът е отказан" - -#~ 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 "" -#~ "Абонаментът е отказан, но не е зададен callback URL. За да откажете " -#~ "напълно абонамента, проверете инструкциите на сайта." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Изходният адрес е твърде дълъг." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "Адресът на личната страница не е правилен URL." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Грешка при четене адреса на аватара '%s'" - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Грешен вид изображение за '%s'" - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Грешка при добавяне на нов абонамент." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Грешка при добавяне на нов абонамент." +#~ msgid "Tagged" +#~ msgstr "Етикет" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index df36b72984..fd28936ede 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:35+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:42+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -33,12 +33,6 @@ msgid "" "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 "Ur fazi zo bet." @@ -3872,7 +3866,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." @@ -3903,7 +3897,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." @@ -4225,7 +4219,8 @@ msgid "Beyond the page limit (%s)." msgstr "Dreist da bevennoù ar bajenn (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Dibosupl eo adtapout al lanv foran." #. TRANS: Title for all public timeline pages but the first. @@ -4241,19 +4236,22 @@ msgstr "Lanv foran" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Neudenn gwazh foran (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Neudenn gwazh foran (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Neudenn gwazh foran (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Neudenn gwazh foran (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4826,7 +4824,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5217,6 +5215,7 @@ msgstr "" "gentañ da embann un dra !" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "Rollet" @@ -5235,19 +5234,19 @@ msgstr "Koumananterien" msgid "All subscribers" msgstr "An holl goumananterien" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Alioù merket gant %1$s, pajenn %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5289,7 +5288,7 @@ msgstr "Gwazh alioù %s (Atom)" msgid "FOAF for %s" msgstr "mignon ur mignon evit %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5302,7 +5301,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5310,7 +5309,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, fuzzy, php-format msgid "" @@ -5322,7 +5321,7 @@ msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, fuzzy, php-format msgid "" @@ -8364,7 +8363,7 @@ msgstr "%s (@%s) en deus kaset deoc'h ur c'hemenn" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8813,11 +8812,6 @@ msgstr "Aozañ" msgid "Edit %s list by you." msgstr "Kemmañ ar strollad %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Balizenn" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9765,128 +9759,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "Dibosupl eo enrollañ ar profil." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." - -#~ msgid "Not expecting this response!" -#~ msgstr "Ne oa ket gortozet ar respont-mañ !" - -#, fuzzy -#~ msgid "You can use the local subscription!" -#~ msgstr "Dibosupl eo dilemel ar c'houmanant." - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "An implijer-se en deus ho stanket evit en enskrivañ." - -#~ msgid "You are not authorized." -#~ msgstr "N'oc'h ket aotreet." - -#, fuzzy -#~ msgid "Could not convert request token to access token." -#~ msgstr "Dibosupl eo kaout ur jedaouer reked." - -#~ msgid "Error updating remote profile." -#~ msgstr "Fazi en ur hizivaat ar profil a-bell." - -#~ msgid "Invalid notice content." -#~ msgstr "Danvez direizh an ali." - -#, fuzzy -#~ msgid "" -#~ "Notice 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\"." - -#~ msgid "Remote subscribe" -#~ msgstr "Koumanant eus a-bell" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Koumanantiñ d'un implijer pell" - -#~ msgid "User nickname" -#~ msgstr "Lesanv an implijer" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Lesanv an implijer ho peus c'hoant heuliañ" - -#~ msgid "Profile URL" -#~ msgstr "URL ar profil" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "URL direizh evit ar profil (furmad fall)" - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Lec'hel eo ar profil-mañ ! Kevreit evit koumananti." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Dibosupl eo kaout ur jedaouer reked." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Ne c'helloc'h ket reiñ rolloù d'an implijerien eus al lec'hienn-mañ." - -#, 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\"." - -#~ msgid "Authorize subscription" -#~ msgstr "Aotreañ ar c'houmanant" - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Nac'hañ ar c'houmanant" - -#~ msgid "No authorization request!" -#~ msgstr "Reked aotreañ ebet !" - -#~ msgid "Subscription authorized" -#~ msgstr "Koumanant aotreet" - -#~ msgid "Subscription rejected" -#~ msgstr "Koumanant bet nac'het" - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "N'eo ket bet kavet amañ URI ar selaouer \"%s\"." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Re hir eo an URI \"%s\" ez oc'h koumanantet dezhi." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "An URI \"%s\" ez oc'h koumanantet dezhi a zo un implijer lec'hel." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "URI ar profil \"%s\" a zo evit un implijer lec'hel." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "N'eo ket reizh URL an avatar \"%s\"." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Dibosupl eo lenn URL an avatar \"%s\"." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Seurt skeudenn direizh evit URL an avatar \"%s\"." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Dibosupl eo dilemel ar c'houmanant." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Dibosupl eo dilemel ar c'houmanant." +#~ msgid "Tagged" +#~ msgstr "Balizenn" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 9c6e370ab6..3b5d9ce505 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:37+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:43+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -41,14 +41,6 @@ msgstr "" "problema, però també podeu posar-vos-hi en contacte des de %2$s per a " "assegurar-vos-en. Sinó, espereu uns pocs minuts i torneu-ho a provar." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"S'ha produït un error important, probablement està relacionat amb la " -"configuració del correu. Comproveu els fitxers de registre per a més detalls." - #. TRANS: Error message. msgid "An error occurred." msgstr "S'ha produït un error." @@ -326,10 +318,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Envia invitacions." +msgstr "Envia una invitació" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -454,13 +445,12 @@ msgstr "Ha fallat el blocatge de l'usuari." msgid "Unblock user failed." msgstr "Ha fallat el desblocatge de l'usuari." -#, fuzzy msgid "no conversation id" -msgstr "Conversa" +msgstr "no hi ha un id de conversa" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "No hi ha cap conversa amb l'id %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -1752,15 +1742,13 @@ msgstr "L'adreça «%s» ha estat confirmada per al vostre compte." #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Canal d'avisos de %s (fluxos d'activitats JSON)" +msgstr "Canal de conversos (fluxos d'activitats JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Canal d'avisos de %s (RSS 2.0)" +msgstr "Canal de converses (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -3848,13 +3836,13 @@ msgstr "Vés-hi" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Aquestes són llistes creades per **%s**. Les llistes són la forma com " "agrupeu gent similar a %%%%site.name%%%%, un servei de [microblogging]" @@ -3882,13 +3870,13 @@ msgstr "Llistes que contenen %1$s, pàgina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Aquestes són llistes de **%s**. Les llistes són la forma com agrupeu gent " "similar a %%%%site.name%%%%, un servei de [microblogging](http://ca." @@ -4208,7 +4196,8 @@ msgid "Beyond the page limit (%s)." msgstr "Més enllà del límit de la pàgina (%s)" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "No s'ha pogut recuperar la conversa pública." #. TRANS: Title for all public timeline pages but the first. @@ -4223,19 +4212,23 @@ msgid "Public timeline" msgstr "Línia temporal pública" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Canal de flux públic (fluxos d'activitat JSON)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Flux de canal públic (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Flux de canal públic (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Flux de canal públic (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4820,8 +4813,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Es restaurarà el perfil. Espereu uns pocs minuts per als resultats." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Podeu pujar una còpia de seguretat de flux en format \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:45+0000\n" +"Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -36,12 +36,6 @@ msgid "" "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 "" @@ -3959,7 +3953,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** je skupina uživatelů na %%%%site.name%%%%, [mikro-blogovací](http://" "drbz.cz/i/napoveda-faq#mikroblog) službě založené na Free Software nástroji " @@ -3992,7 +3986,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** je skupina uživatelů na %%%%site.name%%%%, [mikro-blogovací](http://" "drbz.cz/i/napoveda-faq#mikroblog) službě založené na Free Software nástroji " @@ -4318,7 +4312,8 @@ msgid "Beyond the page limit (%s)." msgstr "Přes limit stránky (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Nepodařilo se získat veřejný proud." #. TRANS: Title for all public timeline pages but the first. @@ -4334,19 +4329,22 @@ msgstr "Veřejné zprávy" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Veřejný Stream Feed (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Veřejný Stream Feed (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Veřejný Stream Feed (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Veřejný Stream Feed (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4940,7 +4938,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5349,6 +5347,7 @@ msgstr "" "Proč ne [zaregistrovat účet](%%action.register%%) a poslat něco jako první!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Licence" @@ -5368,19 +5367,19 @@ msgstr "Odběratelé" msgid "All subscribers" msgstr "Všichni odběratelé" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Oznámení označená %1$s, strana %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5422,7 +5421,7 @@ msgstr "Feed oznámení pro %1$s (Atom)" msgid "FOAF for %s" msgstr "FOAF pro %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Toto je časová osa pro %1$s, ale %2$s zatím ničím nepřispěli." @@ -5435,7 +5434,7 @@ msgstr "" "Viděli jste v poslední době zajímavého? Nemáte zatím žádné oznámení, teď by " "byl dobrý čas začít:)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5445,7 +5444,7 @@ msgstr "" "Můžete se pokusit uživatele %1$s postrčit nebo [jim něco poslat](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5459,7 +5458,7 @@ msgstr "" "(http://status.net/). [Zaregistrujte se](%%%%action.register%%%%) a sledujte " "oznámení od **%s**a mnoha dalších! ([Čtěte více](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8627,7 +8626,7 @@ msgstr "%s (@%s) poslal oznámení žádající o vaši pozornost" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9103,11 +9102,6 @@ msgstr "Editovat" msgid "Edit %s list by you." msgstr "Upravit skupinu %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Značka" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -10100,179 +10094,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "Nepodařilo se uložit profil." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Touto akcí se nemůžete přihlásit k odběru vzdáleného OMB 0.1 profilu." - -#~ msgid "Not expecting this response!" -#~ msgstr "Nečekaná odpověď!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Úživatel, kterému nasloucháte neexistuje." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Můžete použít místní odebírání." - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Uživatel vaše odebírání zablokoval." - -#~ msgid "You are not authorized." -#~ msgstr "Nejste autorizován." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Nemohu převést žádost token na přístup token." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Vzdálená služba používá neznámou verzi protokolu OMB." - -#~ msgid "Error updating remote profile." -#~ msgstr "Chyba při aktualizaci vzdáleného profilu." - -#~ msgid "Invalid notice content." -#~ msgstr "Neplatná velikost" - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "Licence hlášky ‘%1$s’ není kompatibilní s licencí webu ‘%2$s’." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Pro odebírání, se musíte [přihlásit](%%action.login%%), nebo [registrovat]" -#~ "(%%action.register%%) nový účet. Pokud již máte účet na [kompatibilních " -#~ "mikroblozích](%%doc.openmublog%%), vložte níže adresu." - -#~ msgid "Remote subscribe" -#~ msgstr "Vzdálený odběr" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Přihlásit se ke vzdálenému uživateli" - -#~ msgid "User nickname" -#~ msgstr "Přezdívka uživatele" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Přezdívka uživatele, kterého chcete sledovat" - -#~ msgid "Profile URL" -#~ msgstr "Adresa Profilu" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "Adresa profilu na jiných kompatibilních mikroblozích." - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Neplatná adresa profilu (špatný formát)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Není platnou adresou profilu (není YADIS dokumentem nebo definováno " -#~ "neplatné XRDS)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "To je místní profil! Pro přihlášení k odběru se přihlášte." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Nelze získat řetězec požadavku." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Touto akcí se nemůžete se přihlásit k odběru vzdáleného OMB 0.1 profilu." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Touto akcí se nemůžete se přihlásit k odběru vzdáleného OMB 0.1 profilu." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Autorizujte přihlášení" - -#, fuzzy -#~ 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 "" -#~ "Prosím zkontrolujte tyto detailu, a ujistěte se že opravdu chcete " -#~ "odebírat sdělení tohoto uživatele. Pokud jste právě nepožádali o " -#~ "přihlášení k tomuto uživteli, klikněte na \"Zrušit\"" - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Odmítnout toto přihlášení" - -#~ msgid "No authorization request!" -#~ msgstr "Žádná žádost o autorizaci!" - -#~ msgid "Subscription authorized" -#~ msgstr "Odběr autorizován" - -#~ 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 "" -#~ "Odběr byl autorizován, ale nepřišla žádná callback adresa. Zkontrolujte v " -#~ "nápovědě jak správně postupovat při autorizování odběru. Váš řetězec " -#~ "odběru je:" - -#~ msgid "Subscription rejected" -#~ msgstr "Odběr odmítnut" - -#~ 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 "" -#~ "Odebírání bylo zamítnuto, ale nepřišla žádná callback adresa. " -#~ "Zkontrolujte v nápovědě jak správně postupovat pro plné zamítnutí odběru." - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "Naslouchací URI ‘%s’ zde nebyl nalezen." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Naslouchací URI ‘%s’ je příliš dlouhý." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "Naslouchací URI ‘%s’ je místní uživatel." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "URL profilu '%s' je pro místního uživatele." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "URL avataru ‘%s’ není platný." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Nelze načíst avatara z URL '%s'" - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Špatný typ obrázku na URL '%s'" - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Nelze smazat OMB token přihlášení." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Nelze vložit odebírání" +#~ msgid "Tagged" +#~ msgstr "Značka" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index fdc8163e6a..e734c3067e 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -4,6 +4,7 @@ # Author: Apmon # Author: Bavatar # Author: Brion +# Author: ChrisiPK # Author: George Animal # Author: Giftpflanze # Author: Gta74 @@ -29,17 +30,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:47+0000\n" +"Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -55,14 +56,6 @@ msgstr "" "um sicherzugehen. Andernfalls warte einige Minuten und versuche es " "nocheinmal." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Ein wichtiger Fehler ist aufgetreten, der wahrscheinlich mit dem E-Mail-" -"Setup zu tun hat. Prüfe die Logdateien für weitere Informationen." - #. TRANS: Error message. msgid "An error occurred." msgstr "Ein Fehler ist aufgetreten." @@ -272,9 +265,9 @@ msgstr "Zeitleiste von %s" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "Feed der Freunde von %s (Atom)" +msgstr "Feed der Freunde von %s (Activity Streams JSON)" #. TRANS: %s is user nickname. #, php-format @@ -337,10 +330,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Einladungen" +msgstr "Einladung senden" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -465,13 +457,12 @@ msgstr "Blockieren des Benutzers fehlgeschlagen." msgid "Unblock user failed." msgstr "Freigeben des Benutzers fehlgeschlagen." -#, fuzzy msgid "no conversation id" -msgstr "Unterhaltung" +msgstr "keine Unterhaltungs-ID" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "Unterhaltung mit ID %d existiert nicht" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -1450,9 +1441,9 @@ msgstr "Kann kein Abonnement eines anderen löschen." #. 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 "Leute, die „%s“ abonniert haben" +msgstr "Leute, die %1$s auf %2$s abonniert hat" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." @@ -1775,15 +1766,13 @@ msgstr "Die Adresse „%s“ wurde für dein Konto bestätigt." #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Feed der Nachrichten von %s (Atom)" +msgstr "Feed der Unterhaltungen (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Feed der Nachrichten von %s (RSS 2.0)" +msgstr "Feed der Unterhaltungen (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -2759,14 +2748,14 @@ msgstr "Aktuelle bestätigte Adresse für %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 "" "Warte auf Bestätigung dieser Adresse. Eine Nachricht mit weiteren Anweisung " -"sollte in deinem Jabber/GTalk-Konto eingehen. (Hast du %s zu deiner " -"Freundesliste hinzugefügt?)" +"sollte in deinem %1$s-Konto eingehen. (Hast du %2$s zu deiner Freundesliste " +"hinzugefügt?)" #. TRANS: Field label for IM address. msgid "IM address" @@ -3309,9 +3298,9 @@ msgstr "Aktualisierungen mit „%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 "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten" +msgstr "Alle Aktualisierungen, die den Suchbegriff „%1$s“ auf %2$s enthalten" #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. msgid "" @@ -3789,11 +3778,10 @@ msgid "" "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" -"Listen sind ein Mechanismus, um ähnliche Leute auf %%%%site.name%%%%, einem " -"[Mikroblogging](http://de.wikipedia.org/wiki/Mikroblogging)-Dienst, " -"basierend auf der freien Software [StatusNet](http://status.net/), zu " -"gruppieren. Du kannst leicht verfolgen, was sie tun, indem du die Zeitleiste " -"der Liste abonnierst." +"Listen gruppieren ähnliche Leute auf %%%%site.name%%%%, einem [Mikroblogging]" +"(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " +"Software [StatusNet](http://status.net/). Du kannst leicht verfolgen, was " +"sie tun, indem du die Zeitleiste dieser Liste abonnierst." #. TRANS: Client error displayed when a tagger is expected but not provided. msgid "No tagger." @@ -3801,15 +3789,15 @@ msgstr "Kein Benutzer angegeben." #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "Antworten an %1$s auf %2$s!" +msgstr "Leute, die auf der Liste %1$s von %2$s stehen" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "Antworten an %1$s, Seite %2$d" +msgstr "Leute, die auf der Liste %1$s von %2$s stehen, seite %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. @@ -3817,19 +3805,16 @@ msgid "Creator" msgstr "Ersteller" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "Gruppe %s bearbeiten" +msgstr "Deine privaten Listen" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "Öffentliche Tag-Wolke" +msgstr "Deine öffentlichen Listen" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "Gruppe %s bearbeiten" +msgstr "Deine Listen" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. @@ -3839,23 +3824,22 @@ msgstr "Listen von %s" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" +msgstr "Listen von %1$s, seite %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" msgstr "Du kannst keine Listen von anderen ansehen" #. TRANS: Mode selector label. -#, fuzzy msgid "Mode" -msgstr "Moderieren" +msgstr "Modus" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "Postausgang von %s" +msgstr "Listen für %s" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -3867,19 +3851,16 @@ msgid "Show private tags." msgstr "Private Tags anzeigen." #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" -msgstr "Zeitleiste" +msgstr "Öffentlich" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "Tag nicht vorhanden." +msgstr "Öffentliche Tags anzeigen." #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" msgstr "Los geht's" @@ -3893,21 +3874,20 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" -"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikroblogging]" -"(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " -"Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze " -"Nachrichten über ihr Leben und Interessen. " +"Diese Listen wurden von **%s** erstellt. Listen gruppieren ähnliche Leute " +"auf %%%%site.name%%%%, einem [Mikroblogging](http://de.wikipedia.org/wiki/" +"Mikroblogging)-Dienst basierend auf der freien Software [StatusNet](http://" +"status.net/). Du kannst leicht verfolgen, was sie tun, indem du die " +"Zeitleiste dieses Tags abonnierst." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" -"Bis jetzt hat noch niemand eine Nachricht mit dem Tag „[hashtag](%%doc.tags%" -"%)“ gepostet." +msgstr "%s hat noch keine [Listen](%%%%doc.lists%%%%) erstellt." #. TRANS: Page title. %s is a tagged user's nickname. #, php-format @@ -3915,9 +3895,9 @@ msgid "Lists with %s in them" msgstr "Listen, die %s enthalten" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "Mit „%1$s“ getaggte Nachrichten, Seite %2$d" +msgstr "Listen mit %1$s, Seite %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3928,50 +3908,49 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" -"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikroblogging]" -"(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " -"Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze " -"Nachrichten über ihr Leben und Interessen. " +"Diese Listen sind für **%s**. Listen gruppieren ähnliche Leute auf %%%%site." +"name%%%%, einem [Mikroblogging](http://de.wikipedia.org/wiki/Mikroblogging)-" +"Dienst basierend auf der freien Software [StatusNet](http://status.net/). Du " +"kannst einfach verfolgen, was sie tun, indem du die Zeitleiste dieses Tags " +"abonnierst." #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" -"Bis jetzt hat noch niemand eine Nachricht mit dem Tag „[hashtag](%%doc.tags%" -"%)“ gepostet." +msgstr "%s wurde bisher von niemandem [gelistet](%%%%doc.lists%%%%)." #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "%s abboniert." +msgstr "Abonnenten der Liste %1$s von %2$s" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" +msgstr "Abonnenten der Liste %1$s von %2$s, Seite %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "%s abboniert." +msgstr "Von %s abonnierte Listen" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "%1$s Abonnements, Seite %2$d" +msgstr "Von %1$s abonnierte Listen, Seite %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -3979,10 +3958,11 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [Mikroblogging]" -"(http://de.wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien " -"Software [StatusNet](http://status.net/). Seine Mitglieder erstellen kurze " -"Nachrichten über ihr Leben und Interessen. " +"Diese Listen hat **%s** abonniert. Listen gruppieren ähnliche Leute auf %%%%" +"site.name%%%%, einem [Mikroblogging](http://de.wikipedia.org/wiki/" +"Mikroblogging)-Dienst basierend auf der freien Software [StatusNet](http://" +"status.net/). Du kannst leicht verfolgen, was sie tun, indem du die " +"Zeitleiste dieser Liste abonnierst." #. TRANS: Page title for AJAX form return when a disabling a plugin. msgctxt "plugin" @@ -3998,14 +3978,12 @@ msgid "This action only accepts POST requests." msgstr "Diese Aktion nimmt nur POST-Requests" #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#, fuzzy msgid "You cannot administer plugins." -msgstr "Du kannst keine Benutzer löschen." +msgstr "Du kannst keine Erweiterungen verwalten." #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#, fuzzy msgid "No such plugin." -msgstr "Seite nicht vorhanden" +msgstr "Erweiterung nicht vorhanden." #. TRANS: Page title for AJAX form return when enabling a plugin. msgctxt "plugin" @@ -4013,7 +3991,6 @@ msgid "Enabled" msgstr "Aktiviert" #. TRANS: Tab and title for plugins admin panel. -#, fuzzy msgctxt "TITLE" msgid "Plugins" msgstr "Erweiterungen" @@ -4029,9 +4006,8 @@ msgstr "" "findest du mehr Details." #. TRANS: Admin form section header -#, fuzzy msgid "Default plugins" -msgstr "Bevorzugte Sprache" +msgstr "Standard-Erweiterungen" #. TRANS: Text displayed on plugin admin page when no plugin are enabled. msgid "" @@ -4045,10 +4021,9 @@ msgid "Unidentified field %s." msgstr "Nicht identifiziertes Feld %s." #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "Website durchsuchen" +msgstr "Suchergebnisse" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." @@ -4101,17 +4076,16 @@ 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 +#, 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" +msgstr[0] "Beschreibe dich selbst und deine Interessen in %d Zeichen." +msgstr[1] "Beschreibe dich selbst und deine Interessen in %d Zeichen." #. 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 "Beschreibe dich selbst und deine Interessen" +msgstr "Beschreibe dich selbst und deine Interessen." #. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. @@ -4128,9 +4102,8 @@ msgstr "Aufenthaltsort" #. 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 "Wo du bist, beispielsweise „Stadt, Region, Land“" +msgstr "Wo du bist, beispielsweise „Stadt, Region, Land“." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" @@ -4141,20 +4114,18 @@ msgid "Tags" msgstr "Tags" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " -"Leerzeichen getrennt" +"Tags über dich selbst (Buchstaben, Zahlen, -, . und _) durch Kommas oder " +"Leerzeichen getrennt." #. TRANS: Dropdownlist label in form for profile settings. msgid "Language" msgstr "Sprache" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#, fuzzy msgid "Preferred language." msgstr "Bevorzugte Sprache" @@ -4167,22 +4138,19 @@ msgid "What timezone are you normally in?" msgstr "In welcher Zeitzone befindest du dich üblicherweise?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." msgstr "" "Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" -"Menschen)" +"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" +msgstr "Abonnementeinstellungen" #. TRANS: Dropdown field option for following policy. -#, fuzzy msgid "Let anyone follow me" -msgstr "Man kann nur Personen folgen" +msgstr "Jeder darf mich abonnieren" #. TRANS: Dropdown field option for following policy. msgid "Ask me first" @@ -4223,9 +4191,9 @@ msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)." #. TRANS: %s is the invalid tag. #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "Ungültiges Stichwort: „%s“" +msgstr "Ungültiges Tag: „%s“." #. TRANS: Server error thrown when user profile settings could not be updated to #. TRANS: automatically subscribe to any subscriber. @@ -4260,7 +4228,8 @@ msgid "Beyond the page limit (%s)." msgstr "Jenseits des Seitenlimits (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Konnte öffentlichen Stream nicht abrufen." #. TRANS: Title for all public timeline pages but the first. @@ -4276,19 +4245,22 @@ msgstr "Öffentliche Zeitleiste" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Feed des öffentlichen Streams (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Feed des öffentlichen Streams (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Feed des öffentlichen Streams (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Feed des öffentlichen Streams (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4484,7 +4456,6 @@ msgid "Recover" msgstr "Wiederherstellung" #. TRANS: Button text on password recovery page. -#, fuzzy msgctxt "BUTTON" msgid "Recover" msgstr "Wiederherstellung" @@ -4895,8 +4866,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Feed wird wiederhergestellt. Dies kann einige Minuten dauern." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Eine Sicherungskopie kann im Activity " @@ -5303,6 +5275,7 @@ msgstr "" "bist der erste der eine Nachricht abschickt!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Lizenz" @@ -5323,19 +5296,19 @@ msgstr "Abonnenten" msgid "All subscribers" msgstr "Alle Abonnenten" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, 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: Page title showing tagged notices in one user's timeline. #. 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 "Von „%1$s“ mit „%2$s“ getaggte Nachrichten, Seite %3$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5377,7 +5350,7 @@ msgstr "Feed der Nachrichten von %s (Atom)" msgid "FOAF for %s" msgstr "FOAF von %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5391,7 +5364,7 @@ msgstr "" "In letzter Zeit irgendwas Interessantes erlebt? Du hast noch nichts " "geschrieben, jetzt wäre doch ein guter Zeitpunkt los zu legen :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5401,7 +5374,7 @@ msgstr "" "Du kannst %1$s in seinem Profil einen Stups geben oder [ihm etwas posten](%%%" "%action.newnotice%%%%?status_textarea=%s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5416,7 +5389,7 @@ msgstr "" "um **%s**'s und vielen anderen zu folgen! ([Mehr Informationen](%%%%doc.help%" "%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5982,7 +5955,6 @@ msgid "Subscription feed for %s (Atom)" msgstr "Feed der Nachrichten von %s (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" msgstr "IM" @@ -6349,7 +6321,6 @@ msgid "Plugins" msgstr "Erweiterungen" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Name" msgstr "Name" @@ -6367,7 +6338,6 @@ msgid "Author(s)" msgstr "Autor(en)" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" msgstr "Beschreibung" @@ -6791,7 +6761,6 @@ msgid "Edit profile settings." msgstr "Profil-Einstellungen ändern" #. TRANS: Link text for link on user profile. -#, fuzzy msgctxt "BUTTON" msgid "Edit" msgstr "Bearbeiten" @@ -7295,7 +7264,6 @@ msgstr "Akzeptieren" #. 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" msgstr "Ablehnen" @@ -8595,7 +8563,7 @@ msgstr "" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9074,11 +9042,6 @@ msgstr "Bearbeiten" msgid "Edit %s list by you." msgstr "Gruppe %s bearbeiten" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Tag" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -10066,193 +10029,13 @@ msgstr "Ungültige E-Mail-Adresse." msgid "Could not find a valid profile for \"%s\"." msgstr "Konnte Profil nicht speichern." -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Du kannst kein entfernt liegendes OMB-0.1-Profil der Liste hinzufügen." - -#~ msgid "Not expecting this response!" -#~ msgstr "Unerwartete Antwort!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Aufgeführter Benutzer existiert nicht." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Du kannst ein lokales Abonnement erstellen!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." - -#~ msgid "You are not authorized." -#~ msgstr "Du bist nicht autorisiert." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Konnte Anfrage-Token nicht in Zugriffs-Token umwandeln." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Service nutzt unbekannte OMB-Protokollversion." - -#~ msgid "Error updating remote profile." -#~ msgstr "Fehler beim Aktualisieren des entfernten Profils." - -#~ msgid "Invalid notice content." -#~ msgstr "Ungültiger Nachrichteninhalt." - -#, fuzzy #~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "Die Nachrichtenlizenz „%1$s“ ist nicht kompatibel mit der Lizenz der " -#~ "Seite „%2$s“." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Für ein Abonnement kannst du dich entweder [anmelden](%%action.login%%) " -#~ "oder ein neues Konto [registrieren](%%action.register%%). Wenn du schon " -#~ "ein Konto auf einer [kompatiblen Mikrobloggingsite](%%doc.openmublog%%) " -#~ "hast, dann gib deine Profil-URL unten an." - -#~ msgid "Remote subscribe" -#~ msgstr "Entferntes Abonnement" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Abonniere diesen Benutzer" - -#~ msgid "User nickname" -#~ msgstr "Benutzername" +#~ "Ein wichtiger Fehler ist aufgetreten, der wahrscheinlich mit dem E-Mail-" +#~ "Setup zu tun hat. Prüfe die Logdateien für weitere Informationen." #, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Name des Benutzers, dem du folgen möchtest" - -#~ msgid "Profile URL" -#~ msgstr "Profil-URL" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "Profil-URL bei einem anderen kompatiblen Mikrobloggingdienst" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Ungültige Profil-URL (falsches Format)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Ungültige Profil-URL (kein YADIS-Dokument oder ungültige XRDS definiert)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Das ist ein lokales Profil! Zum Abonnieren anmelden." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Konnte keinen Anfrage-Token bekommen." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "Du hast dieses OMB 0.1 Profil nicht abonniert." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Abonnement bestätigen" - -#, fuzzy -#~ 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 "" -#~ "Bitte überprüfe diese Angaben, um sicher zu gehen, dass du die " -#~ "Nachrichten dieses Benutzers abonnieren möchtest. Wenn du das nicht " -#~ "wolltest, klicke auf „Abbrechen“." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Abonnement ablehnen" - -#~ msgid "No authorization request!" -#~ msgstr "Keine Bestätigungsanfrage!" - -#~ msgid "Subscription authorized" -#~ msgstr "Abonnement autorisiert" - -#~ 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 "" -#~ "Das Abonnement wurde bestätigt, aber es wurde keine Antwort-URL " -#~ "angegeben. Lies nochmal die Anweisungen auf der Seite wie Abonnements " -#~ "bestätigt werden. Dein Abonnement-Token ist:" - -#~ msgid "Subscription rejected" -#~ msgstr "Abonnement abgelehnt" - -#~ 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 "" -#~ "Das Abonnement wurde abgelehnt, aber es wurde keine Callback-URL " -#~ "zurückgegeben. Lies nochmal die Anweisungen der Seite, wie Abonnements " -#~ "vollständig abgelehnt werden. Dein Abonnement-Token ist:" - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "Eine Listener-URI „%s“ wurde hier nicht gefunden." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Die URI „%s“ für den Stream ist zu lang." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "Die URI „%s“ für den Stream ist ein lokaler Benutzer." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "Profiladresse „%s“ ist für einen lokalen Benutzer." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "Avataradresse „%s“ ist nicht gültig." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Konnte Avatar-URL nicht öffnen „%s“" - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Falscher Bildtyp für „%s“" - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Konnte OMB-Abonnement-Token nicht löschen." - -#~ msgid "Error inserting new profile." -#~ msgstr "Neues Profil konnte nicht angelegt werden." - -#~ msgid "Error inserting avatar." -#~ msgstr "Fehler beim Einfügen des Avatars." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Fehler beim Einfügen des entfernten Profils." - -#~ msgid "Duplicate notice." -#~ msgstr "Doppelte Nachricht." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Konnte neues Abonnement nicht eintragen." +#~ msgid "Tagged" +#~ msgstr "Tag" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index 767311b42c..cc4647f0c0 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:41+0000\n" -"Language-Team: British English \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:48+0000\n" +"Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -37,12 +37,6 @@ msgid "" "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 "" @@ -54,9 +48,8 @@ msgid "" msgstr "" #. TRANS: Error message displayed when trying to access a non-existing page. -#, fuzzy msgid "Unknown page" -msgstr "Unknown" +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. @@ -157,9 +150,8 @@ msgstr "No such profile." #. TRANS: Client error displayed trying to reference a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to reference a non-existing list. -#, fuzzy msgid "No such list." -msgstr "No such tag." +msgstr "" #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a username. @@ -3928,7 +3920,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " @@ -3961,7 +3953,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " @@ -4283,7 +4275,8 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Could not retrieve public stream." #. TRANS: Title for all public timeline pages but the first. @@ -4299,19 +4292,22 @@ msgstr "Public timeline" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Public Stream Feed (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Public Stream Feed (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Public Stream Feed (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Public Stream Feed (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4898,7 +4894,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5299,6 +5295,7 @@ msgstr "" "one!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "License" @@ -5318,19 +5315,19 @@ msgstr "Subscribers" msgid "All subscribers" msgstr "All subscribers" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Notices tagged with %1$s, page %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5372,7 +5369,7 @@ msgstr "Notice feed for %s (Atom)" msgid "FOAF for %s" msgstr "FOAF for %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "This is the timeline for %1$s but %2$s hasn't posted anything yet." @@ -5383,7 +5380,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5393,7 +5390,7 @@ msgstr "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5407,7 +5404,7 @@ msgstr "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8451,7 +8448,7 @@ msgstr "%s (@%s) sent a notice to your attention" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8895,11 +8892,6 @@ msgstr "Edit" msgid "Edit %s list by you." msgstr "Edit %s group" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Tag" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9873,165 +9865,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "Could not save profile." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action." - -#~ msgid "Not expecting this response!" -#~ msgstr "Not expecting this response!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "User being listened to does not exist." - -#~ msgid "You can use the local subscription!" -#~ msgstr "You can use the local subscription!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "That user has blocked you from subscribing." - -#~ msgid "You are not authorized." -#~ msgstr "You are not authorised." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Could not convert request token to access token." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Remote service uses unknown version of OMB protocol." - -#~ msgid "Error updating remote profile." -#~ msgstr "Error updating remote profile." - -#~ msgid "Invalid notice content." -#~ msgstr "Invalid notice content." - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." - -#~ msgid "Remote subscribe" -#~ msgstr "Remote subscribe" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Subscribe to a remote user" - -#~ msgid "User nickname" -#~ msgstr "User nickname" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Nickname of the user you want to follow" - -#~ msgid "Profile URL" -#~ msgstr "Profile URL" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "URL of your profile on another compatible microblogging service" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Invalid profile URL (bad format)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Not a valid profile URL (no YADIS document or invalid XRDS defined)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "That’s a local profile! Login to subscribe." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Couldn’t get a request token." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "You cannot subscribe to an OMB 0.1 remote profile with this action." - -#~ 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." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Authorise subscription" - -#, fuzzy -#~ 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 "" -#~ "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”." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Reject this subscription" - -#~ msgid "No authorization request!" -#~ msgstr "No authorisation request!" - -#~ msgid "Subscription authorized" -#~ msgstr "Subscription authorised" - -#~ 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 "" -#~ "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:" - -#~ msgid "Subscription rejected" -#~ msgstr "Subscription rejected" - -#~ 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 "" -#~ "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." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Source URL is too long." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "Avatar URL ‘%s’ is not valid." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Can’t read avatar URL ‘%s’." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Wrong image type for avatar URL ‘%s’." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Could not delete subscription OMB token." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Couldn't insert new subscription." +#~ msgid "Tagged" +#~ msgstr "Tag" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 2e0b22955c..c0cb0de05c 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Esperanto \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:50+0000\n" +"Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -38,12 +38,6 @@ msgid "" "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 "" @@ -3895,7 +3889,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** estas grupo de uzantoj ĉe %%%%*site.*name%%%%, [mikrobloga servo]" "(*http://estas.*wikipedia.*org/*wiki/*Microblogging) baze de ilaro de Libera " @@ -3928,7 +3922,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** estas grupo de uzantoj ĉe %%%%*site.*name%%%%, [mikrobloga servo]" "(*http://estas.*wikipedia.*org/*wiki/*Microblogging) baze de ilaro de Libera " @@ -4250,7 +4244,8 @@ msgid "Beyond the page limit (%s)." msgstr "Trans paĝolimo (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Malsukcesis ricevi publikan fluon" #. TRANS: Title for all public timeline pages but the first. @@ -4266,19 +4261,22 @@ msgstr "Publika tempstrio" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Publika fluo (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Publika fluo (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Publika fluo (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Publika fluo (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4866,7 +4864,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5262,6 +5260,7 @@ msgid "" msgstr "Kial ne [krei konton](%%action.register%%) kaj esti la unua afiŝanto!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "Listigita" @@ -5280,19 +5279,19 @@ msgstr "Abonantoj" msgid "All subscribers" msgstr "Ĉiuj abonantoj" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Avizoj etikeditaj per %1$s - paĝo %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5334,7 +5333,7 @@ msgstr "Avizofluo pri %1$s (Atom)" msgid "FOAF for %s" msgstr "Foramiko de %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Tie ĉi estus tempstrio de %1$s sed %2$s ankoraŭ afiŝis nenion." @@ -5346,7 +5345,7 @@ msgid "" msgstr "" "Ĉu okazas io interesa lastatempe? Vi ne afiŝis ion ajn, nun taŭgas komenci :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5356,7 +5355,7 @@ msgstr "" "Vi povas provi [puŝeti %1$s] aŭ [afiŝi ion al li](%%%%action.newnotice%%%%?" "status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5370,7 +5369,7 @@ msgstr "" "(http://status.net/). [Aniĝu](%%%%action.register%%%%) por sekvi avizojn de " "**%s** kaj multe pli! ([Pli](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8501,7 +8500,7 @@ msgstr "%s (@%s) afiŝis avizon al vi" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -8974,11 +8973,6 @@ msgstr "Redakti" msgid "Edit %s list by you." msgstr "Redakti %s grupon" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Etikedo" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9957,189 +9951,6 @@ msgstr "Retpoŝta adreso ne valida" msgid "Could not find a valid profile for \"%s\"." msgstr "Malsukcesis konservi la profilon." -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "Vi ne povas listigi OMB 0.1-an foran profilon per ĉi tiu ago." - -#~ msgid "Not expecting this response!" -#~ msgstr "Neatendita respondo!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Vizitata uzanto ne ekzistas." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Vi povas aboni loke!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Tiu uzanto abonblokis vin." - -#~ msgid "You are not authorized." -#~ msgstr "Vi ne estas rajtigita." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Malsukcesis interŝanĝi petĵetonon al atingoĵetono." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Fora servo uzas nekonatan version de OMB-protokolo." - -#~ msgid "Error updating remote profile." -#~ msgstr "Eraro je ĝisdatigo de fora profilo." - -#~ msgid "Invalid notice content." -#~ msgstr "Nevalida avizo-enhavo" - #, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "Aviza permesilo ‘%1$s’ ne konformas al reteja permesilo ‘%2$s’." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Por aboni, [ensalutu](%%action.login%%), aŭ [krei konton](%%action." -#~ "register%%). Se vi jam havas konton ĉe iu [kongrua mikroblogilo-retejo](%%" -#~ "doc.openmublog%%), entajpu vian profilan URL jene." - -#~ msgid "Remote subscribe" -#~ msgstr "Defore aboni" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Aboni foran uzanton" - -#~ msgid "User nickname" -#~ msgstr "Uzanta alinomo" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Alnomo de la uzanto, kiun vi volas aboni." - -#~ msgid "Profile URL" -#~ msgstr "Profila URL" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "URL de via profilo ĉe alia kongrua mikroblogilo-servo" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Nevalida profila URL (fuŝa formato)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Ne valida profila URL (ne estas YADIS-dokumento aŭ difiniĝas nevalida " -#~ "XRDS)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Tio estas loka profilo! Ensalutu por aboni." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Malsukcesis akiri pet-ĵetonon." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "Vi ne povas aboni foran OMB 0.1-an profilon per ĉi tiu ago." - -#~ 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." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Rajtigi abonon" - -#, fuzzy -#~ 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 "" -#~ "Bonvolu kontroli la detalojn por certigi ĉu vi deziras aboni la avizoj de " -#~ "ĉi tiu uzanto. Se ne simple alklaku “Rifuzi\"." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Rifuzi la abonon" - -#~ msgid "No authorization request!" -#~ msgstr "Ne bezonas permesado!" - -#~ msgid "Subscription authorized" -#~ msgstr "Abono permesiĝis" - -#, 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 "" -#~ "La abono permesiĝis, sed ne pasiĝis revoka URL. Legu gvidon de la retejo " -#~ "pro detaloj pri kiel rajtigi abonon. Via abono-ĵetono jenas:" - -#~ msgid "Subscription rejected" -#~ msgstr "Abono rifuziĝis" - -#, 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 "" -#~ "La abono rifuziĝis sed ne pasiĝis revoka URL. Legu gvidon de la retejo " -#~ "pro detaloj pri kiel rajtigi abonon. Via abono-ĵetono jenas:" - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "URL de aboninto ‘%s’ ne troviĝas tie ĉi." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "URL de abonito ‘%s’ tro longas." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "URL de abonito ‘%s’ estas de loka uzanto." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "Profila URL ‘%s’ estas de loka uzanto." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "Vizaĝbilda URL ‘%s' ne estas valida." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Malsukcesis legi vizaĝbildan URL ‘%s’." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Malĝusta bildotipo por vizaĝbilda URL ‘%s'." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Malsukcesis forigi abonan OMB-ĵetonon." - -#~ msgid "Error inserting new profile." -#~ msgstr "Eraris enmeti novan profilon" - -#~ msgid "Error inserting avatar." -#~ msgstr "Eraris enmeti novan vizaĝbildon." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Eraris enmeti foran profilon." - -#~ msgid "Duplicate notice." -#~ msgstr "Refoja avizo." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Eraris enmeti novan abonon." +#~ msgid "Tagged" +#~ msgstr "Etikedo" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 29e0823d51..67db7121a8 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:51+0000\n" +"Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -48,15 +48,6 @@ msgstr "" "el problema, pero puede contactar con ellos en %2$s para asegurarse. De lo " "contrario, espere unos minutos y vuelva a intentarlo." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Se ha producido un error importante, probablemente relacionado con la " -"configuración de correo electrónico. Compruebe los archivos de registro para " -"obtener más información." - #. TRANS: Error message. msgid "An error occurred." msgstr "Se ha producido un error." @@ -3900,7 +3891,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " "[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " @@ -3934,7 +3925,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio de " "[microblogueo](http://es.wikipedia.org/wiki/Microblogging) basado en la " @@ -4258,7 +4249,8 @@ msgid "Beyond the page limit (%s)." msgstr "Más allá del límite de páginas (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "No se pudo acceder a corriente pública." #. TRANS: Title for all public timeline pages but the first. @@ -4274,19 +4266,22 @@ msgstr "Línea temporal pública" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Canal público (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Canal público (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Canal público (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Canal público (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4888,7 +4883,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5293,6 +5288,7 @@ msgstr "" "la primera persona en publicar uno?" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Licencia" @@ -5313,19 +5309,19 @@ msgstr "Suscriptores" msgid "All subscribers" msgstr "Todos los suscriptores" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Mensajes etiquetados con %1$s, página %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5367,7 +5363,7 @@ msgstr "Canal de mensajes para %s (Atom)" msgid "FOAF for %s" msgstr "Amistades de amistades de %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Esta es la línea temporal de %1$s, pero %2$s aún no ha publicado nada." @@ -5380,7 +5376,7 @@ msgstr "" "¿Has visto algo interesante recientemente? Aún no has hecho ninguna " "publicación, así que este puede ser un buen momento para empezar :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5390,7 +5386,7 @@ msgstr "" "Puedes intentar darle un toque a %1$s o [publicar algo a su atención](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5405,7 +5401,7 @@ msgstr "" "register%%%%) para seguir los avisos de **%s** y de muchas personas más! " "([Más información](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8580,7 +8576,7 @@ msgstr "%1$s (@%2$s) ha enviado un aviso para tu atención" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9055,11 +9051,6 @@ msgstr "Editar" msgid "Edit %s list by you." msgstr "Editar grupo %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Etiqueta" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -10039,195 +10030,14 @@ msgstr "Correo electrónico no válido" msgid "Could not find a valid profile for \"%s\"." msgstr "No se pudo guardar el perfil." -#~ msgid "You cannot list 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." - -#~ msgid "Not expecting this response!" -#~ msgstr "¡Respuesta inesperada!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "El usuario al que quieres listar no existe." - -#~ msgid "You can use the local subscription!" -#~ msgstr "¡Puedes usar la suscripción local!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Ese usuario te ha bloqueado la suscripción." - -#~ msgid "You are not authorized." -#~ msgstr "No estás autorizado." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "No se pudo convertir el token de solicitud en token de acceso." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "" -#~ "El servicio remoto utiliza una versión desconocida del protocolo OMB." - -#~ msgid "Error updating remote profile." -#~ msgstr "Error al actualizar el perfil remoto." - -#~ msgid "Invalid notice content." -#~ msgstr "Contenido de mensaje inválido." - -#, fuzzy #~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "La licencia del mensaje %1$s’ es incompatible con la licencia del sitio ‘%" -#~ "2$s’." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Para suscribirte, puedes [iniciar una sesión](%%action.login%%), o " -#~ "[registrar](%%action.register%%) una cuenta nueva. Si ya tienes una en un " -#~ "[servicio de microblogueo compatible](%%doc.openmublog%%), escribe el URL " -#~ "de tu perfil debajo." - -#~ msgid "Remote subscribe" -#~ msgstr "Subscripción remota" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Suscribirse a un usuario remoto" - -#~ msgid "User nickname" -#~ msgstr "Usuario" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Usuario a quien quieres seguir" - -#~ msgid "Profile URL" -#~ msgstr "URL del perfil" +#~ "Se ha producido un error importante, probablemente relacionado con la " +#~ "configuración de correo electrónico. Compruebe los archivos de registro " +#~ "para obtener más información." #, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "El URL del perfil es inválido (formato incorrecto)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "No es un perfil válido URL (no se ha definido un documento YADIS o un " -#~ "XRDS inválido)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "¡Este es un perfil local! Ingresa para suscribirte" - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "No se pudo obtener un token de solicitud" - -#, fuzzy -#~ msgid "You cannot (un)list 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." - -#~ 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." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Autorizar la suscripción" - -#, fuzzy -#~ 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 "" -#~ "Por favor revisa estos detalles para asegurar que deseas suscribirte a " -#~ "los avisos de este usuario. Si no pediste suscribirte a los avisos de " -#~ "alguien, haz clic en \"Cancelar\"." - -#~ msgid "Reject this subscription." -#~ msgstr "Rechazar esta suscripción." - -#~ msgid "No authorization request!" -#~ msgstr "¡Ninguna petición de autorización!" - -#~ msgid "Subscription authorized" -#~ msgstr "Suscripción autorizada" - -#~ 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 "" -#~ "La suscripción ha sido autorizada, pero no se ha pasado un URL de " -#~ "retorno. Consulte con las instrucciones del sitio para obtener detalles " -#~ "acerca de cómo autorizar la suscripción. Tu token de suscripción es:" - -#~ msgid "Subscription rejected" -#~ msgstr "Suscripción rechazada" - -#~ 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 "" -#~ "!Se ha rechazado la suscripción, pero no se ha pasado un URL de retorno. " -#~ "Lee de nuevo las instrucciones para saber cómo rechazar la suscripción " -#~ "completamente." - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "No se ha encontrado aquí el URI del oyente ‘%s’." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "El URI ‘%s’ del receptor es muy largo." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "El URI ‘%s’ del receptor es un usuario local." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "El URL ‘%s’ de perfil es para un usuario local." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "La URL ‘%s’ de la imagen no es válida." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "No se puede leer la URL de la imagen ‘%s’." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Tipo de imagen incorrecto para la URL de imagen ‘%s’." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "No se pudo eliminar la ficha OMB de suscripción." - -#~ msgid "Error inserting new profile." -#~ msgstr "Error al insertar un nuevo perfil." - -#~ msgid "Error inserting avatar." -#~ msgstr "Error al insertar el avatar." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Error al insertar el perfil remoto." - -#~ msgid "Duplicate notice." -#~ msgstr "Mensaje duplicado." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "No se pudo insertar una nueva suscripción." +#~ msgid "Tagged" +#~ msgstr "Etiqueta" diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index b30d66b33d..9dab109cb7 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Basque \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:53+0000\n" +"Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-01 11:17:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -36,15 +36,6 @@ msgstr "" "nahi baduzu %2$s helbidean jar zaitezke harremanetan beraiekin. Bestela " "minutu batzuk itxaron eta saiatu berriro." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Errore garrantzitsua gertatu da, seguru asko posta elektronikoaren " -"konfigurazioari lotuta. Begiratu egunkari-fitxategietan informazio gehiago " -"jasotzeko." - #. TRANS: Error message. msgid "An error occurred." msgstr "Errorea gertatu da." @@ -3834,13 +3825,13 @@ msgstr "Joan" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Zerrenda hauek **%s** bidez sortzen dira. Zerrendekin antzeko jendea " "sailkatuko duzu %%site.name%% gunean, [StatusNet](http://status.net/) " @@ -3868,13 +3859,13 @@ msgstr "%1$s dagoen zerrendak, %2$d. orria" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Hauek **%s**(e)rako zerrendak dira. Zerrendekin antzeko jendea sailkatuko " "duzu %%site.name%% gunean, [StatusNet](http://status.net/) software librea " @@ -4194,7 +4185,8 @@ msgid "Beyond the page limit (%s)." msgstr "Orriaren muga gainditua (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Ezin izan da korronte publikoa eskuratu." #. TRANS: Title for all public timeline pages but the first. @@ -4210,19 +4202,22 @@ msgstr "Denbora-lerro publikoa" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Jario publikoa (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Korronte-jario publikoa (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Korronte-jario publikoa (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Jario publikoa (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4808,8 +4803,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Jarioa leheneratu egingo da. Itxaron minutu batzuk emaitzak jasotzeko." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Activity Streams formatuan igo " @@ -5209,6 +5205,7 @@ msgstr "" "jarraitzen hasi!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "Zerrendatuta" @@ -5227,19 +5224,19 @@ msgstr "Harpidetuak" msgid "All subscribers" msgstr "Harpidedun guztiak" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format msgid "Notices by %1$s tagged %2$s" msgstr "%1$s(r)en oharrak %2$s etiketarekin" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%1$s(r)en oharrak %2$s etiketarekin, %3$d. orria" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format msgid "Notices by %1$s, page %2$d" @@ -5281,7 +5278,7 @@ msgstr "%1$s(r)en ohar-jarioa (Atom)" msgid "FOAF for %s" msgstr "%s(r)en FOAF" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5295,7 +5292,7 @@ msgstr "" "Zer berri? Oraindik ez duzu oharrik argitaratu, hasteko momentu ona izan " "daiteke :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5305,7 +5302,7 @@ msgstr "" "%1$s zirikatu dezakezu edo [zerbait idatz diezaiokezu](%%%%action.newnotice%%" "%%?status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5320,7 +5317,7 @@ msgstr "" "n oharrak jarraitzeko eta gauza gehiagotarako! ([Irakurri gehiago](%%%%doc." "help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8368,7 +8365,7 @@ msgstr "%1$s(e)k (@%2$s) ohar bat bidali dizu" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8814,10 +8811,6 @@ msgstr "Aldatu" msgid "Edit %s list by you." msgstr "Edittau zure %s zerrenda." -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "Etiketatuta" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "Editatu zerrenda ezarpenak." @@ -9745,176 +9738,13 @@ msgstr "Ezin izan da baliozko webfinger-helbidea aurkitu." msgid "Could not find a valid profile for \"%s\"." msgstr "Ezin izan da baliozko profilik aurkitu \"%s\"(e)rako." -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "Ekintza honekin ezin duzu urruneko OMB 0.1 profil bat zerrendatu." - -#~ msgid "Not expecting this response!" -#~ msgstr "Ez zen erantzun hau espero!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Jarraitu nahi den erabiltzailea ez da existitzen." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Harpidetza lokala erabil dezakezu!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Erabiltzaile horrek harpidetza blokeatu dizu." - -#~ msgid "You are not authorized." -#~ msgstr "Ez daukazu baimenik." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Ezin izan da eskaera-tokena atzipen-token bihurtu." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "" -#~ "Urruneko zerbitzuak OMB protokoloaren bertsio ezezaguna erabiltzen du." - -#~ msgid "Error updating remote profile." -#~ msgstr "Errorea urruneko profila eguneratzean." - -#~ msgid "Invalid notice content." -#~ msgstr "Eduki baliogabea oharrean." - #~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "\"%1$s\" oharraren lizentzia ez da gunearen \"%2$s\" lizentziarekin " -#~ "bateragarria." +#~ "Errore garrantzitsua gertatu da, seguru asko posta elektronikoaren " +#~ "konfigurazioari lotuta. Begiratu egunkari-fitxategietan informazio " +#~ "gehiago jasotzeko." -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Harpidetzeko [hasi saioa](%%action.login%%) dezakezu, edo kontu berri " -#~ "bat [erregistratu](%%action.register%%). Dagoeneko beste kontu bat baduzu " -#~ "[bateragarria den mikroblogintza-gune](%%doc.openmublog%%) batean, sartu " -#~ "zure profilaren URLa azpian." - -#~ msgid "Remote subscribe" -#~ msgstr "Urruneko harpidetza" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Harpidetu urruneko erabiltzaile batera" - -#~ msgid "User nickname" -#~ msgstr "Erabiltzailearen ezizena" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Jarraitu nahi duzun erabiltzailearen ezizena." - -#~ msgid "Profile URL" -#~ msgstr "Profilaren URLa" - -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "Zure profilaren URLa mikroblogintza-zerbitzu bateragarri batean." - -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Profilaren URL baliogabea (formatu okerra)." - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Profilaren URL baliogabea (ez da YADIS dokumentua edo XRDS gaizki " -#~ "definitua)." - -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Profil lokala da hori! Hasi saioa harpidetzeko." - -#~ msgid "Could not get a request token." -#~ msgstr "Ezin izan da eskatutako tokena atzitu." - -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Ezin dezakezu urruneko OMB 0.1 profila zerrendatik kendu ekintza honekin." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "Ekintza honekin ezin duzu urruneko OMB 0.1 profil batera harpidetu." - -#~ msgid "" -#~ "Listenee stream license \"%1$s\" is not compatible with site license \"%2" -#~ "$s\"." -#~ msgstr "" -#~ "Korronte-jasotzailearen \"%1$s\" lizentzia ez da bateragarria gune honen " -#~ "\"%2$s\" lizentziarekin." - -#~ msgid "Authorize subscription" -#~ msgstr "Baimendu harpidetzea" - -#~ 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 "" -#~ "Erabiltzaile honen oharretara harpidetu nahi duzula baieztatzeko, mesedez " -#~ "egiaztatu xehetasun hauek. Ez baduzu inoren oharretara harpidetzeko " -#~ "eskatu, sakatu \"Uko egin\"." - -#~ msgid "Reject this subscription." -#~ msgstr "Harpidetzari uko egin." - -#~ msgid "No authorization request!" -#~ msgstr "Ez dago baimen eskaerarik!" - -#~ msgid "Subscription authorized" -#~ msgstr "Harpidetza baimendua" - -#~ 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 "" -#~ "Harpidetza baimendu da, baina ez da atzeradeirako URLrik pasatu. Begiratu " -#~ "gunearen argibideak harpidetza nola baimen daitekeen jakiteko. Zure " -#~ "harpidetza-token-a hau da:" - -#~ msgid "Subscription rejected" -#~ msgstr "Harpidetzari uko egin saio" - -#~ 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 "" -#~ "Harpidetza ukatu da, baina ez da atzeradeirako URLrik pasatu. Begiratu " -#~ "gunearen argibideak harpidetza guztiz nola uka daitekeen jakiteko." - -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "Entzulearen \"%s\" URIa ez da hemen aurkitu." - -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Entzulearen \"%s\" URIa luzeegia da." - -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "Entzulearen \"%s\" URIa erabiltzaile lokala da." - -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "Profilaren \"%s\" URLa erabiltzaile lokal batena da." - -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "Avatarraren \"%s\" URLa ez da baliozkoa." - -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Ezin izan da abatarraren \"%s\" URL helbidea irakurri." - -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Irudi mota okerra abatarraren \"%s\" URL helbidean." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Ezin izan da harpidetzaren OMB tokena ezabatu." - -#~ msgid "Error inserting new profile." -#~ msgstr "Errorea profil berria txertatzean." - -#~ msgid "Error inserting avatar." -#~ msgstr "Errorea avatarra txertatzean." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Errorea urruneko profila txertatzean." - -#~ msgid "Duplicate notice." -#~ msgstr "Bikoiztutako oharra." - -#~ msgid "Could not insert new subscription." -#~ msgstr "Ezin izan da harpidetza berria gehitu." +#~ msgid "Tagged" +#~ msgstr "Etiketatuta" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index f600fd8fe2..dbadd68c98 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -19,19 +19,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:48+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" -"Language-Team: Persian \n" +"Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-07-01 11:17:02+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -42,12 +42,6 @@ msgid "" "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 "" @@ -2684,7 +2678,7 @@ msgid "" "Separate the terms by spaces; they must be 3 characters or more." msgstr "" "برای جست‌وجوی گروه‌ها در %%site.name%% از نام، مکان یا توصیف‌شان استفاده کنید. " -"عبارت‌ها را با فاصله جدا کنید؛ آن‌ها باید ۳ نویسه یا بیش‌تر باشند." +"عبارت‌ها را با فاصله جدا کنید؛ آن‌ها باید ۳ نویسه یا بیشتر باشند." #. TRANS: Title for page where groups can be searched. msgid "Group search" @@ -2762,7 +2756,7 @@ msgid "" "with further instructions. (Did you add %2$s to your buddy list?)" msgstr "" "منتظر تایید این نشانی هستیم. لطفا Jabber/Gtalk خود را برای دریافت توضیحات " -"بیش‌تر بررسی کنید. (آیا %s را به فهرست خود اضافه کرده اید؟) " +"بیشتر بررسی کنید. (آیا %s را به فهرست خود اضافه کرده اید؟)" #. TRANS: Field label for IM address. msgid "IM address" @@ -3929,7 +3923,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** یک گروه کاربری در %%%%site.name%%%%، یک سرویس [میکروبلاگینگ](http://" "fa.wikipedia.org/wiki/%D9%85%DB%8C%DA%A9%D8%B1%D9%88%D8%A8%D9%84%D8%A7%DA%AF%" @@ -3963,7 +3957,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** یک گروه کاربری در %%%%site.name%%%%، یک سرویس [میکروبلاگینگ](http://" "fa.wikipedia.org/wiki/%D9%85%DB%8C%DA%A9%D8%B1%D9%88%D8%A8%D9%84%D8%A7%DA%AF%" @@ -4287,7 +4281,8 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "نمی‌توان جریان عمومی را دریافت کرد." #. TRANS: Title for all public timeline pages but the first. @@ -4303,19 +4298,22 @@ msgstr "خط‌زمانی عمومی" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "خوراک جریان عمومی (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "خوراک جریان عمومی (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "خوراک جریان عمومی (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "خوراک جریان عمومی (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4905,7 +4903,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5312,6 +5310,7 @@ msgstr "" "باشید که چیزی می‌فرستد!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "مجوز" @@ -5331,19 +5330,19 @@ msgstr "مشترک‌ها" msgid "All subscribers" msgstr "تمام مشترک‌ها" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5385,7 +5384,7 @@ msgstr "خوراک پیام‌های %s (Atom)" msgid "FOAF for %s" msgstr "FOAF برای %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "این خط‌زمانی %1$s است، اما %2$s تاکنون چیزی نفرستاده است." @@ -5398,7 +5397,7 @@ msgstr "" "اخیرا چیز جالب توجهی دیده‌اید؟ شما تاکنون پیامی نفرستاده‌اید، الان می‌تواند " "زمان خوبی برای شروع باشد :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5408,7 +5407,7 @@ msgstr "" "اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" "s) پیام می‌فرستد." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5423,7 +5422,7 @@ msgstr "" "،دارد. ]اکنون بپیوندید[(%%%%action.register%%%%) تا پیام‌های **%s** و بلکه " "بیش‌تر را دنبال کنید! (]بیش‌تر بخوانید[(%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8567,7 +8566,7 @@ msgstr "%s (@%s) به توجه شما یک پیام فرستاد" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9035,11 +9034,6 @@ msgstr "ویرایش" msgid "Edit %s list by you." msgstr "ویرایش گروه %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "برچسب" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -10013,158 +10007,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "نمی‌توان نمایه را ذخیره کرد." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "نمی‌توان با این کار مشترک یک نمایهٔ از راه دور OMB 0.1شد." - -#~ msgid "Not expecting this response!" -#~ msgstr "انتظار چنین واکنشی وجود نداشت!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "کاربری که دنبالش هستید وجود ندارد." - -#~ msgid "You can use the local subscription!" -#~ msgstr "شما می‌توانید از دنبال کردن محلی استفاده کنید!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "این کاربر شما را از دنبال کردن خودش منع کرده است." - -#~ msgid "You are not authorized." -#~ msgstr "شما شناسایی نشده اید." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "نمی‌توان نشانهٔ درخواست شما را به نشانهٔ دسترسی تبدیل کرد." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "خدمات مورد نظر از نسخهٔ نامفهومی از قرارداد OMB استفاده می‌کند." - -#~ msgid "Error updating remote profile." -#~ msgstr "خطا هنگام به‌هنگام‌سازی نمایهٔ از راه دور." - -#~ msgid "Invalid notice content." -#~ msgstr "محتوای پیام نامعتبر است." - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "برای اشتراک، شما می‌توانید ]وارد[(%%action.login%%) شوید، یا یک حساب جدید ]" -#~ "ثبت کنید[(%%action.register%%). اگر شما یک حساب در یک ]وب‌گاه میکروبلاگینگ " -#~ "سازگار[(%%doc.openmublog%%) دارید، نشانی نمایهٔ خود را در زیر وارد کنید." - -#~ msgid "Remote subscribe" -#~ msgstr "اشتراک از راه دور" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "اشتراک یک کاربر از راه دور" - -#~ msgid "User nickname" -#~ msgstr "نام کاربری کاربر" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "نام کاربری، کاربری که می خواهید او را دنبال کنید" - -#~ msgid "Profile URL" -#~ msgstr "نشانی نمایه" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکروبلاگینگ سازگار دیگری" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "نشانی اینترنتی نمایه نامعتبر است (فرمت نامناسب است)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "این یک نشانی نمایهٔ صحیح نیست (هیچ سند YADIS وجود ندارد و یا XRDS مشخص شده " -#~ "نامعتبر است)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "این یک نمایهٔ محلی است! برای اشتراک وارد شوید." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "نمی‌توان یک نشانهٔ درخواست را به‌دست آورد." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "نمی‌توان با این کار مشترک یک نمایهٔ از راه دور OMB 0.1شد." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "نمی‌توان با این کار مشترک یک نمایهٔ از راه دور OMB 0.1شد." - -#, fuzzy -#~ msgid "" -#~ "Listenee stream license \"%1$s\" is not compatible with site license \"%2" -#~ "$s\"." -#~ msgstr "مجوز پیام «%1$s» با مجوز وب‌گاه «%2$s» سازگار نیست." - -#~ msgid "Authorize subscription" -#~ msgstr "تصدیق اشتراک" - -#, fuzzy -#~ 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 "" -#~ "لطفا این جزئیات را برای اطمینان از این‌که می‌خواهید مشترک پیام‌های این کاربر " -#~ "شوید، بررسی کنید. اگر شما درخواست اشتراک پیام‌های کسی را نداده‌اید، روی «رد " -#~ "کردن» کلیک کنید." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "رد کردن این اشتراک" - -#~ msgid "No authorization request!" -#~ msgstr "هیچ درخواست اجازه‌ای وجود ندارد!" - -#~ msgid "Subscription authorized" -#~ msgstr "اشتراک تصدیق شد" - -#~ msgid "Subscription rejected" -#~ msgstr "اشتراک پذیرفته نشد" - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "نشانی تصویر چهره «%s» معتبر نیست." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "نشانی تصویر چهره «%s» معتبر نیست." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "نشانی اینترنتی نمایهٔ «%s» برای یک کاربر محلی است." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "نشانی تصویر چهره «%s» معتبر نیست." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "نمی‌توان نشانی اینترنتی چهره را خواند«%s»." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "نوع تصویر برای نشانی اینترنتی چهره نادرست است «%s»." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "نمی‌توان اشتراک را ذخیره کرد." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "نمی‌توان اشتراک تازه‌ای افزود." +#~ msgid "Tagged" +#~ msgstr "برچسب" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 68a45ed918..5db1b39a5a 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:49+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:56+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, fuzzy, php-format @@ -43,14 +43,6 @@ msgstr "" "varmuuden vuoksi yhteyttä osoitteella %2$s. Muussa tapauksessa odota muutama " "minuutti ja yritä uudelleen." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Tapahtui kriittinen virhe todennäköisesti liittyen sähköpostiasetuksiin. " -"Tarkista logitiedostot saadaksesi lisätietoja." - #. TRANS: Error message. msgid "An error occurred." msgstr "Tapahtui virhe." @@ -3869,7 +3861,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" @@ -3902,7 +3894,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" @@ -4227,7 +4219,8 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Julkista päivitysvirtaa ei saatu." #. TRANS: Title for all public timeline pages but the first. @@ -4243,19 +4236,22 @@ msgstr "Julkinen aikajana" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Julkinen syöte (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Julkinen syöte (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Julkisen Aikajanan Syöte (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Julkinen syöte (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4845,7 +4841,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5239,6 +5235,7 @@ msgstr "" "newnotice%%%%?status_textarea=%s)!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Lisenssi" @@ -5258,19 +5255,19 @@ msgstr "Tilaajat" msgid "All subscribers" msgstr "Kaikki tilaajat" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Päivitykset joilla on tagi %s" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5312,7 +5309,7 @@ msgstr "Syöte ryhmän %s päivityksille (Atom)" msgid "FOAF for %s" msgstr "Käyttäjän %s lähetetyt viestit" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5325,7 +5322,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, fuzzy, php-format msgid "" @@ -5335,7 +5332,7 @@ msgstr "" "Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." "newnotice%%%%?status_textarea=%s)!" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5345,7 +5342,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, fuzzy, php-format msgid "" @@ -8399,7 +8396,7 @@ msgstr "" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8842,10 +8839,6 @@ msgstr "Muokkaa" msgid "Edit %s list by you." msgstr "Muokkaa omaa listaa %s." -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "Tagatty" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "Muokkaa listan asetuksia." @@ -9805,154 +9798,12 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." msgid "Could not find a valid profile for \"%s\"." msgstr "Profiilin tallennus epäonnistui." -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "Et voi pyytää OMB 0.1 -etäprofiilia tällä toiminnolla." - -#~ msgid "Not expecting this response!" -#~ msgstr "Odottamaton vastaus saatu!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Seurattua käyttäjää ei ole olemassa." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Voit käyttää paikallista tilausta!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." - -#~ msgid "You are not authorized." -#~ msgstr "Sinulla ei ole valtuutusta tähän." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Ei saatu request tokenia." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Etäpalvelu käyttää tuntematonta OMB-protokollan versiota." - -#~ msgid "Error updating remote profile." -#~ msgstr "Virhe tapahtui päivitettäessä etäprofiilia." - -#~ msgid "Invalid notice content." -#~ msgstr "Koko ei kelpaa." - #~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "Tilataksesi päivitykset, voit [kirjautua sisään](%%action.login%%), tai " -#~ "[rekisteröidä](%%action.register%%) uuden käyttäjätunnuksen. Jos sinulla " -#~ "on jo käyttäjätunnus jossain [yhteensopivassa mikroblogauspalvelussa](%%" -#~ "doc.openmublog%%), syötä profiilisi URL-osoite alla olevaan kenttään." +#~ "Tapahtui kriittinen virhe todennäköisesti liittyen sähköpostiasetuksiin. " +#~ "Tarkista logitiedostot saadaksesi lisätietoja." -#~ msgid "Remote subscribe" -#~ msgstr "Etätilaus" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Tilaa tämä etäkäyttäjä" - -#~ msgid "User nickname" -#~ msgstr "Käyttäjätunnus" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Käyttäjän, jota haluat seurata, käyttäjätunnus" - -#~ msgid "Profile URL" -#~ msgstr "Profiilin URL" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "" -#~ "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Profiilin URL-osoite '%s' ei kelpaa (virheellinen muoto)." - -#, fuzzy -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Tuo ei ole kelvollinen profiilin verkko-osoite (YADIS dokumenttia ei " -#~ "löytynyt)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "" -#~ "Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata " -#~ "päivitykset." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Ei saatu request tokenia." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "Et ole tilannut tämän käyttäjän päivityksiä." - -#, fuzzy -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "Et ole tilannut tämän käyttäjän päivityksiä." - -#~ msgid "Authorize subscription" -#~ msgstr "Valtuuta tilaus" - -#, fuzzy -#~ 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 "" -#~ "Tarkista nämä tiedot varmistaaksesi, että haluat tilata tämän käyttäjän " -#~ "päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän " -#~ "päivityksiä, paina \"Peruuta\"." - -#~ msgid "Reject this subscription." -#~ msgstr "Hylkää tämä tilaus." - -#~ msgid "No authorization request!" -#~ msgstr "Ei valtuutuspyyntöä!" - -#~ msgid "Subscription authorized" -#~ msgstr "Tilaus sallittu" - -#~ 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 "" -#~ "Päivityksen tilaus on hyväksytty, mutta callback-osoitetta palveluun ei " -#~ "ole saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " -#~ "Tilauskoodisi on:" - -#~ msgid "Subscription rejected" -#~ msgstr "Tilaus hylätty" - -#~ 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 "" -#~ "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " -#~ "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään " -#~ "kokonaan." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "Kotisivun verkko-osoite ei ole toimiva." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Kuvan URL-osoitetta '%s' ei voi avata." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Kuvan '%s' tyyppi on väärä" - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Tilausta ei onnistuttu tallentamaan." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Ei voitu lisätä uutta tilausta." +#~ msgid "Tagged" +#~ msgstr "Tagatty" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 8bffd92dea..e9624f7a00 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -29,17 +29,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:58+0000\n" +"Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -54,14 +54,6 @@ msgstr "" "au courant du problème, mais vous pouvez les contacter à l'adresse %2$s pour " "être sûr. Sinon, attendez quelques minutes et essayez à nouveau." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Une erreur importante s'est produite, probablement liées à la configuration " -"du courriel. Vérifiez les fichiers journaux pour plus d'infos." - #. TRANS: Error message. msgid "An error occurred." msgstr "Une erreur est survenue" @@ -339,10 +331,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Invitations" +msgstr "Envoyer des invitations" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -467,13 +458,12 @@ msgstr "Le blocage de l’utilisateur a échoué." msgid "Unblock user failed." msgstr "Le déblocage de l’utilisateur a échoué." -#, fuzzy msgid "no conversation id" -msgstr "Conversation" +msgstr "aucun ID de conversation" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "Aucune conversation avec l’ID %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -1803,9 +1793,8 @@ msgid "Notice" msgstr "Avis" #. 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 "Seuls les utilisateurs identifiés peuvent reprendre des avis." +msgstr "Seuls les utilisateurs connectés peuvent supprimer leur compte." #. TRANS: Client exception displayed trying to delete a user account without have the rights to do that. msgid "You cannot delete your account." @@ -3879,9 +3868,8 @@ msgid "You cannot view others' private lists" msgstr "Vous ne pouvez pas voir les listes privées des autres utilisateurs" #. TRANS: Mode selector label. -#, fuzzy msgid "Mode" -msgstr "Modérer" +msgstr "Mode" #. TRANS: Link text to show lists for user %s. #, fuzzy, php-format @@ -3924,7 +3912,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " "[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " @@ -3958,7 +3946,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** est un groupe d’utilisateurs sur %%%%site.name%%%%, un service de " "[micro-blogging](http://fr.wikipedia.org/wiki/Microblog) basé sur le " @@ -4068,10 +4056,9 @@ msgid "Unidentified field %s." msgstr "" #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "Rechercher sur le site" +msgstr "Résultats de la recherche" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." @@ -4195,9 +4182,8 @@ msgstr "" "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" +msgstr "Politique d’abonnement" #. TRANS: Dropdown field option for following policy. msgid "Let anyone follow me" @@ -4269,9 +4255,8 @@ msgstr "Préférences enregistrées." #. 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 "Créer un compte" +msgstr "Restaurer le compte" #. TRANS: Client error displayed when requesting a public timeline page beyond the page limit. #. TRANS: %s is the page limit. @@ -4280,7 +4265,8 @@ msgid "Beyond the page limit (%s)." msgstr "Au-delà de la limite de page (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Impossible de récupérer le flux public." #. TRANS: Title for all public timeline pages but the first. @@ -4296,19 +4282,22 @@ msgstr "Flux public" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Fil du flux public (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Fil du flux public (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Fil du flux public (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Fil du flux public (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4526,7 +4515,7 @@ msgstr "Mot de passe enregistré." #. TRANS: Title for field label for password reset form. msgid "6 or more characters, and do not forget it!" -msgstr "6 caractères ou plus, et ne l’oubliez pas!" +msgstr "6 caractères ou plus, et ne l’oubliez pas !" #. TRANS: Button text for password reset form. msgctxt "BUTTON" @@ -4736,9 +4725,8 @@ msgid "" msgstr "" #. TRANS: Title after removing a user from a list. -#, fuzzy msgid "Unlisted" -msgstr "Licence" +msgstr "Non listé" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." @@ -4903,7 +4891,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5010,7 +4998,6 @@ msgid "Application actions" msgstr "Actions de l’application" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "Modifier" @@ -5311,15 +5298,15 @@ msgstr "" "en poster un !" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Licence" #. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. -#, fuzzy msgid "Show all" -msgstr "Voir davantage" +msgstr "Tout afficher" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. @@ -5331,19 +5318,19 @@ msgstr "Abonnés" msgid "All subscribers" msgstr "Tous les abonnés" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, 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: Page title showing tagged notices in one user's timeline. #. 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 a marqué « %2$s » la page %3$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5385,7 +5372,7 @@ msgstr "Flux des avis de %s (Atom)" msgid "FOAF for %s" msgstr "ami d’un ami pour %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5399,7 +5386,7 @@ msgstr "" "Avez-vous vu quelque chose d’intéressant récemment ? Vous n’avez pas publié " "d’avis pour le moment, vous pourriez commencer maintenant :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5409,7 +5396,7 @@ msgstr "" "Vous pouvez essayer de faire un clin d’œil à %1$s ou de [poster quelque " "chose à son intention](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5424,7 +5411,7 @@ msgstr "" "register%%%%) pour suivre les avis de **%s** et bien plus ! ([En lire plus](%" "%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5451,7 +5438,6 @@ msgid "User is already silenced." msgstr "Cet utilisateur est déjà réduit au silence." #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "Site" @@ -5491,7 +5477,6 @@ msgid "Dupe limit must be one or more seconds." msgstr "La limite de doublon doit être d’une seconde ou plus." #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "General" msgstr "Général" @@ -5559,7 +5544,6 @@ msgstr "" "n'est pas disponible" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "Limites" @@ -5678,10 +5662,9 @@ msgid "SMS phone number" msgstr "Numéro de téléphone pour les SMS" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, fuzzy msgid "Phone number, no punctuation or spaces, with area code." msgstr "" -"Numéro de téléphone, sans ponctuation ni espaces, incluant le code régional" +"Numéro de téléphone, sans ponctuation ni espaces, avec le code régional." #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5766,12 +5749,10 @@ msgstr "" "écrivez-nous à %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "Aucun code entré" +msgstr "Aucun code entré." #. TRANS: Title for admin panel to configure snapshots. -#, fuzzy msgctxt "TITLE" msgid "Snapshots" msgstr "Instantanés" @@ -5793,7 +5774,6 @@ 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" @@ -6067,10 +6047,9 @@ msgid "List user" msgstr "Limites" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "Limites" +msgstr "Listes" #. TRANS: Field title on list form. #, fuzzy @@ -6216,7 +6195,6 @@ 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" @@ -6760,9 +6738,9 @@ msgstr "Impossible d’enregistrer les informations du groupe local." #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. -#, fuzzy, php-format +#, php-format msgid "Cannot locate account %s." -msgstr "Vous ne pouvez pas supprimer des utilisateurs." +msgstr "Impossible de localiser le compte %s." #. TRANS: Exception thrown when a service document could not be located account move. #. TRANS: %s is the remote site. @@ -6786,9 +6764,8 @@ msgid "User deletion in progress..." msgstr "Suppression de l'utilisateur en cours..." #. TRANS: Link title for link on user profile. -#, fuzzy msgid "Edit profile settings." -msgstr "Modifier les paramètres du profil" +msgstr "Modifier les paramètres du profil." #. TRANS: Link text for link on user profile. msgctxt "BUTTON" @@ -6846,7 +6823,6 @@ msgid "Show more" msgstr "Voir davantage" #. TRANS: Inline reply form submit button: submits a reply comment. -#, fuzzy msgctxt "BUTTON" msgid "Reply" msgstr "Répondre" @@ -6934,9 +6910,9 @@ msgid "Expecting a root feed element but got a whole XML document." msgstr "Attendait un élément racine mais a reçu tout un document XML." #. TRANS: Client exception thrown when using an unknown verb for the activity importer. -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Langue « %s » inconnue." +msgstr "Verbe inconnu : « %s »." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. msgid "Cannot force subscription for untrusted user." @@ -6991,10 +6967,10 @@ msgstr "Utilisateur non trouvé." #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. #. TRANS: Exception thrown when post to collection fails with a status that is not handled. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. -#, fuzzy, php-format +#, php-format msgctxt "URLSTATUSREASON" msgid "%1$s %2$s %3$s" -msgstr "%1$s - %2$s" +msgstr "%1$s %2$s %3$s" #. TRANS: Client exception thrown when there is no source attribute. msgid "Can't handle remote content yet." @@ -7106,7 +7082,6 @@ msgid "Snapshots configuration" msgstr "Configuration des instantanés" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "Instantanés" @@ -7346,10 +7321,9 @@ msgid "Cancel join request" msgstr "Annuler la requête d’adhésion" #. TRANS: Button text for form action to cancel a subscription request. -#, fuzzy msgctxt "BUTTON" msgid "Cancel subscription request" -msgstr "Tous les abonnements" +msgstr "Annuler la requête d’abonnement" #. TRANS: Title for command results. msgid "Command results" @@ -7694,7 +7668,7 @@ msgstr "Impossible de désactiver les avertissements." #. TRANS: Help message for IM/SMS command "help". msgctxt "COMMANDHELP" msgid "show this help" -msgstr "" +msgstr "afficher cette aide" #. TRANS: Help message for IM/SMS command "follow ". #, fuzzy @@ -8277,7 +8251,6 @@ msgid "Send invitations." msgstr "Invitations" #. TRANS: Button text for joining a group. -#, fuzzy msgctxt "BUTTON" msgid "Join" msgstr "Rejoindre" @@ -8592,7 +8565,7 @@ msgstr "%1$s (@%2$s) a envoyé un avis à votre attention" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9053,7 +9026,6 @@ msgid "Subscribers to %1$s list by %2$s." msgstr "Abonné à %s." #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" msgstr "Modifier" @@ -9064,11 +9036,6 @@ msgstr "Modifier" msgid "Edit %s list by you." msgstr "Modifier le groupe %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Marque" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9173,7 +9140,6 @@ msgstr "Abonnements de %s" #. 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" @@ -9199,10 +9165,9 @@ msgid "User" msgstr "Utilisateur" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" -msgstr "Message" +msgstr "Messages" #. TRANS: Menu item title in personal group navigation menu. msgid "Your incoming messages" @@ -9457,7 +9422,6 @@ msgid "Privacy" msgstr "Confidentialité" #. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license. -#, fuzzy msgctxt "MENU" msgid "Source" msgstr "Source" @@ -9469,7 +9433,6 @@ 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 "Contact" @@ -9666,9 +9629,8 @@ msgid "Subscribe to this user" msgstr "S’abonner à cet utilisateur" #. TRANS: Button title to subscribe to a user. -#, fuzzy msgid "Subscribe to this user." -msgstr "S’abonner à cet utilisateur" +msgstr "S’abonner à cet utilisateur." #. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" @@ -9679,7 +9641,6 @@ 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" @@ -9838,9 +9799,8 @@ msgid "Search in" msgstr "Rechercher sur le site" #. TRANS: Dropdown field title. -#, fuzzy msgid "Choose a field to search." -msgstr "Choissez une marque pour réduire la liste" +msgstr "Choisissez un champ pour la recherche." #. TRANS: Form legend. #. TRANS: %1$s is a nickname, $2$s is a list. @@ -10037,199 +9997,14 @@ msgstr "Adresse courriel invalide." msgid "Could not find a valid profile for \"%s\"." msgstr "Impossible d’enregistrer le profil." -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Vous ne pouvez pas lister à un profil OMB 0.1 distant avec cette action." - -#~ msgid "Not expecting this response!" -#~ msgstr "Réponse inattendue !" - -#~ msgid "User being listened to does not exist." -#~ msgstr "L’utilisateur suivi n’existe pas." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Vous pouvez utiliser l’abonnement local." - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Cet utilisateur vous a empêché de vous inscrire." - -#~ msgid "You are not authorized." -#~ msgstr "Vous n’êtes pas autorisé." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Impossible de convertir le jeton de requête en jeton d’accès." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Le service distant utilise une version inconnue du protocole OMB." - -#~ msgid "Error updating remote profile." -#~ msgstr "Erreur lors de la mise à jour du profil distant." - -#~ msgid "Invalid notice content." -#~ msgstr "Contenu de l’avis invalide." - -#, fuzzy #~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "La licence des avis « %1$s » n’est pas compatible avec la licence du site « " -#~ "%2$s »." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Pour vous abonner, vous devez [ouvrir une session](%%action.login%%), ou " -#~ "[créer un nouveau compte](%%action.register%%). Si vous avez déjà un " -#~ "compte sur un [site de micro-blogging compatible](%%doc.openmublog%%), " -#~ "entrez l’URL de votre profil ci-dessous." - -#~ msgid "Remote subscribe" -#~ msgstr "Abonnement à distance" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "S’abonner à un utilisateur distant" - -#~ msgid "User nickname" -#~ msgstr "Pseudo de l’utilisateur" +#~ "Une erreur importante s'est produite, probablement liées à la " +#~ "configuration du courriel. Vérifiez les fichiers journaux pour plus " +#~ "d'infos." #, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Pseudo de l’utilisateur que vous voulez suivre" - -#~ msgid "Profile URL" -#~ msgstr "URL du profil" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "" -#~ "URL de votre profil sur un autre service de micro-blogging compatible" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "URL du profil invalide (mauvais format)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "URL de profil invalide (aucun document YADIS ou définition XRDS invalide)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Ce profil est local ! Connectez-vous pour vous abonner." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Impossible d’obtenir un jeton de requête." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Vous ne pouvez pas vous abonner à un profil OMB 0.1 distant par cette " -#~ "action." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Vous ne pouvez pas vous abonner à un profil OMB 0.1 distant par cette " -#~ "action." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Autoriser l’abonnement" - -#, fuzzy -#~ 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 "" -#~ "Veuillez vérifier ces détails pour vous assurer que vous souhaitez vous " -#~ "abonner aux avis de cet utilisateur. Si vous n’avez pas demandé à vous " -#~ "abonner aux avis de quelqu’un, cliquez « Rejeter »." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Rejeter cet abonnement" - -#~ msgid "No authorization request!" -#~ msgstr "Pas de requête d’autorisation !" - -#~ msgid "Subscription authorized" -#~ msgstr "Abonnement autorisé" - -#~ 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 "" -#~ "L’abonnement a été autorisé, mais aucune URL de rappel n’a pas été " -#~ "passée. Vérifiez les instructions du site pour savoir comment compléter " -#~ "l’autorisation de l’abonnement. Votre jeton d’abonnement est :" - -#~ msgid "Subscription rejected" -#~ msgstr "Abonnement refusé" - -#~ 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 "" -#~ "L’abonnement a été refusé, mais aucune URL de rappel n’a pas été passée. " -#~ "Vérifiez les instructions du site pour savoir comment refuser pleinement " -#~ "l’abonnement." - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "L’URI de l’auditeur ‘%s’ n’a pas été trouvée ici." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est trop longue." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "" -#~ "L’URI à laquelle vous vous êtes abonné(e) ‘%s’ est un utilisateur local." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "L’URL du profil ‘%s’ est pour un utilisateur local." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "L’URL de l’avatar ‘%s’ n’est pas valide." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Impossible de lire l’URL de l’avatar « %s »." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Format d’image invalide pour l’URL de l’avatar « %s »." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Impossible de supprimer le jeton OMB de l'abonnement." - -#~ msgid "Error inserting new profile." -#~ msgstr "Erreur lors de l’insertion du nouveau profil." - -#~ msgid "Error inserting avatar." -#~ msgstr "Erreur lors de l’insertion de l’avatar." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Erreur lors de l’insertion du profil distant." - -#~ msgid "Duplicate notice." -#~ msgstr "Avis en doublon." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Impossible d’insérer un nouvel abonnement." +#~ msgid "Tagged" +#~ msgstr "Marque" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index 6b682a4bc1..b8775b8dec 100644 --- a/locale/fur/LC_MESSAGES/statusnet.po +++ b/locale/fur/LC_MESSAGES/statusnet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Friulian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:59+0000\n" +"Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-01 11:17:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -34,12 +34,6 @@ msgstr "" "dal probleme, ma tu ju puedis contatâ su %2$s par jessi sigûr. Se no, spiete " "cualchi minût par tornâ a provâ." -#. 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 "Al è sucedût un erôr." @@ -92,7 +86,7 @@ msgstr "Dome invîts" #. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations). msgid "Disable new registrations." -msgstr "" +msgstr "Disative lis gnovis regjistrazions." #. TRANS: Checkbox label for disabling new user registrations. msgid "Closed" @@ -309,10 +303,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Mande invîts." +msgstr "Invide" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -431,9 +424,8 @@ msgstr "" msgid "Unblock user failed." msgstr "" -#, fuzzy msgid "no conversation id" -msgstr "Tabaiade" +msgstr "nissun id de tabaiade" #, php-format msgid "No conversation with id %d" @@ -3272,7 +3264,7 @@ msgstr "" #. TRANS: %s is a path. #, php-format msgid "\"%s\" not found." -msgstr "" +msgstr "\"%s\" nol è stât cjatât." #. TRANS: Server error displayed in oEmbed action when notice not found. #. TRANS: %s is a notice. @@ -3757,13 +3749,13 @@ msgstr "Va" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Chestis a son lis listis creadis di **%s**. Lis listis a son un mût par meti " "in ordin personis similis su %%site.name%%, un servizi di [microblogging]" @@ -3791,13 +3783,13 @@ msgstr "Listis che a contegnin %1$s, pagjine %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Chestis a son lis listis par **%s**. Lis listis a son un mût par meti in " "ordin personis similis su %%site.name%%, un servizi di [microblogging]" @@ -4107,8 +4099,9 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." -msgstr "" +#, fuzzy +msgid "Could not retrieve public timeline." +msgstr "No si à podût creâ il preferît." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4122,19 +4115,23 @@ msgid "Public timeline" msgstr "Ativitât publiche" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Canâl de ativitât publiche (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Canâl de ativitât publiche (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Canâl de ativitât publiche (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Canâl de ativitât publiche (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4690,7 +4687,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5078,6 +5075,7 @@ msgstr "" "scomencis a seguî cheste ativitât!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "Metût te liste" @@ -5096,19 +5094,19 @@ msgstr "Sotscritôrs" msgid "All subscribers" msgstr "Ducj i sotscritôrs" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format msgid "Notices by %1$s tagged %2$s" msgstr "Avîs di %1$s cun etichete %2$s" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "Avîs di %1$s cun etichete %2$s, pagjine %3$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format msgid "Notices by %1$s, page %2$d" @@ -5150,7 +5148,7 @@ msgstr "Canâl dai avîs par %s (Atom)" msgid "FOAF for %s" msgstr "FOAF di %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Cheste e je la ativitât di %1$s, ma %1$s nol à ancjemò publicât nuie." @@ -5163,7 +5161,7 @@ msgstr "" "No âstu viodût nuie di interessant tai ultins timps? No tu âs publicât " "ancjemò nissun avîs, cumò al sarès un bon moment par scomençâ :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5173,7 +5171,7 @@ msgstr "" "Tu puedis provâ a pocâ %1$s o ben [mandâi un avîs](%%%%action.newnotice%%%%?" "status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5187,7 +5185,7 @@ msgstr "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -6179,9 +6177,8 @@ msgstr "" msgid "Could not create login token for %s" msgstr "" -#, fuzzy msgid "Cannot instantiate class " -msgstr "No si pues salvâ la gnove password." +msgstr "No si pues istanziâ la clas" #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." @@ -7754,9 +7751,8 @@ msgstr "Grups popolârs" msgid "Active groups" msgstr "Grups atîfs" -#, fuzzy msgid "See all" -msgstr "Mostre dut" +msgstr "Viôt dut" msgid "See all groups you belong to" msgstr "" @@ -7895,9 +7891,8 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Lasse" -#, fuzzy msgid "See all lists you have created" -msgstr "Lis aplicazions che tu âs regjistrât" +msgstr "Cjale dutis lis listis che tu âs creât" #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. @@ -8122,7 +8117,7 @@ msgstr "" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8347,7 +8342,7 @@ msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" msgid "More ▼" -msgstr "" +msgstr "Plui ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." @@ -8545,10 +8540,6 @@ msgstr "Cambie" msgid "Edit %s list by you." msgstr "Cambie la tô liste %s." -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "Etichetât" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "Cambie lis impuestazions de liste." @@ -9460,49 +9451,5 @@ msgstr "La direzion di pueste eletroniche no je valide." msgid "Could not find a valid profile for \"%s\"." msgstr "No si à podût cjatâ un profîl valit par \"%s\"," -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Chest utent ti à blocât e no tu puedis sotscrivilu." - -#~ msgid "You are not authorized." -#~ msgstr "No tu sês autorizât." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Par sotscriviti, tu puedis [jentrâ](%%action.login%%), o [regjistrâ](%%" -#~ "action.register%%) une gnove identitât. Se tu âs za une identitât suntun " -#~ "[sît di microblogging compatibil](%%doc.openmublog%%), inserìs ca sot la " -#~ "URL dal to profîl." - -#~ msgid "Remote subscribe" -#~ msgstr "Sotscrizion remote" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Sostscriviti a un utent remot" - -#~ msgid "User nickname" -#~ msgstr "Sorenon dal utent" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Sorenon dal utent che tu vuelis seguî." - -#~ msgid "Profile URL" -#~ msgstr "URL dal profîl" - -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "URL dal to profîl suntun altri servizi di microblogging compatibil." - -#~ msgid "Authorize subscription" -#~ msgstr "Autorize la sotscrizion" - -#~ msgid "Reject this subscription." -#~ msgstr "Refude la sotscrizion" - -#~ msgid "Subscription authorized" -#~ msgstr "Sotscrizion autorizade" - -#~ msgid "Subscription rejected" -#~ msgstr "Sotscrizion refudade" +#~ msgid "Tagged" +#~ msgstr "Etichetât" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 273cee0706..54e946fd6b 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:01+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -33,12 +33,6 @@ msgid "" "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 "Houbo un erro." @@ -3941,7 +3935,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** é un grupo de usuarios de %%%%site.name%%%%, un servizo de [mensaxes " "de blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " @@ -3974,7 +3968,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** é un grupo de usuarios de %%%%site.name%%%%, un servizo de [mensaxes " "de blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " @@ -4302,7 +4296,8 @@ msgid "Beyond the page limit (%s)." msgstr "Alén do límite da páxina (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Non se puido obter o fluxo público." #. TRANS: Title for all public timeline pages but the first. @@ -4318,19 +4313,22 @@ msgstr "Liña do tempo pública" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Fonte de novas no fluxo público (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Fonte de novas no fluxo público (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Fonte de novas no fluxo público (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Fonte de novas no fluxo público (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4934,7 +4932,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5341,6 +5339,7 @@ msgstr "" "publicar unha?" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Licenza" @@ -5361,19 +5360,19 @@ msgstr "Subscritores" msgid "All subscribers" msgstr "Todos os subscritores" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Notas etiquetadas con %1$s, páxina %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5415,7 +5414,7 @@ msgstr "Fonte de novas das notas para %s (Atom)" msgid "FOAF for %s" msgstr "Amigo dun amigo para %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Esta é a liña do tempo para %1$s pero %2$s aínda non publicou nada." @@ -5428,7 +5427,7 @@ msgstr "" "Viu algo interesante hoxe? Aínda non publicou ningunha nota, este sería un " "bo momento para comezar :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5438,7 +5437,7 @@ msgstr "" "Pode probar a facerlle un aceno a %1$s ou [publicar algo dirixido a el ou " "ela](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5453,7 +5452,7 @@ msgstr "" "[Únase agora](%%%%action.register%%%%) para seguir as notas de **%s** e de " "moita máis xente! ([Máis información](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8637,7 +8636,7 @@ msgstr "%s (@%s) enviou unha nota á súa atención" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9100,10 +9099,6 @@ msgstr "Modificar" msgid "Edit %s list by you." msgstr "Editar o grupo %s" -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "Etiquetado" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -10062,196 +10057,5 @@ msgstr "O enderezo de correo electrónico é incorrecto." msgid "Could not find a valid profile for \"%s\"." msgstr "Non se puido gardar o perfil." -#, fuzzy -#~ msgid "You cannot list 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." - -#~ msgid "Not expecting this response!" -#~ msgstr "Non se esperaba esta resposta!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Non existe o usuario ao que está seguindo." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Pode usar a subscrición local!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Ese usuario bloqueouno fronte á subscrición a el." - -#~ msgid "You are not authorized." -#~ msgstr "Non está autorizado." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Non se puido converter a ficha da solicitude nun pase." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "O servizo remoto utiliza unha versión descoñecida do protocolo OMB." - -#~ msgid "Error updating remote profile." -#~ msgstr "Houbo un erro ao actualizar o perfil remoto." - -#~ msgid "Invalid notice content." -#~ msgstr "O contido da nota é incorrecto." - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "" -#~ "A licenza \"%1$s\" da nota non é compatible coa licenza \"%2$s\" do sitio." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Para subscribirse, pode [identificarse](%%action.login%%) ou [rexistrar](%" -#~ "%action.register%%) unha conta nova. Se xa ten unha conta nun [sitio de " -#~ "mensaxes de blogue curtas compatible](%%doc.openmublog%%), introduza a " -#~ "continuación o URL do seu perfil." - -#~ msgid "Remote subscribe" -#~ msgstr "Subscribirse remotamente" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Subscribirse a un usuario remoto" - -#~ msgid "User nickname" -#~ msgstr "Alcume do usuario" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Alcume do usuario ao que quere seguir" - -#~ msgid "Profile URL" -#~ msgstr "URL do perfil" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "" -#~ "URL do seu perfil noutro servizo de mensaxes de blogue curtas compatible" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "O enderezo URL do perfil é incorrecto (formato erróneo)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Non é un URL de perfil correcto (non hai un documento YADIS ou definiuse " -#~ "un XRDS incorrecto)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Ese é un perfil local! Identifíquese para subscribirse." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Non se puido obter o pase solicitado." - -#, fuzzy -#~ msgid "You cannot (un)list 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." - -#~ 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." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Autorizar a subscrición" - -#, fuzzy -#~ 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 "" -#~ "Verifique estes detalles para certificar que quere subscribirse ás notas " -#~ "deste usuario. Se non pediu a subscrición ás notas de alguén, prema en " -#~ "\"Rexeitar\"." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Rexeitar esta subscrición" - -#~ msgid "No authorization request!" -#~ msgstr "Non se solicitou a autorización!" - -#~ msgid "Subscription authorized" -#~ msgstr "Autorizouse a subscrición" - -#, 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 "" -#~ "Autorizouse a subscrición, pero non se devolveu ningún URL. Bote unha " -#~ "ollada ás instrucións do sitio para saber máis sobre como autorizar a " -#~ "subscrición. O pase da súa subscrición é:" - -#~ msgid "Subscription rejected" -#~ msgstr "Rexeitouse a subscrición" - -#, 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 "" -#~ "Rexeitouse a subscrición, pero non se devolveu ningún URL. Bote unha " -#~ "ollada ás instrucións do sitio para obter máis información sobre como " -#~ "rexeitar completamente a subscrición." - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "Non se atopou o URI do seguidor, \"%s\", aquí." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "O URI do seguidor, \"%s\", é longo de máis." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "O URI do seguidor, \"%s\", é dun usuario local." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "O URL do perfil, \"%s\", pertence a un usuario local." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "O URL do avatar, \"%s\", é incorrecto." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Non se puido ler o URL do avatar, \"%s\"." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "O tipo de imaxe do URL do avatar, \"%s\", é incorrecto." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Non se puido borrar o pase de subscrición OMB." - -#~ msgid "Error inserting new profile." -#~ msgstr "Houbo un erro ao inserir o novo perfil." - -#~ msgid "Error inserting avatar." -#~ msgstr "Houbo un erro ao inserir o avatar." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Houbo un erro ao inserir o perfil remoto." - -#~ msgid "Duplicate notice." -#~ msgstr "Nota duplicada." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Non se puido inserir unha subscrición nova." +#~ msgid "Tagged" +#~ msgstr "Etiquetado" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 6c929ec00a..8f245ab6db 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:55+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:02+0000\n" +"Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -34,14 +34,6 @@ msgstr "" "מנהלי האתר כנראה יודעים על הבעיה הזאת, אבל אפשר ליצור אִתם קשר דרך %2$s כדי " "לוודא. אפשר להמתין מספר דקות ולנסות שוב." -#. 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 "אירעה שגיאה." @@ -247,9 +239,9 @@ msgstr "ציר הזמן בדף הבית של %s" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "הזנות עבור החברים של %s‏ (Atom)" +msgstr "הזנה עבור החברים של %s‏ (Activity Streams JSON)" #. TRANS: %s is user nickname. #, php-format @@ -310,10 +302,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "שליחת עדכון" +msgstr "שליחת הזמנה" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -434,13 +425,12 @@ msgstr "חסימת משתמש נכשלה." msgid "Unblock user failed." msgstr "הסרת החסימה ממשתמש נכשלה." -#, fuzzy msgid "no conversation id" -msgstr "שיחה" +msgstr "אין מזהה שיחה" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "אין שיחה עם מזהה %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -749,7 +739,7 @@ msgstr "" #. TRANS: Client error displayed trying to perform an action related to a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. msgid "List not found." -msgstr "" +msgstr "הרשימה לא נמצאה" #. TRANS: Client error displayed when trying to update another user's list. msgid "You cannot update lists that do not belong to you." @@ -760,7 +750,7 @@ msgstr "" #. TRANS: Client error displayed when an unknown error occurs in the list subscribers action. #. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list. msgid "An error occured." -msgstr "" +msgstr "אירעה שגיאה." #. TRANS: Client error displayed when trying to delete another user's list. msgid "You cannot delete lists that do not belong to you." @@ -788,7 +778,7 @@ msgstr "" #. TRANS: Client error displayed when trying to create a list without a name. msgid "A list must have a name." -msgstr "" +msgstr "לרשימה צריך להיות שם." #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." @@ -812,7 +802,7 @@ msgstr "" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. msgid "Invalid request token." -msgstr "" +msgstr "אסימון בקשה בלתי־תקין." #. TRANS: Client error given when an invalid request token was passed to the OAuth API. msgid "Request token already authorized." @@ -845,7 +835,7 @@ msgstr "" #. TRANS: Fieldset legend. msgid "Allow or deny access" -msgstr "" +msgstr "לאפשר או למנוע גישה." #. TRANS: User notification of external application requesting account access. #. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename. @@ -1507,7 +1497,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. msgid "Only logged-in users can backup their account." @@ -1608,7 +1598,7 @@ msgstr "לבטל חסימה של משתמש מקבוצה" #. TRANS: Button text for unblocking a user from a group. 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. @@ -1648,7 +1638,7 @@ msgstr "" #. TRANS: Title after unsubscribing from a group. msgctxt "TITLE" msgid "Unsubscribed" -msgstr "" +msgstr "המינוי בוטל" #. TRANS: Client error displayed when not providing a confirmation code in the contact address confirmation action. msgid "No confirmation code." @@ -1698,15 +1688,13 @@ msgstr "הכתובת \"%s\" אושרה עבור חשבונך." #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "הזנת עדכונים של %s‏ (Atom)" +msgstr "הזנת שיחות (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "הזנת עדכונים של %s‏ (RSS 2.0)" +msgstr "הזנת שיחות (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -1734,7 +1722,7 @@ msgstr "" #. TRANS: Confirmation that a user account has been deleted. msgid "Account deleted." -msgstr "" +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. @@ -2737,7 +2725,7 @@ msgstr "" #. TRANS: Client error displayed when trying to sent invites while they have been disabled. msgid "Invites have been disabled." -msgstr "" +msgstr "הזמנות כובו." #. TRANS: Client error displayed when trying to sent invites while not logged in. #. TRANS: %s is the StatusNet site name. @@ -2904,7 +2892,7 @@ msgstr "בעלים" #. TRANS: Field title in the license admin panel. msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "שם בעלי תוכן האתר (אם זמין)." #. TRANS: Field label in the license admin panel. msgid "License Title" @@ -3208,7 +3196,7 @@ msgstr "אינך משתמש ביישום ההוא" #. TRANS: %s is the application ID revoking access failed for. #, php-format msgid "Unable to revoke access for application: %s." -msgstr "" +msgstr "אין אפשרות לשלול גישה מיישום: %s." #. 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. @@ -3720,7 +3708,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists by a user when there are none. @@ -3749,7 +3737,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists a user was added to when there are none. @@ -4044,7 +4032,8 @@ msgid "Beyond the page limit (%s)." msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "אחזור זרם ציבורי נכשל." #. TRANS: Title for all public timeline pages but the first. @@ -4060,19 +4049,22 @@ msgstr "קו זמן ציבורי" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" -msgstr "הזנת זרם ציבורי (Atom)" +msgid "Public Timeline Feed (Activity Streams JSON)" +msgstr "הזנת זרם ציבורי (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "הזנת זרם ציבורי (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "הזנת זרם ציבורי (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "הזנת זרם ציבורי (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4485,9 +4477,9 @@ msgstr "תגובות למשתמש %1$s, דף %2$d" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Activity Streams JSON)" -msgstr "תגובת עבור %s" +msgstr "הזנת תגובות עבור %s‏ (Activity Streams JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4601,7 +4593,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -4736,9 +4728,9 @@ msgid "Could not retrieve favorite notices." msgstr "אחזור עדכונים אהובים לא הצליח." #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "הזנות האהובים של %s‏ (Atom)" +msgstr "הזנות האהובים של %s‏ (Activity Streams JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -4795,9 +4787,9 @@ msgid "%1$s group, page %2$d" msgstr "הקבוצה %1$s, דף %2$d" #. TRANS: Tooltip for feed link. %s is a group nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (Activity Streams JSON)" -msgstr "הזנת עדכונים של הקבוצה %s‏ (Atom)" +msgstr "הזנת עדכונים של הקבוצה %s‏ (Activity Streams JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -4973,6 +4965,7 @@ msgid "" msgstr "" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "" @@ -4991,19 +4984,19 @@ msgstr "מנויים" msgid "All subscribers" msgstr "כל המנויים" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format msgid "Notices by %1$s tagged %2$s" msgstr "" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format 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: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format msgid "Notices by %1$s, page %2$d" @@ -5017,9 +5010,9 @@ msgstr "הזנת עדכונים של %1$s עם התג %2$s‏ (RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (Activity Streams JSON)" -msgstr "הזנת עדכונים של %s‏ (Atom)" +msgstr "הזנת עדכונים של %s‏ (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. @@ -5045,7 +5038,7 @@ msgstr "הזנת עדכונים של %s‏ (Atom)" msgid "FOAF for %s" msgstr "" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5056,7 +5049,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5066,7 +5059,7 @@ msgstr "" "אפשר לנסות לדחוף את %1$s או [לשלוח להם משהו](%%%%action.newnotice%%%%?" "status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5076,7 +5069,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5232,9 +5225,8 @@ msgid "SSL logo" msgstr "" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." -msgstr "הגדרות הפרופיל" +msgstr "שמירת הגדרות אתר." #. TRANS: Page title for site-wide notice tab in admin panel. msgid "Site Notice" @@ -5611,9 +5603,9 @@ msgstr "עדכונים עם התג %1$s, דף %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "הזנת עדכונים לתג %s‏ (Atom)" +msgstr "הזנת עדכונים לתג %s‏ (Activity Streams JSON)" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. @@ -7966,7 +7958,7 @@ msgstr "" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8385,10 +8377,6 @@ msgstr "" msgid "Edit %s list by you." msgstr "" -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "" @@ -8896,7 +8884,7 @@ msgstr "" #. TRANS: Menu item in local navigation menu. msgctxt "MENU" msgid "Subscriptions" -msgstr "" +msgstr "מינויים" #. TRANS: Menu item title in local navigation menu. #. TRANS: %s is a user nickname. @@ -9036,7 +9024,7 @@ msgstr[1] "" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "אני" #. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. @@ -9048,7 +9036,7 @@ msgstr "" #. TRANS: List message for notice favoured by logged in user. msgctxt "FAVELIST" msgid "You like this." -msgstr "" +msgstr "אהבת את זה." #. TRANS: List message for when more than 4 people like something. #. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. @@ -9088,11 +9076,11 @@ msgstr "" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" -msgstr "" +msgstr "הכול" #. TRANS: Dropdown option for searching in profiles. msgid "Fullname" -msgstr "" +msgstr "שם מלא" #. TRANS: Dropdown option for searching in profiles. msgid "URI (Remote users)" @@ -9101,7 +9089,7 @@ msgstr "" #. TRANS: Dropdown field label. msgctxt "LABEL" msgid "Search in" -msgstr "" +msgstr "חיפוש בתוך" #. TRANS: Dropdown field title. msgid "Choose a field to search." @@ -9121,12 +9109,12 @@ msgstr "" #. TRANS: Title for top posters section. msgid "Top posters" -msgstr "" +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. @@ -9137,11 +9125,11 @@ msgstr "" #. TRANS: Label for drop-down of potential addressees. msgctxt "LABEL" msgid "To:" -msgstr "" +msgstr "אל:" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. msgid "Private?" -msgstr "" +msgstr "פרטי?" #. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received. #, php-format @@ -9151,12 +9139,12 @@ msgstr "" #. TRANS: Title for the form to unblock a user. msgctxt "TITLE" msgid "Unblock" -msgstr "" +msgstr "ביטול חסימה" #. TRANS: Title for unsandbox form. msgctxt "TITLE" msgid "Unsandbox" -msgstr "" +msgstr "הוצאה מארגז חול" #. TRANS: Description for unsandbox form. msgid "Unsandbox this user" @@ -9164,7 +9152,7 @@ msgstr "להוציא את המשתמש הזה מארגז החול" #. TRANS: Title for unsilence form. msgid "Unsilence" -msgstr "" +msgstr "ביטול השתקה" #. TRANS: Form description for unsilence form. msgid "Unsilence this user" @@ -9179,7 +9167,7 @@ msgstr "לבטל את הרישום למשתמש הזה" #. TRANS: Button text for unsubscribing from a list. msgctxt "BUTTON" msgid "Unsubscribe" -msgstr "" +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). @@ -9251,7 +9239,7 @@ msgstr "" #. TRANS: Exception. msgid "Invalid XML." -msgstr "" +msgstr "XML בלתי־תקין." #. TRANS: Exception. msgid "Invalid XML, missing XRD root." @@ -9263,121 +9251,41 @@ msgid "Getting backup from file '%s'." msgstr "" #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Invalid avatar URL %s." -msgstr "כינוי לא תקין: \"%s\"." +msgstr "כתובת תמונה בלתי־תקינה %s." #. TRANS: Server exception. %s is a URI. -#, fuzzy, php-format +#, php-format msgid "Tried to update avatar for unsaved remote profile %s." -msgstr "שגיאה בעדכון פרופיל מרוחק." +msgstr "ניסיון להעלות תמונה לדף משתמש מרוחק שלא נשמר %s." #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Unable to fetch avatar from %s." -msgstr "לא מצליח לשמור תג." +msgstr "לא ניתן לאחזר תמונה מתוך %s." #. TRANS: Exception. %s is a profile URL. -#, fuzzy, php-format +#, php-format msgid "Could not reach profile page %s." -msgstr "שמירת הפרופיל נכשלה." +msgstr "לא ניתן להשיג את דף המשתמש %s." #. TRANS: Exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Could not find a feed URL for profile page %s." -msgstr "לא המצא משתמש עם הכינוי %s." +msgstr "לא נמצאה כתובת הזמנה עבור דף המשתמש %s." #. TRANS: Exception. -#, fuzzy msgid "Not a valid webfinger address." -msgstr "כתובת דואר אלקטרוני לא תקינה." +msgstr "זאת לא כתובת ובפינגר תקינה." -#, fuzzy, php-format +#, php-format msgid "Could not find a valid profile for \"%s\"." -msgstr "שמירת הפרופיל נכשלה." - -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "אי־אפשר לרשום פרופיל מרוחק של OMB 0.1 באמצעות הפעולה הזאת." - -#~ msgid "Not expecting this response!" -#~ msgstr "זו תגובה לא צפויה!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "המשתמש שאליו אתה מאזין אינו קיים." - -#~ msgid "You can use the local subscription!" -#~ msgstr "ניתן להשתמש במנוי המקומי!" - -#~ msgid "You are not authorized." -#~ msgstr "ההרשמה אושרה" - -#~ msgid "Could not convert request token to access token." -#~ msgstr "המרת אסימון הבקשה לאסימון גישה לא הצליחה." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "השירות המרוחק משתמש בגרסה לא מוכרת של פרוטוקול OMB." - -#~ msgid "Error updating remote profile." -#~ msgstr "שגיאה בעדכון פרופיל מרוחק." - -#~ msgid "Invalid notice content." -#~ msgstr "תוכן עדכון לא תקין." +msgstr "לא נמצא דף משתמש תקין עבור \"%s\"." #~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "כדי לעשות מנוי, עליך [להיכנס למערכת](%%action.login%%), או [להירשם](%%" -#~ "action.register%%) לחשבון חדשה. אם יש לך כבר חשבון [במערכת מיקרובלוג " -#~ "תואמת](%%doc.openmublog%%), הכנס את כתובת הפרופיל שלך למטה. " - -#~ msgid "Remote subscribe" -#~ msgstr "הרשמה מרוחקת" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "הרשמה למשתמש מרוחק" - -#~ msgid "User nickname" -#~ msgstr "כינוי משתמש" - -#~ msgid "Profile URL" -#~ msgstr "כתובת הפרופיל" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "לא כתובת תקינה לדף משתמש (אין מסמך YADIS או שמוגדר XRDS בלתי תקין)" - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "אינך יכול להירשם לפרופיל מרוחק של OMB 0.01 על־ידי הפעולה הזאת." - -#~ msgid "Authorize subscription" -#~ msgstr "אשר מנוי" - -#~ msgid "No authorization request!" -#~ msgstr "לא התבקש אישור!" - -#~ msgid "Subscription authorized" -#~ msgstr "ההרשמה אושרה" - -#~ 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 "" -#~ "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " -#~ "כיצד לאשר מנוי. אסימון המנוי שלך הוא:" - -#~ msgid "Subscription rejected" -#~ msgstr "ההרשמה נדחתה" - -#~ 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 "" -#~ "המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד " -#~ "להשלים דחיית מנוי." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "הכנסת מנוי חדש נכשלה." +#~ "אירעה שגיאה חשובה, שכנראה קשורה להגדרות דואר אלקטרוני. חפשו מידע נוסף " +#~ "בקובצי יומן." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 5a872ef169..cf5a5d04d3 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Upper Sorbian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:04+0000\n" +"Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -34,12 +34,6 @@ msgid "" "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 "" @@ -3786,7 +3780,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists by a user when there are none. @@ -3815,7 +3809,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists a user was added to when there are none. @@ -4124,7 +4118,8 @@ msgid "Beyond the page limit (%s)." msgstr "Limit stronow (%s) překročeny." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Zjawny prud njeda so wotwołać." #. TRANS: Title for all public timeline pages but the first. @@ -4140,19 +4135,22 @@ msgstr "" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Kanal zjawneho pruda (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Kanal zjawneho pruda (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Kanal zjawneho pruda (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Kanal zjawneho pruda (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4694,7 +4692,7 @@ msgstr "Kanal so wobnowi. Prošu počakaj něšto mjeńšin za wuslědki." #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5078,6 +5076,7 @@ msgstr "" "%%) a prěni być?" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Licenca" @@ -5098,19 +5097,19 @@ msgstr "Abonenća" msgid "All subscribers" msgstr "Wšitcy abonenća" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, 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: Page title showing tagged notices in one user's timeline. #. 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 z %2$s markěrowany, strona %3$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5152,7 +5151,7 @@ msgstr "Zdźělenski kanal za %s (Atom)" msgid "FOAF for %s" msgstr "FOAF za %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5163,7 +5162,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5171,7 +5170,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5181,7 +5180,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8224,7 +8223,7 @@ msgstr "%1$s (@%2$s) je zdźělenku k twojej kedźbnosći pósłał" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8673,10 +8672,6 @@ msgstr "Wobdźěłać" msgid "Edit %s list by you." msgstr "Skupinu %s wobdźěłać" -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9655,115 +9650,3 @@ msgstr "Njepłaćiwa e-mejlowa adresa." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Profil njeje so składować dał." - -#, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "Njemóžeš zdaleny profil OMB 0.1 z tutej akciju abonować." - -#~ msgid "Not expecting this response!" -#~ msgstr "Njewočakowana wotmołwa!" - -#~ msgid "You can use the local subscription!" -#~ msgstr "Móžeš lokalny abonement wužiwać!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Tutón wužiwar ći abonowanje njedowoli." - -#~ msgid "You are not authorized." -#~ msgstr "Njejsy awtorizowany." - -#~ msgid "Error updating remote profile." -#~ msgstr "Zmylk při aktualizaciji zdaleneho profila." - -#~ msgid "Invalid notice content." -#~ msgstr "Njepłaćiwy wobsah zdźělenki." - -#~ msgid "Remote subscribe" -#~ msgstr "Zdaleny abonement" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Zdaleneho wužiwarja abonować" - -#~ msgid "User nickname" -#~ msgstr "Wužiwarske přimjeno" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Přimjeno wužiwarja, kotremuž chceš slědować." - -#~ msgid "Profile URL" -#~ msgstr "URL profila" - -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "" -#~ "URL twojeho profila při druhej kompatibelnej mikroblogowanskej słužbje." - -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Njepłaćiwy profilowy URL (wopačny format)." - -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "To je lokalny profil! Přizjew so, zo by abonował." - -#~ msgid "Could not get a request token." -#~ msgstr "Přistupny token njeda so wobstarać." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "Njemóžeš zdaleny profil OMB 0.1 z tutej akciju abonować." - -#~ 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ć." - -#~ msgid "Authorize subscription" -#~ msgstr "Abonement awtorizować" - -#~ msgid "Reject this subscription." -#~ msgstr "Tutón abonement wotpokazać." - -#~ msgid "No authorization request!" -#~ msgstr "Žane awtorizaciske naprašowanje!" - -#~ msgid "Subscription authorized" -#~ msgstr "Abonement awtorizowany" - -#~ msgid "Subscription rejected" -#~ msgstr "Abonement wotpokazany" - -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "URI posłucharja \"%s\" njebu tu namakany." - -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "URI posłucharki \"%s\" je předołhi." - -#~ msgid "Listenee URI \"%s\" is a local user." -#~ 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." - -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "URL awatara \"%s\" njeje płaćiwy." - -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Awatarowy URL \"%s\" njeda so čitać." - -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Wopačny wobrazowy typ za awatarowy URL \"%s\"." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Znamjo OMB-abonementa njeda so zhašeć." - -#~ msgid "Error inserting new profile." -#~ msgstr "Zmylk při zasunjenju noweho profila." - -#~ msgid "Error inserting avatar." -#~ msgstr "Zmylk při zasunjenju awatara." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Zmylk při zasunjenju zdaleneho profila." - -#~ msgid "Duplicate notice." -#~ msgstr "Dwójna zdźělenka." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Nowy abonement njeda so zasunyć." diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 057a639839..4c4fd0800a 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: Hungarian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:05+0000\n" +"Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-01 11:17:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -33,12 +33,6 @@ msgid "" "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 "Hiba történt." @@ -3869,14 +3863,17 @@ msgstr "Menjünk" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" +"**%s** %%%%site.name%%%% felhasználó, [mikroblogot](http://hu.wikipedia.org/" +"wiki/Mikroblog#Mikroblog) ír egy webhelyen, ami a szabad [StatusNet](http://" +"status.net/) szoftverre épült. " #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3898,14 +3895,17 @@ msgstr "" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" +"**%s** %%%%site.name%%%% felhasználó, [mikroblogot](http://hu.wikipedia.org/" +"wiki/Mikroblog#Mikroblog) ír egy webhelyen, ami a szabad [StatusNet](http://" +"status.net/) szoftverre épült. " #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -4221,7 +4221,8 @@ msgid "Beyond the page limit (%s)." msgstr "A lapkorláton túl (%s)" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Nem sikerült lekérni a nyilvános adatfolyamot." #. TRANS: Title for all public timeline pages but the first. @@ -4236,20 +4237,24 @@ msgid "Public timeline" msgstr "Közösségi történet" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" +msgstr "%s Atom hírcsatornája" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" +msgstr "Közösségi történet, %d. oldal" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" +msgstr "Közösségi történet, %d. oldal" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (Atom)" +msgstr "Közösségi történet, %d. oldal" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4801,7 +4806,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5190,6 +5195,7 @@ msgid "" msgstr "" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "" @@ -5208,19 +5214,19 @@ msgstr "Feliratkozók" msgid "All subscribers" msgstr "Minden feliratkozott" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 és barátai, %2$d oldal" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5262,7 +5268,7 @@ msgstr "%s Atom hírcsatornája" msgid "FOAF for %s" msgstr "" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Ez %1$s története, de %2$s még nem tett közzé hírt." @@ -5273,7 +5279,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5281,7 +5287,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5296,7 +5302,7 @@ msgstr "" "register%%%%) és kövesd nyomon **%s** pletykáit - és még rengeteg mást! " "([Tudj meg többet](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8350,7 +8356,7 @@ msgstr "%s (@%s) figyelmedbe ajánlott egy hírt" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8786,10 +8792,6 @@ msgstr "Szerkesztés" msgid "Edit %s list by you." msgstr "" -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "Címkézve" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "Listabeállítások szerkesztése." @@ -9754,85 +9756,5 @@ msgstr "Érvénytelen email cím." msgid "Could not find a valid profile for \"%s\"." msgstr "Nem sikerült menteni a profilt." -#~ msgid "Not expecting this response!" -#~ msgstr "Nem várt válasz!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "A felhasználó akire figyelsz nem létezik." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Figyelemmel követheted helyben!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Az a felhasználó blokkolta hogy figyelemmel kövesd." - -#~ msgid "You are not authorized." -#~ msgstr "Nincs jogosultságod." - -#~ msgid "Error updating remote profile." -#~ msgstr "Nem sikerült frissíteni a távoli profilt." - -#~ msgid "Invalid notice content." -#~ msgstr "Érvénytelen megjegyzéstartalom." - -#, fuzzy -#~ msgid "" -#~ "Notice 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’." - -#~ msgid "Remote subscribe" -#~ msgstr "Távoli feliratkozás" - -#~ msgid "User nickname" -#~ msgstr "Felhasználó beceneve" - -#~ msgid "Profile URL" -#~ msgstr "Profil URL" - -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Érvénytelen profil URL-cím (hibás formátum)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Az a felhasználó blokkolta hogy figyelemmel kövesd." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Nem sikerült az üzenetet feldolgozni." - -#, fuzzy -#~ 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’." - -#~ msgid "Authorize subscription" -#~ msgstr "Feliratkozás engedélyezése" - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Feliratkozás engedélyezése" - -#~ msgid "Subscription rejected" -#~ msgstr "Feliratkozás visszautasítva" - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "A forrás URL túl hosszú." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "A forrás URL nem érvényes." - -#~ msgid "Error inserting new profile." -#~ msgstr "Hiba az új profil beszúrásakor." - -#~ msgid "Error inserting avatar." -#~ msgstr "Hiba az avatár beszúrásakor." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Hiba a távoli profil beszúrásakor." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Nem sikerült beilleszteni a megerősítő kódot." +#~ msgid "Tagged" +#~ msgstr "Címkézve" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index b0060d3741..9a8f1143e6 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:59+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:07+0000\n" +"Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -34,14 +34,6 @@ msgstr "" "problema, ma tu pote contactar les a %2$s pro assecurar te de isto. " "Alternativemente, attende alcun minutas e reproba." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Un error importante occurreva, probabilemente connexe al configuration de e-" -"mail. Examina le files de registro pro plus informationes." - #. TRANS: Error message. msgid "An error occurred." msgstr "Un error ha occurrite." @@ -315,10 +307,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Inviar invitationes." +msgstr "Inviar invitation" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -443,13 +434,12 @@ msgstr "Le blocada del usator ha fallite." msgid "Unblock user failed." msgstr "Le disblocada del usator ha fallite." -#, fuzzy msgid "no conversation id" -msgstr "Conversation" +msgstr "nulle ID de conversation" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "Il non ha un conversation con ID %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -1740,15 +1730,13 @@ msgstr "Le adresse \"%s\" ha essite confirmate pro tu conto." #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Syndication de notas pro %s (Activity Streams JSON)" +msgstr "Syndication de conversationes (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Syndication de notas pro %s (RSS 2.0)" +msgstr "Syndication de conversationes (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -3831,13 +3819,13 @@ msgstr "Ir" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Istes es listas create per **%s**. Le listas es le medio de classificar " "personas similar in %%%%site.name%%%%, un servicio de [micro-blogging]" @@ -3865,13 +3853,13 @@ msgstr "Listas que contine \"%1$s\", pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Istes es listas pro **%s**. Le listas es le medio de classificar personas " "similar in %%%%site.name%%%%, un servicio de [micro-blogging](http://ia." @@ -4189,7 +4177,8 @@ msgid "Beyond the page limit (%s)." msgstr "Ultra le limite de pagina (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Non poteva recuperar le fluxo public." #. TRANS: Title for all public timeline pages but the first. @@ -4204,19 +4193,23 @@ msgid "Public timeline" msgstr "Chronologia public" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Syndication del fluxo public (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Syndication del fluxo public (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Syndication del fluxo public (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Syndication del fluxo public (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4796,8 +4789,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Le syndication essera restaurate. Per favor attende qualque minutas." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Tu pote incargar un copia de reserva de un fluxo in formato \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:09+0000\n" +"Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -35,12 +35,6 @@ msgid "" "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 "Si è verificato un errore." @@ -3935,7 +3929,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** è un gruppo di utenti su %%%%site.name%%%%, un servizio di [microblog]" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " @@ -3967,7 +3961,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** è un gruppo di utenti su %%%%site.name%%%%, un servizio di [microblog]" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " @@ -4286,7 +4280,8 @@ msgid "Beyond the page limit (%s)." msgstr "Oltre il limite della pagina (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Impossibile recuperare l'attività pubblica." #. TRANS: Title for all public timeline pages but the first. @@ -4302,19 +4297,22 @@ msgstr "Attività pubblica" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Feed dell'attività pubblica (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Feed dell'attività pubblica (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Feed dell'attività pubblica (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Feed dell'attività pubblica (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4907,7 +4905,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5299,6 +5297,7 @@ msgid "" msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Licenza" @@ -5318,19 +5317,19 @@ msgstr "Abbonati" msgid "All subscribers" msgstr "Tutti gli abbonati" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "Messaggi etichettati con %1$s, pagina %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5372,7 +5371,7 @@ msgstr "Feed dei messaggi per %s (Atom)" msgid "FOAF for %s" msgstr "FOAF per %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Questa è l'attività di %1$s, ma %2$s non ha ancora scritto nulla." @@ -5385,7 +5384,7 @@ msgstr "" "Visto niente di interessante? Non hai scritto ancora alcun messaggio, questo " "potrebbe essere un buon momento per iniziare! :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5395,7 +5394,7 @@ msgstr "" "[Scrivi qualche cosa](%%%%action.newnotice%%%%?status_textarea=%s) su questo " "argomento!" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5410,7 +5409,7 @@ msgstr "" "i messaggi di **%s** e di molti altri! ([Maggiori informazioni](%%%%doc.help%" "%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8582,7 +8581,7 @@ msgstr "%s (@%s) ti ha inviato un messaggio" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9053,11 +9052,6 @@ msgstr "Modifica" msgid "Edit %s list by you." msgstr "Modifica il gruppo %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Etichetta" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -10018,196 +10012,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "Impossibile salvare il profilo." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Non è possibile abbonarsi a un profilo remoto OMB 0.1 con quest'azione." - -#~ msgid "Not expecting this response!" -#~ msgstr "Risposta non attesa!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "L'utente che intendi seguire non esiste." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Puoi usare l'abbonamento locale!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Quell'utente ti ha bloccato dall'abbonarti." - -#~ msgid "You are not authorized." -#~ msgstr "Autorizzazione non presente." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Impossibile convertire il token di richiesta in uno di accesso." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Il servizio remoto usa una versione del protocollo OMB sconosciuta." - -#~ msgid "Error updating remote profile." -#~ msgstr "Errore nell'aggiornare il profilo remoto." - -#~ msgid "Invalid notice content." -#~ msgstr "Contenuto del messaggio non valido." - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "" -#~ "La licenza \"%1$s\" del messaggio non è compatibile con la licenza del " -#~ "sito \"%2$s\"." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Per abbonarti puoi [eseguire l'accesso](%%action.login%%) oppure [creare]" -#~ "(%%action.register%%) un nuovo account. Se ne possiedi già uno su un " -#~ "[sito di microblog compatibile](%%doc.openmublog%%), inserisci " -#~ "l'indirizzo del tuo profilo qui di seguito." - -#~ msgid "Remote subscribe" -#~ msgstr "Abbonamento remoto" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Abbonati a un utente remoto" - -#~ msgid "User nickname" -#~ msgstr "Soprannome dell'utente" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Soprannome dell'utente che vuoi seguire" - -#~ msgid "Profile URL" -#~ msgstr "URL del profilo" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "URL del profilo non valido (formato errato)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Non è un URL di profilo valido (nessun documento YADIS o XRDS definito " -#~ "non valido)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Quello è un profilo locale! Accedi per abbonarti." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Impossibile ottenere un token di richiesta." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Non è possibile abbonarsi a un profilo remoto OMB 0.1 con quest'azione." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "Non è possibile abbonarsi a un profilo remoto OMB 0.1 con quest'azione." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Autorizza abbonamento" - -#, fuzzy -#~ 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 "" -#~ "Controlla i dettagli seguenti per essere sicuro di volerti abbonare ai " -#~ "messaggi di questo utente. Se non hai richiesto ciò, fai clic su \"Rifiuta" -#~ "\"." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Rifiuta questo abbonamento" - -#~ msgid "No authorization request!" -#~ msgstr "Nessuna richiesta di autorizzazione!" - -#~ msgid "Subscription authorized" -#~ msgstr "Abbonamento autorizzato" - -#~ 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 "" -#~ "L'abbonamento è stato autorizzato, ma non è stato passato alcun URL di " -#~ "richiamo. Controlla le istruzioni del sito per i dettagli su come " -#~ "autorizzare l'abbonamento. Il tuo token per l'abbonamento è:" - -#~ msgid "Subscription rejected" -#~ msgstr "Abbonamento rifiutato" - -#~ 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 "" -#~ "L'abbonamento è stato rifiutato, ma non è stato passato alcun URL di " -#~ "richiamo. Controlla le istruzioni del sito per i dettagli su come " -#~ "rifiutare completamente l'abbonamento." - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "URL \"%s\" dell'ascoltatore non trovato qui." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "L'URI \"%s\" di colui che si ascolta è troppo lungo." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "L'URI \"%s\" di colui che si ascolta è un utente locale." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "L'URL \"%s\" del profilo è per un utente locale." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "L'URL \"%s\" dell'immagine non è valido." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Impossibile leggere l'URL \"%s\" dell'immagine." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Tipo di immagine errata per l'URL \"%s\"." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Impossibile salvare l'abbonamento." - -#~ msgid "Error inserting new profile." -#~ msgstr "Errore nell'inserire il nuovo profilo." - -#~ msgid "Error inserting avatar." -#~ msgstr "Errore nell'inserire l'immagine." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Errore nell'inserire il profilo remoto." - -#~ msgid "Duplicate notice." -#~ msgstr "Messaggio duplicato." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Impossibile inserire un nuovo abbonamento." +#~ msgid "Tagged" +#~ msgstr "Etichetta" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 4b4e82947f..7c64962731 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -4,6 +4,7 @@ # Author: Brion # Author: Calamari # Author: Fryed-peach +# Author: Miwa ka # Author: Sonoda # Author: Whym # Author: 青子守歌 @@ -14,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:02+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:10+0000\n" +"Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -35,26 +36,21 @@ msgid "" "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 "" +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 "不明" +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. @@ -76,7 +72,7 @@ msgstr "登録" #. TRANS: Checkbox instructions for admin setting "Private". msgid "Prohibit anonymous users (not logged in) from viewing site?" msgstr "" -"匿名ユーザー(ログインしていないユーザー)がサイトを見るのを禁止しますか?" +"匿名ユーザー(ログインしていないユーザー)がサイトを見るのを禁止しますか?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #. TRANS: Checkbox label to show private tags. @@ -87,7 +83,7 @@ msgstr "プライベート" #. TRANS: Checkbox instructions for admin setting "Invite only". msgid "Make registration invitation only." -msgstr "招待のみ登録させる。" +msgstr "招待者のみ登録させる。" #. TRANS: Checkbox label for configuring site as invite only. msgid "Invite only" @@ -150,16 +146,14 @@ msgstr "ログインしていません。" #. TRANS: Client error displayed when referring to a non-existing profile. #. TRANS: Client error displayed trying to subscribe to a non-existing profile. #. TRANS: Client error displayed trying to perform an action related to a non-existing profile. -#, fuzzy msgid "No such profile." -msgstr "そのようなファイルはありません。" +msgstr "そのようなプロファイルはありません。" #. TRANS: Client error displayed trying to reference a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to reference a non-existing list. -#, fuzzy msgid "No such list." -msgstr "そのようなタグはありません。" +msgstr "そのようなリストはありません。" #. TRANS: Client error displayed when an unknown error occurs when adding a user to a list. #. TRANS: %s is a username. @@ -176,10 +170,9 @@ msgid "" msgstr "" #. TRANS: Title after adding a user to a list. -#, fuzzy msgctxt "TITLE" msgid "Listed" -msgstr "ライセンス" +msgstr "リスト" #. TRANS: Server error when page not found (404). #. TRANS: Server error when page not found (404) @@ -235,48 +228,47 @@ msgstr "そのようなページはありません。" #. 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 "そのようなユーザはいません。" +msgstr "そのようなユーザーはいません。" #. TRANS: Title of a user's own start page. -#, fuzzy msgid "Home timeline" -msgstr "%s のタイムライン" +msgstr "ホームタイムライン" #. TRANS: Title of another user's start page. #. TRANS: %s is the other user's name. -#, fuzzy, php-format +#, php-format msgid "%s's home timeline" -msgstr "%s のタイムライン" +msgstr "%s のホームタイムライン" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "%sの友人のフィード(Atom)" +msgstr "%s の友人のフィード (Activity Streams JSON)" #. TRANS: %s is user nickname. #, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "%sの友人のフィード(RSS 1.0)" +msgstr "%s の友人のフィード (RSS 1.0)" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. #, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "%sの友人のフィード(RSS 2.0)" +msgstr "%s の友人のフィード (RSS 2.0)" #. TRANS: %s is user nickname. #, php-format msgid "Feed for friends of %s (Atom)" -msgstr "%sの友人のフィード(Atom)" +msgstr "%s の友人のフィード (Atom)" #. TRANS: Empty list message. %s is a user nickname. #, php-format msgid "" "This is the timeline for %s and friends but no one has posted anything yet." -msgstr "これは%sとその友人のタイムラインですが、まだ誰も投稿していません。" +msgstr "これは %s とその友人のタイムラインですが、まだ誰も投稿していません。" #. TRANS: Encouragement displayed on logged in user's empty timeline. #. TRANS: This message contains Markdown links. Keep "](" together. @@ -285,7 +277,7 @@ msgid "" "Try subscribing to more people, [join a group](%%action.groups%%) or post " "something yourself." msgstr "" -"もっと多くの人をフォローしてみましょう。[グループに参加](%%action.groups%%) " +"もっと多くの人をフォローしてみましょう。[グループに参加] (%%action.groups%%) " "してみたり、何か投稿してみましょう。" #. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@". @@ -295,8 +287,9 @@ msgid "" "You can try to [nudge %1$s](../%2$s) from their profile or [post something " "to them](%%%%action.newnotice%%%%?status_textarea=%3$s)." msgstr "" -"最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして" -"ください!" +"その人のプロファイルから [%1$s へ合図] (../%2$s) してみてください、または [そ" +"の人に何かをつぶやいてください] (%%%%action.newnotice%%%%?status_textarea=%3" +"$s)。" #. TRANS: Encouragement displayed on empty timeline user pages for anonymous users. #. TRANS: %s is a user nickname. This message contains Markdown links. Keep "](" together. @@ -309,15 +302,14 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and then nudge %s or " "post a notice to them." msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか。そして最初の投稿を" -"してください!" +"なぜ [アカウント登録] (%%action.register%%) しないのですか、その後 %s に合図" +"するか、その人へつぶやいてください。" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "招待" +msgstr "招待を送信する" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -331,13 +323,13 @@ msgstr "招待" #. TRANS: %s is a username. #, php-format msgid "%s and friends" -msgstr "%sとその友人" +msgstr "%s とその友人" #. 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. #, php-format msgid "Updates from %1$s and friends on %2$s!" -msgstr "%2$s に %1$s と友人からの更新があります!" +msgstr "%2$s に %1$s と友人からの更新があります!" #. TRANS: Client error displayed when coming across a non-supported API method. #. TRANS: Client error displayed when trying to handle an unknown API method. @@ -353,13 +345,12 @@ msgid "This method requires a POST." msgstr "このメソッドには POST が必要です。" #. TRANS: Client error displayed when no valid device parameter is provided for a user's delivery device setting. -#, fuzzy msgid "" "You must specify a parameter named 'device' with a value of one of: sms, im, " "none." msgstr "" -"「device」という名前の引数を、次の中から値を選んで、指定する必要があります: " -"sms, im, none" +"「device」パラメータは、次の値のいずれかを指定する必要があります: sms, im, " +"none" #. TRANS: Server error displayed when a user's delivery device cannot be updated. #. TRANS: Server error displayed when confirming an e-mail address or IM address fails. @@ -370,20 +361,20 @@ msgstr "" #. TRANS: Server error thrown on database error removing a registered SMS phone number. #. TRANS: Server error displayed when "Other" settings in user profile could not be updated on the server. msgid "Could not update user." -msgstr "ユーザを更新できませんでした。" +msgstr "ユーザーを更新できませんでした。" #. TRANS: Error message displayed when referring to a user without a profile. msgid "User has no profile." -msgstr "ユーザはプロフィールをもっていません。" +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. msgid "Could not save profile." -msgstr "プロフィールを保存できませんでした。" +msgstr "プロファイルを保存できませんでした。" #. TRANS: Client error displayed when the number of bytes in a POST request exceeds a limit. #. TRANS: %s is the number of bytes of the CONTENT_LENGTH. -#, fuzzy, php-format +#, php-format msgid "" "The server was unable to handle that much POST data (%s byte) due to its " "current configuration." @@ -391,13 +382,13 @@ msgid_plural "" "The server was unable to handle that much POST data (%s bytes) due to its " "current configuration." msgstr[0] "" -"サーバーの現在の構成が理由で、大量の POST データ (%sバイト) を処理することが" -"できませんでした。" +"サーバーの設定により、大量の POST データ (%s バイト) を処理することができませ" +"んでした。" #. TRANS: Title for Atom feed. msgctxt "ATOM" msgid "Main" -msgstr "" +msgstr "メイン" #. TRANS: Title for Atom feed. %s is a user nickname. #. TRANS: Message is used as link title. %s is a user nickname. @@ -419,34 +410,33 @@ 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 +#, php-format msgid "%s memberships" -msgstr "%s グループメンバー" +msgstr "%s のグループメンバー" #. TRANS: Client error displayed when users try to block themselves. msgid "You cannot block yourself!" -msgstr "自分自身をブロックすることはできません!" +msgstr "自分自身をブロックすることはできません!" #. TRANS: Server error displayed when blocking a user has failed. msgid "Block user failed." -msgstr "ユーザのブロックに失敗しました。" +msgstr "ユーザーのブロックに失敗しました。" #. TRANS: Server error displayed when unblocking a user has failed. msgid "Unblock user failed." -msgstr "ユーザのブロック解除に失敗しました。" +msgstr "ユーザーのブロック解除に失敗しました。" -#, fuzzy msgid "no conversation id" -msgstr "会話" +msgstr "会話ID がありません。" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "id %d の会話はありません。" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -475,30 +465,28 @@ msgstr "%s へ送った全てのダイレクトメッセージ" #. TRANS: Client error displayed when no message text was submitted (406). msgid "No message text!" -msgstr "メッセージの本文がありません!" +msgstr "メッセージの本文がありません!" #. TRANS: Client error displayed when message content is too long. #. 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. -#, fuzzy, php-format +#, 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[0] "長すぎます。メッセージは最大 %d 文字まで。" #. TRANS: Client error displayed if a recipient user could not be found (403). msgid "Recipient user not found." -msgstr "受け取り手のユーザが見つかりません。" +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 "友人でないユーザにダイレクトメッセージを送ることはできません。" +msgstr "友人ではないユーザーにダイレクトメッセージを送ることはできません。" #. TRANS: Client error displayed trying to direct message self (403). #. 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. -#, fuzzy msgid "" "Do not send a message to yourself; just say it to yourself quietly instead." msgstr "" @@ -508,7 +496,7 @@ msgstr "" #. TRANS: Client error displayed when trying to remove a favourite with an invalid ID. #. TRANS: Client error displayed trying to delete a status with an invalid ID. msgid "No status found with that ID." -msgstr "そのIDのステータスが見つかりません。" +msgstr "その ID のステータスが見つかりません。" #. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite. msgid "This status is already a favorite." @@ -531,27 +519,26 @@ msgstr "お気に入りを取り消すことができません。" #. TRANS: Client error displayed when trying follow who's profile could not be found. msgid "Could not follow user: profile not found." -msgstr "ユーザのフォローを停止できませんでした: ユーザが見つかりません。" +msgstr "ユーザーをフォローできませんでした: プロファイルが見つかりません。" #. TRANS: Client error displayed when trying to follow a user that's already being followed. #. TRANS: %s is the nickname of the user that is already being followed. #, php-format msgid "Could not follow user: %s is already on your list." msgstr "" -"ユーザをフォローできませんでした: %s は既にあなたのリストに入っています。" +"ユーザーをフォローできませんでした: %s は既にあなたのリストに入っています。" #. TRANS: Client error displayed when trying to unfollow a user that cannot be found. msgid "Could not unfollow user: User not found." -msgstr "ユーザのフォローを停止できませんでした: ユーザが見つかりません。" +msgstr "ユーザーのフォローを停止できませんでした: ユーザーが見つかりません。" #. TRANS: Client error displayed when trying to unfollow self. msgid "You cannot unfollow yourself." msgstr "自分自身をフォロー停止することはできません。" #. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. -#, fuzzy msgid "Two valid IDs or nick names must be supplied." -msgstr "ふたつのIDかスクリーンネームが必要です。" +msgstr "ふたつの ID またはニックネームが必要です。" #. TRANS: Client error displayed when a source user could not be determined showing friendship. msgid "Could not determine source user." @@ -559,7 +546,7 @@ msgstr "ソースユーザーを決定できません。" #. TRANS: Client error displayed when a target user could not be determined showing friendship. msgid "Could not find target user." -msgstr "ターゲットユーザーを見つけられません。" +msgstr "対象のユーザーが見つかりません。" #. TRANS: Client error trying to create a group with a nickname this is already in use. #. TRANS: API validation exception thrown when nickname is already used. @@ -588,7 +575,7 @@ msgstr "有効なニックネームではありません。" #. TRANS: Validation error in form for profile settings. #. TRANS: Form validation error displayed when trying to register with an invalid homepage URL. msgid "Homepage is not a valid URL." -msgstr "ホームページのURLが不適切です。" +msgstr "ホームページの URL が有効ではありません。" #. TRANS: Client error in form for group creation. #. TRANS: API validation exception thrown when full name does not validate. @@ -596,9 +583,8 @@ msgstr "ホームページのURLが不適切です。" #. 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 "フルネームが長すぎます。(255字まで)" +msgstr "フルネームが長すぎます (最大 255 文字まで)。" #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. @@ -613,10 +599,10 @@ msgstr "フルネームが長すぎます。(255字まで)" #. 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. -#, fuzzy, php-format +#, php-format msgid "Description is too long (maximum %d character)." msgid_plural "Description is too long (maximum %d characters)." -msgstr[0] "記述が長すぎます。(最長%d字)" +msgstr[0] "説明が長すぎます (最大 %d 文字まで)。" #. TRANS: Client error shown when providing too long a location during group creation. #. TRANS: API validation exception thrown when location does not validate. @@ -624,9 +610,8 @@ msgstr[0] "記述が長すぎます。(最長%d字)" #. 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. -#, fuzzy msgid "Location is too long (maximum 255 characters)." -msgstr "場所が長すぎます。(255字まで)" +msgstr "場所が長すぎます (最大255文字まで)。" #. TRANS: Client error shown when providing too many aliases during group creation. #. TRANS: %d is the maximum number of allowed aliases. @@ -636,18 +621,18 @@ msgstr "場所が長すぎます。(255字まで)" #. TRANS: %d is the maximum number of allowed aliases. #. TRANS: Group create form validation error. #. TRANS: %d is the maximum number of allowed aliases. -#, fuzzy, php-format +#, php-format msgid "Too many aliases! Maximum %d allowed." msgid_plural "Too many aliases! Maximum %d allowed." -msgstr[0] "別名が多すぎます! 最大 %d。" +msgstr[0] "別名が多すぎます! 最大 %d まで。" #. TRANS: Client error shown when providing an invalid alias during group creation. #. TRANS: %s is the invalid alias. #. TRANS: API validation exception thrown when aliases does not validate. #. TRANS: %s is the invalid alias. -#, fuzzy, php-format +#, php-format msgid "Invalid alias: \"%s\"." -msgstr "不正な別名: \"%s\"" +msgstr "無効な別名: \"%s\"" #. TRANS: Client error displayed when trying to use an alias during group creation that is already in use. #. TRANS: %s is the alias that is already in use. @@ -672,7 +657,7 @@ msgstr "別名はニックネームと同じではいけません。" #. TRANS: Client error displayed when trying to show a group that could not be found. #. TRANS: Client error displayed requesting most recent notices to a group for a non-existing group. msgid "Group not found." -msgstr "見つかりません。" +msgstr "グループが見つかりません。" #. TRANS: Server error displayed when trying to join a group the user is already a member of. #. TRANS: Client error displayed when trying to join a group while already a member. @@ -692,7 +677,7 @@ msgstr "管理者によってこのグループからブロックされていま #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "Could not join user %1$s to group %2$s." -msgstr "ユーザ %1$s はグループ %2$s に参加できません。" +msgstr "ユーザー %1$s はグループ %2$s に参加できません。" #. TRANS: Server error displayed when trying to leave a group the user is not a member of. msgid "You are not a member of this group." @@ -704,7 +689,7 @@ msgstr "このグループのメンバーではありません。" #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #, php-format msgid "Could not remove user %1$s from group %2$s." -msgstr "ユーザ %1$s をグループ %2$s から削除できません。" +msgstr "ユーザー %1$s をグループ %2$s から削除できません。" #. TRANS: Used as title in check for group membership. %s is a user name. #, php-format @@ -712,9 +697,9 @@ msgid "%s's groups" msgstr "%s のグループ" #. TRANS: Used as subtitle in check for group membership. %1$s is the site name, %2$s is a user name. -#, fuzzy, php-format +#, php-format msgid "%1$s groups %2$s is a member of." -msgstr "グループ %s はメンバー" +msgstr "%1$s グループ %2$s のメンバーです。" #. TRANS: Message is used as a title when listing the lastest 20 groups. %s is a site name. #. TRANS: Page title for first page of groups for a user. @@ -749,107 +734,94 @@ msgstr "別名を作成できません。" #. TRANS: Validation error in form for registration, profile and group settings, etc. 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. -#, fuzzy msgid "Alias cannot be the same as nickname." -msgstr "別名はニックネームと同じではいけません。" +msgstr "エイリアスはニックネームと同じにすることはできません。" #. TRANS: Client error displayed when referring to a non-existing list. #. TRANS: Client error displayed trying to perform an action related to a non-existing list. #. TRANS: Client error displayed when referring to a non-existing list. -#, fuzzy msgid "List not found." -msgstr "API メソッドが見つかりません。" +msgstr "リストが見つかりません。" #. TRANS: Client error displayed when trying to update another user's list. msgid "You cannot update lists that do not belong to you." -msgstr "" +msgstr "あなたが属していないリストを更新することはできません。" #. TRANS: Client error displayed when an unknown error occurs updating a list. #. TRANS: Client error displayed when an unknown error occurs viewing list members. #. TRANS: Client error displayed when an unknown error occurs in the list subscribers action. #. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list. msgid "An error occured." -msgstr "" +msgstr "エラーが発生しました。" #. TRANS: Client error displayed when trying to delete another user's list. msgid "You cannot delete lists that do not belong to you." -msgstr "" +msgstr "あなたが属していないリストを削除することはできません。" #. TRANS: Client error displayed when referring to a non-list member. -#, fuzzy msgid "The specified user is not a member of this list." -msgstr "ユーザはグループのメンバーではありません。" +msgstr "指定されたユーザーは、このリストのメンバーではありません。" #. TRANS: Client error displayed when trying to add members to a list without having the right to do so. -#, fuzzy msgid "You are not allowed to add members to this list." -msgstr "このグループのメンバーではありません。" +msgstr "あなたは、このリストにメンバーを追加することは許可されていません。" #. TRANS: Client error displayed when trying to modify list members without specifying them. -#, fuzzy msgid "You must specify a member." -msgstr "ユーザはプロフィールをもっていません。" +msgstr "メンバーを指定する必要があります。" #. TRANS: Client error displayed when trying to remove members from a list without having the right to do so. -#, fuzzy msgid "You are not allowed to remove members from this list." -msgstr "このグループのメンバーではありません。" +msgstr "あなたは、このリストからメンバーを削除することは許可されていません。" #. TRANS: Client error displayed when trying to remove a list member that is not part of a list. msgid "The user you are trying to remove from the list is not a member." -msgstr "" +msgstr "リストから削除しようとしているユーザーがメンバーではありません。" #. TRANS: Client error displayed when trying to create a list without a name. -#, fuzzy msgid "A list must have a name." -msgstr "別名はニックネームと同じではいけません。" +msgstr "リストには名前が必要です。" #. TRANS: Client error displayed when a membership check for a user is nagative. msgid "The specified user is not a subscriber of this list." -msgstr "" +msgstr "指定されたユーザーは、このリストのメンバーではありません。" #. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list. -#, fuzzy msgid "You are not subscribed to this list." -msgstr "あなたはそのプロファイルにフォローされていません。" +msgstr "あなたは、このリストに登録されていません。" #. TRANS: Client error displayed when uploading a media file has failed. -#, fuzzy msgid "Upload failed." -msgstr "ファイルアップロード" +msgstr "アップロードに失敗しました。" #. TRANS: Client error given from the OAuth API when the request token or verifier is invalid. -#, fuzzy msgid "Invalid request token or verifier." -msgstr "不正なログイントークンが指定されています。" +msgstr "request token または verifier が無効です。" #. TRANS: Client error given when no oauth_token was passed to the OAuth API. msgid "No oauth_token parameter provided." msgstr "oauth_token パラメータは提供されませんでした。" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#, fuzzy msgid "Invalid request token." -msgstr "不正なトークン。" +msgstr "リクエストトークンが無効です。" #. TRANS: Client error given when an invalid request token was passed to the OAuth API. -#, fuzzy msgid "Request token already authorized." -msgstr "認証されていません。" +msgstr "リクエストトークン はすでに認可されています。" #. TRANS: Form validation error given when an invalid username and/or password was passed to the OAuth API. msgid "Invalid nickname / password!" -msgstr "不正なユーザ名またはパスワード。" +msgstr "無効なニックネームまたはパスワード。" #. TRANS: Server error displayed when a database action fails. -#, fuzzy msgid "Database error inserting oauth_token_association." -msgstr "OAuth アプリケーションユーザの追加時DBエラー。" +msgstr "oauth_token_association 追加時のデータベースエラー。" #. TRANS: Client error given on when invalid data was passed through a form in the OAuth API. #. TRANS: Unexpected validation error on avatar upload form. @@ -892,7 +864,6 @@ msgid "" msgstr "" #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Account" msgstr "アカウント" @@ -917,37 +888,32 @@ msgstr "パスワード" #. TRANS: Button label to cancel an IM address confirmation procedure. #. TRANS: Button label to cancel a SMS address confirmation procedure. #. TRANS: Button label in the "Edit application" form. -#, fuzzy msgctxt "BUTTON" msgid "Cancel" -msgstr "中止" +msgstr "キャンセル" #. TRANS: Button text that when clicked will allow access to an account by an external application. -#, fuzzy msgctxt "BUTTON" msgid "Allow" msgstr "許可" #. TRANS: Form instructions. -#, fuzzy msgid "Authorize access to your account information." -msgstr "アカウント情報へのアクセスを許可するか、または拒絶してください。" +msgstr "アカウント情報へのアクセスを許可しました。" #. TRANS: Header for user notification after revoking OAuth access to an application. -#, fuzzy msgid "Authorization canceled." -msgstr "確認コードがありません。" +msgstr "承認をキャンセルします。" #. TRANS: User notification after revoking OAuth access to an application. #. TRANS: %s is an OAuth token. -#, fuzzy, php-format +#, php-format msgid "The request token %s has been revoked." -msgstr "リクエストトークン%sは、拒否されて、取り消されました。" +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 "" @@ -957,9 +923,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 "認証されていません。" +msgstr "%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. @@ -976,7 +942,7 @@ msgstr "このメソッドには POST か DELETE が必要です。" #. TRANS: Client error displayed trying to delete a status of another user. msgid "You may not delete another user's status." -msgstr "他のユーザのステータスを消すことはできません。" +msgstr "他のユーザーのステータスを消すことはできません。" #. TRANS: Client error displayed trying to repeat a non-existing notice through the API. #. TRANS: Client error displayed trying to display redents of a non-exiting notice. @@ -992,15 +958,14 @@ msgstr "そのようなつぶやきはありません。" #. TRANS: Client exception thrown when using an unsupported HTTP method. #. TRANS: Client error shown when using a non-supported HTTP method. #. TRANS: Client exception thrown when using an unsupported HTTP method. -#, fuzzy msgid "HTTP method not supported." -msgstr "API メソッドが見つかりません。" +msgstr "HTTPメソッドはサポートされていません。" #. 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 "サポート外の形式です。" +msgstr "サポートされていない形式: %s" #. TRANS: Client error displayed requesting a deleted status. msgid "Status deleted." @@ -1008,50 +973,48 @@ msgstr "ステータスを削除しました。" #. TRANS: Client error displayed requesting a status with an invalid ID. msgid "No status with that ID found." -msgstr "そのIDでのステータスはありません。" +msgstr "その ID でのステータスはありません。" #. TRANS: Client error displayed when trying to delete a notice not using the Atom format. msgid "Can only delete using the Atom format." -msgstr "" +msgstr "Atom フォーマットの時だけ削除が可能です。" #. TRANS: Client error displayed when a user has no rights to delete notices of other users. #. TRANS: Error message displayed trying to delete a notice that was not made by the current user. -#, fuzzy msgid "Cannot delete this notice." -msgstr "このつぶやきを削除できません。" +msgstr "このつぶやきを削除することはできません。" #. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice. -#, fuzzy, php-format +#, php-format msgid "Deleted notice %d" -msgstr "つぶやき削除" +msgstr "削除したつぶやき %d" #. TRANS: Client error displayed when the parameter "status" is missing. msgid "Client must provide a 'status' parameter with a value." -msgstr "" +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. -#, 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[0] "長すぎます。つぶやきは最大 %d 文字まで。" #. TRANS: Client error displayed when replying to a non-existing notice. -#, fuzzy msgid "Parent notice not found." -msgstr "API メソッドが見つかりません。" +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 +#, 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] "つぶやきは URL を含めて最大 %d 字までです。" +msgstr[0] "つぶやきは URL を含めて最大 %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. @@ -1067,15 +1030,15 @@ msgstr "%1$s / %2$s からのお気に入り" #. TRANS: Subtitle for timeline of most recent favourite notices by a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name, #. TRANS: %3$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s updates favorited by %2$s / %3$s." -msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。" +msgstr "%1$s %2$s / %3$s のお気に入りを更新しました。" #. TRANS: Server error displayed whe trying to get a timeline fails. #. TRANS: %s is the error message. -#, fuzzy, php-format +#, php-format msgid "Could not generate feed for list - %s" -msgstr "%s 用のログイン・トークンを作成できませんでした" +msgstr "リストのフィードを生成することができませんでした - %s" #. TRANS: Title for timeline of most recent mentions of a user. #. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname. @@ -1088,7 +1051,7 @@ msgstr "%1$s / %2$s について更新" #. TRANS: %3$s is a user's full name. #, php-format msgid "%1$s updates that reply to updates from %2$s / %3$s." -msgstr "%2$s からアップデートに答える %1$s アップデート" +msgstr "%1$s が更新され、%2$s / %3$s から更新への返信が行われました。" #. TRANS: Title for site timeline. %s is the StatusNet sitename. #. TRANS: Public RSS feed title. %s is the StatusNet site name. @@ -1099,35 +1062,34 @@ msgstr "%s のパブリックタイムライン" #. TRANS: Subtitle for site timeline. %s is the StatusNet sitename. #, php-format msgid "%s updates from everyone!" -msgstr "皆からの %s アップデート!" +msgstr "みんなが %s を更新!" #. TRANS: Server error displayed calling unimplemented API method for 'retweeted by me'. -#, fuzzy msgid "Unimplemented." -msgstr "未実装のメソッド。" +msgstr "未実装です。" #. TRANS: Title for Atom feed "repeated to me". %s is the user nickname. #, php-format msgid "Repeated to %s" -msgstr "%s への返信" +msgstr "%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 "%2$s からアップデートに答える %1$s アップデート" +msgstr "%1$s %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. #, php-format msgid "Repeats of %s" -msgstr "%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 +#, php-format msgid "%1$s notices that %2$s / %3$s has repeated." -msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" +msgstr "%1$s %2$s / %3$s のつぶやきをリピートしました。" #. TRANS: Title for timeline with lastest notices with a given tag. #. TRANS: %s is the tag. @@ -1143,12 +1105,11 @@ msgstr "%s とタグ付けされたつぶやき" #. 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 による更新があります!" +msgstr "%2$s 上で %1$s とタグ付けによる更新があります!" #. TRANS: Client error displayed trying to add a notice to another user's timeline. -#, fuzzy msgid "Only the user can add to their own timeline." -msgstr "ユーザだけがかれら自身のメールボックスを読むことができます。" +msgstr "" #. TRANS: Client error displayed when using another format than AtomPub. msgid "Only accept AtomPub for Atom feeds." @@ -1156,7 +1117,7 @@ msgstr "" #. TRANS: Client error displayed attempting to post an empty API notice. msgid "Atom post must not be empty." -msgstr "" +msgstr "Atom のポストは空であってはいけません。" #. TRANS: Client error displayed attempting to post an API that is not well-formed XML. msgid "Atom post must be well-formed XML." @@ -1178,24 +1139,23 @@ msgstr "" #. TRANS: Client error displayed when posting a notice without content through the API. #. TRANS: %d is the notice ID (number). -#, fuzzy, php-format +#, php-format msgid "No content for notice %d." -msgstr "つぶやきの内容を探す" +msgstr "つぶやきの内容がありません %d" #. TRANS: Client error displayed when using another format than AtomPub. #. TRANS: %s is the notice URI. -#, fuzzy, php-format +#, php-format msgid "Notice with URI \"%s\" already exists." -msgstr "その ID によるつぶやきは存在していません" +msgstr "URI \"%s\" を持つつぶやきが既に存在します。" #. TRANS: Server error for unfinished API method showTrends. msgid "API method under construction." msgstr "API メソッドが工事中です。" #. TRANS: Client error displayed when requesting user information for a non-existing user. -#, fuzzy msgid "User not found." -msgstr "API メソッドが見つかりません。" +msgstr "ユーザーが見つかりません。" #. TRANS: Client error displayed when trying to leave a group while not logged in. msgid "You must be logged in to leave a group." @@ -1240,206 +1200,189 @@ msgstr "そのようなグループはありません。" #. TRANS: Client error when trying to delete a group without providing a nickname or ID for the group. #. TRANS: Client error displayed when trying to join a group without providing a group name or group ID. #. TRANS: Client error displayed when trying to leave a group without providing a group name or group ID. -#, fuzzy msgid "No nickname or ID." -msgstr "ニックネームがありません。" +msgstr "ニックネームまたは 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 "ログインしていません。" +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. #. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve. -#, fuzzy 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 "" #. 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 "%2$s における %1$s のステータス" +msgstr "%2$s から %1$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. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s is not in the moderation queue for your subscriptions." -msgstr "このグループのユーザのリスト。" +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 +#, php-format msgid "Could not cancel or approve request for user %1$s to join group %2$s." -msgstr "ユーザ %1$s はグループ %2$s に参加できません。" +msgstr "" #. 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 "%2$s における %1$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: Subtitle for Atom favorites feed. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "Notices %1$s has favorited on %2$s" -msgstr "%2$s に %1$s と友人からの更新があります!" +msgstr "つぶやき %1$s は %2$s のお気に入りです。" #. TRANS: Client exception thrown when trying to set a favorite for another user. #. TRANS: Client exception thrown when trying to subscribe another user. -#, fuzzy msgid "Cannot add someone else's subscription." -msgstr "サブスクリプションを追加できません" +msgstr "他のユーザーのフォローを追加することはできません。" #. TRANS: Client exception thrown when trying use an incorrect activity verb for the Atom pub method. -#, fuzzy msgid "Can only handle favorite activities." -msgstr "つぶやきの内容を探す" +msgstr "" #. TRANS: Client exception thrown when trying favorite an object that is not a notice. -#, fuzzy msgid "Can only fave notices." -msgstr "つぶやきの内容を探す" +msgstr "人気のつぶやきのみ可能です。" #. TRANS: Client exception thrown when trying favorite a notice without content. -#, fuzzy msgid "Unknown notice." -msgstr "不明" +msgstr "不明なつぶやきです。" #. TRANS: Client exception thrown when trying favorite an already favorited notice. -#, fuzzy msgid "Already a favorite." -msgstr "お気に入りに加える" +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. -#, fuzzy, php-format +#, php-format msgid "Groups %1$s is a member of on %2$s" -msgstr "グループ %s はメンバー" +msgstr "グループ %1$s は %2$s のメンバーです。" #. TRANS: Client exception thrown when trying subscribe someone else to a group. -#, fuzzy msgid "Cannot add someone else's membership." -msgstr "サブスクリプションを追加できません" +msgstr "他のユーザーのメンバーシップを追加することはできません。" #. TRANS: Client error displayed when not using the join verb. -#, fuzzy msgid "Can only handle join activities." -msgstr "つぶやきの内容を探す" +msgstr "" #. TRANS: Client exception thrown when trying to subscribe to a non-existing group. -#, fuzzy msgid "Unknown group." -msgstr "不明" +msgstr "不明なグループ。" #. TRANS: Client exception thrown when trying to subscribe to an already subscribed group. -#, fuzzy msgid "Already a member." -msgstr "全てのメンバー" +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 msgid "No such favorite." -msgstr "そのようなファイルはありません。" +msgstr "そのようなお気に入りはありません。" #. TRANS: Client exception thrown when trying to remove a favorite notice of another user. -#, fuzzy msgid "Cannot delete someone else's favorite." -msgstr "お気に入りを取り消すことができません。" +msgstr "他のユーザーのお気に入りを削除することはできません。" #. TRANS: Client exception thrown when trying to show membership of a non-subscribed group -#, fuzzy msgid "Not a member." -msgstr "全てのメンバー" +msgstr "メンバーではありません。" #. TRANS: Client exception thrown when deleting someone else's membership. -#, fuzzy msgid "Cannot delete someone else's membership." -msgstr "フォローを保存できません。" +msgstr "他のユーザーのメンバーシップを削除することはできません。" #. 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 "そのようなファイルはありません。" +msgstr "id: %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 "あなたはそのプロファイルにフォローされていません。" +msgstr "プロファイル %2$d は プロファイル %1$d をフォローしていません。" #. 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. -#, fuzzy, php-format +#, php-format msgid "People %1$s has subscribed to on %2$s" -msgstr "人々は %s をフォローしました。" +msgstr "" #. TRANS: Client error displayed when not using the follow verb. msgid "Can only handle Follow activities." @@ -1451,15 +1394,15 @@ msgstr "" #. 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 "不明なファイルタイプ" +msgstr "不明なプロファイル %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 "すでにフォローしています!" +msgstr "%s はすでにフォローしています。" #. TRANS: Client error displayed trying to get a non-existing attachment. msgid "No such attachment." @@ -1481,7 +1424,7 @@ msgstr "サイズがありません。" #. TRANS: Client error displayed trying to get an avatar providing an invalid avatar size. msgid "Invalid size." -msgstr "不正なサイズ。" +msgstr "無効なサイズ。" #. TRANS: Title for avatar upload page. msgid "Avatar" @@ -1518,33 +1461,28 @@ msgstr "プレビュー" #. TRANS: Submit button text the OAuth application page to delete an application. #. TRANS: Button text for deleting a group. #. TRANS: Button text to delete a list. -#, 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 "切り取り" +msgstr "" #. TRANS: Validation error on avatar upload form when no file was uploaded. -#, fuzzy msgid "No file uploaded." -msgstr "プロファイル記述がありません。" +msgstr "ファイルがアップロードされていません。" #. TRANS: Avatar upload form instruction after uploading a file. -#, fuzzy msgid "Pick a square area of the image to be your avatar." -msgstr "あなたのアバターとなるイメージを正方形で指定" +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. @@ -1566,16 +1504,16 @@ 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 msgid "Only logged-in users can backup their account." -msgstr "ログインユーザだけがつぶやきを繰り返せます。" +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 "" @@ -1587,35 +1525,33 @@ msgid "" msgstr "" #. TRANS: Submit button to backup an account on the backup account page. -#, fuzzy msgctxt "BUTTON" msgid "Backup" -msgstr "バックグラウンド" +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." -msgstr "そのユーザはすでにブロック済みです。" +msgstr "そのユーザーはすでにブロック済みです。" #. TRANS: Title for block user page. #. TRANS: Legend for block user form. #. TRANS: Fieldset legend for block user from group form. msgid "Block user" -msgstr "ユーザをブロック" +msgstr "ユーザーをブロック" #. TRANS: Explanation of consequences when blocking a user on the block user page. -#, fuzzy msgid "" "Are you sure you want to block this user? Afterwards, they will be " "unsubscribed from you, unable to subscribe to you in the future, and you " "will not be notified of any @-replies from them." msgstr "" -"あなたはこのユーザをブロックしたいのを確信していますか? その後、それらはあな" -"たからフォローを外されるでしょう、将来、あなたにフォローできないで、あなたは" -"どんな @-返信 についてもそれらから通知されないでしょう。" +"このユーザーをブロックしてもよろしいですか? その場合、あなたからのフォローを" +"外す、将来にわたってあなたをフォローできない、あなたはどんな @-返信 について" +"も通知されないでしょう。" #. TRANS: Button label on the user block form. #. TRANS: Button label on the delete application form. @@ -1625,12 +1561,11 @@ msgstr "" #. TRANS: Button label on the form to block a user from a group. msgctxt "BUTTON" msgid "No" -msgstr "ノート" +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. @@ -1644,9 +1579,8 @@ msgid "Yes" msgstr "はい" #. TRANS: Submit button title for 'Yes' when blocking a user. -#, fuzzy msgid "Block this user." -msgstr "このユーザをブロックする" +msgstr "このユーザーをブロックする" #. TRANS: Server error displayed when blocking a user fails. msgid "Failed to save block information." @@ -1666,33 +1600,32 @@ msgstr "%1$s ブロックされたプロファイル、ページ %2$d" #. TRANS: Instructions for list of users blocked from a group. msgid "A list of the users blocked from joining this group." -msgstr "このグループへの参加をブロックされたユーザのリスト。" +msgstr "このグループへの参加をブロックされたユーザーのリスト。" #. TRANS: Form legend for unblocking a user from a group. msgid "Unblock user from group" -msgstr "グループからのアンブロックユーザ" +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. msgid "Unblock this user" -msgstr "このユーザをアンブロックする" +msgstr "このユーザーをアンブロックする" #. TRANS: Title for mini-posting window loaded from bookmarklet. #. TRANS: %s is the StatusNet site name. #, php-format msgid "Post to %s" -msgstr "%s 上のグループ" +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 に残りました。" @@ -1700,7 +1633,7 @@ msgstr "%1$s はグループ %2$s に残りました。" #. 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 "ログイントークンが要求されていません。" +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. @@ -1711,10 +1644,9 @@ msgstr "ログイントークンが要求されていません。" #. 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のプロファイルがありません。" +msgstr "その ID のプロファイルがありません。" #. TRANS: Title after unsubscribing from a group. -#, fuzzy msgctxt "TITLE" msgid "Unsubscribed" msgstr "フォロー解除済み" @@ -1729,7 +1661,7 @@ msgstr "確認コードが見つかりません。" #. 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!" -msgstr "その確認コードはあなたのものではありません!" +msgstr "その確認コードはあなたのものではありません!" #. TRANS: Server error for an unknown address type, which can be 'email', 'sms', or the name of an IM network (such as 'xmpp' or 'aim') #, php-format @@ -1743,20 +1675,17 @@ 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 "ユーザレコードを更新できません。" +msgstr "IM設定を更新できませんでした。" #. TRANS: Server error displayed when adding IM preferences fails. -#, fuzzy msgid "Could not insert user IM preferences." -msgstr "サブスクリプションを追加できません" +msgstr "IM設定を追加できませんでした。" #. TRANS: Server error displayed when an address confirmation code deletion from the #. TRANS: database fails in the contact address confirmation action. -#, fuzzy msgid "Could not delete address confirmation." -msgstr "メール承認を削除できません" +msgstr "メールアドレス確認を削除できません。" #. TRANS: Title for the contact address confirmation action. msgid "Confirm address" @@ -1770,32 +1699,27 @@ msgstr "アドレス \"%s\" はあなたのアカウントとして承認され #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "%sのつぶやきフィード (Atom)" +msgstr "会話のフィード (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "%sのつぶやきフィード (RSS 2.0)" +msgstr "会話のフィード (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. -#, fuzzy msgctxt "TITLE" 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." @@ -1805,24 +1729,23 @@ 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. -#, fuzzy msgid "Account deleted." -msgstr "アバターが削除されました。" +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. -#, fuzzy msgid "Delete account" -msgstr "新しいグループを作成" +msgstr "アカウント削除" #. TRANS: Form text for user deletion form. msgid "" "This will permanently delete your account data from this " "server." 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. @@ -1831,22 +1754,25 @@ msgid "" "You are strongly advised to back up your data before " "deletion." msgstr "" +"削除する前に データのバックアップ を行うことを強くお勧めし" +"ます。" #. TRANS: Field label for delete account confirmation entry. #. TRANS: Field label for password reset form where the password has to be typed again. msgid "Confirm" -msgstr "パスワード確認" +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. -#, fuzzy msgid "Permanently delete your account" -msgstr "ユーザを削除できません" +msgstr "あなたのアカウントを完全に削除する" #. TRANS: Client error displayed trying to delete an application while not logged in. msgid "You must be logged in to delete an application." @@ -1873,72 +1799,65 @@ msgid "Delete application" msgstr "アプリケーション削除" #. TRANS: Confirmation text on delete application page. -#, fuzzy 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 " "connections." msgstr "" -"あなたは本当にこのユーザを削除したいですか? これはバックアップなしでデータ" -"ベースからユーザに関するすべてのデータをクリアします。" +"このアプリケーションを削除してもよいですか? これは、すべての既存のユーザー接" +"続を含むデータベースから、アプリケーションについてのすべてのデータをクリアし" +"ます。" #. TRANS: Submit button title for 'No' when deleting an application. -#, fuzzy msgid "Do not delete this application." -msgstr "このアプリケーションを削除しないでください" +msgstr "このアプリケーションを削除しない" #. TRANS: Submit button title for 'Yes' when deleting an application. -#, fuzzy msgid "Delete this application." msgstr "このアプリケーションを削除" #. TRANS: Client error when trying to delete group while not logged in. -#, fuzzy msgid "You must be logged in to delete a group." -msgstr "グループから離れるにはログインしていなければなりません。" +msgstr "グループを削除するには、ログインする必要があります。" #. TRANS: Client error when trying to delete a group without having the rights to delete it. -#, fuzzy msgid "You are not allowed to delete this group." -msgstr "このグループのメンバーではありません。" +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. -#, fuzzy msgid "Delete group" -msgstr "ユーザ削除" +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. -#, fuzzy msgid "Do not delete this group." -msgstr "このつぶやきを削除できません。" +msgstr "このグループを削除しない。" #. TRANS: Submit button title for 'Yes' when deleting a group. -#, fuzzy msgid "Delete this group." -msgstr "このユーザを削除" +msgstr "このグループを削除。" #. TRANS: Instructions for deleting a notice. msgid "" @@ -1955,53 +1874,48 @@ msgstr "つぶやき削除" #. TRANS: Message for the delete notice form. msgid "Are you sure you want to delete this notice?" -msgstr "本当にこのつぶやきを削除しますか?" +msgstr "本当にこのつぶやきを削除しますか?" #. TRANS: Submit button title for 'No' when deleting a notice. -#, fuzzy msgid "Do not delete this notice." -msgstr "このつぶやきを削除できません。" +msgstr "このつぶやきを削除しない。" #. TRANS: Submit button title for 'Yes' when deleting a notice. -#, fuzzy msgid "Delete this notice." msgstr "このつぶやきを削除" #. TRANS: Client error displayed when trying to delete a user without having the right to delete users. msgid "You cannot delete users." -msgstr "ユーザを削除できません" +msgstr "ユーザーを削除できません" #. TRANS: Client error displayed when trying to delete a non-local user. msgid "You can only delete local users." -msgstr "ローカルユーザのみ削除できます。" +msgstr "ローカルユーザーのみ削除できます。" #. TRANS: Title of delete user page. -#, fuzzy msgctxt "TITLE" msgid "Delete user" -msgstr "ユーザ削除" +msgstr "ユーザー削除" #. TRANS: Fieldset legend on delete user page. msgid "Delete user" -msgstr "ユーザ削除" +msgstr "ユーザー削除" #. TRANS: Information text to request if a user is certain that the described action has to be performed. msgid "" "Are you sure you want to delete this user? This will clear all data about " "the user from the database, without a backup." 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. -#, fuzzy msgid "Delete this user." -msgstr "このユーザを削除" +msgstr "このユーザーを削除。" #. 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!" @@ -2013,9 +1927,9 @@ msgstr "お気に入りに加える" #. 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 "そのようなドキュメントはありません。\"%s\"" +msgstr "ドキュメント \"%s\" はありません。" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2038,32 +1952,31 @@ 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. msgid "Name is required." -msgstr "名前は必須です。" +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. -#, fuzzy msgid "Name is too long (maximum 255 characters)." -msgstr "名前が長すぎます。(最大255字まで)" +msgstr "名前が長すぎます (最大 255 文字まで)。" #. 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. msgid "Name already in use. Try another one." -msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" +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. msgid "Description is required." -msgstr "概要が必要です。" +msgstr "説明が必要です。" #. TRANS: Validation error shown when providing too long a source URL in the "Edit application" form. msgid "Source URL is too long." -msgstr "ソースURLが長すぎます。" +msgstr "ソース URL が長すぎます。" #. 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. msgid "Source URL is not valid." -msgstr "ソースURLが不正です。" +msgstr "ソース URL が無効です。" #. 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. @@ -2071,9 +1984,8 @@ msgid "Organization is required." msgstr "組織が必要です。" #. TRANS: Validation error shown when providing too long an arganisation name in the "Edit application" form. -#, fuzzy msgid "Organization is too long (maximum 255 characters)." -msgstr "組織が長すぎます。(最大255字)" +msgstr "組織が長すぎます (最大 255 文字まで)。" #. 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. @@ -2088,7 +2000,7 @@ 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. msgid "Callback URL is not valid." -msgstr "コールバックURLが不正です。" +msgstr "コールバック URL が無効です。" #. TRANS: Server error occuring when an application could not be updated from the "Edit application" form. msgid "Could not update application." @@ -2114,7 +2026,7 @@ msgstr "このフォームを使ってグループを編集します。" #. TRANS: %s is the invalid alias. #, php-format msgid "Invalid alias: \"%s\"" -msgstr "不正な別名: \"%s\"" +msgstr "無効な別名: \"%s\"" #. TRANS: Group edit form success message. #. TRANS: Edit list form success message. @@ -2123,41 +2035,37 @@ msgstr "オプションが保存されました。" #. TRANS: Title for edit list page after deleting a tag. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Delete %s list" -msgstr "このユーザを削除" +msgstr "リスト %s を削除" #. TRANS: Title for edit list page. #. TRANS: %s is a list. #. TRANS: Form legend for list edit form. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit list %s" -msgstr "有効なメールアドレスではありません。" +msgstr "リスト %s を編集" #. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID. -#, fuzzy msgid "No tagger or ID." -msgstr "ニックネームがありません。" +msgstr "" #. TRANS: Client error displayed when referring to non-local user. msgid "Not a local user." -msgstr "ローカルユーザではありません。" +msgstr "ローカルユーザーではありません。" #. TRANS: Client error displayed when reting to edit a tag that was not self-created. -#, fuzzy msgid "You must be the creator of the tag to edit it." -msgstr "グループを編集するには管理者である必要があります。" +msgstr "タグを編集するには、タグの作成者である必要があります。" #. TRANS: Form instruction for edit list form. -#, fuzzy msgid "Use this form to edit the list." -msgstr "このフォームを使ってグループを編集します。" +msgstr "リストを編集するには、このフォームを使用してください。" #. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect. -#, fuzzy msgid "Delete aborted." -msgstr "つぶやき削除" +msgstr "削除を中止しました。" #. TRANS: Text in confirmation dialog for deleting a tag. msgid "" @@ -2166,15 +2074,14 @@ msgid "" msgstr "" #. TRANS: Form validation error displayed if a given tag is invalid. -#, fuzzy msgid "Invalid tag." -msgstr "不正なサイズ。" +msgstr "無効なタグ。" #. TRANS: Form validation error displayed if a given tag is already present. #. TRANS: %s is the already present tag. -#, fuzzy, php-format +#, php-format msgid "You already have a tag named %s." -msgstr "すでにそのつぶやきを繰り返しています。" +msgstr "タグ名 %s は既に存在します。" #. TRANS: Text in confirmation dialog for setting a tag from public to private. msgid "" @@ -2183,13 +2090,12 @@ msgid "" msgstr "" #. TRANS: Server error displayed when updating a list fails. -#, fuzzy msgid "Could not update list." -msgstr "ユーザを更新できませんでした。" +msgstr "リストを更新できませんでした。" #. TRANS: Title for e-mail settings. msgid "Email settings" -msgstr "メール設定" +msgstr "電子メールの設定" #. TRANS: E-mail settings page instructions. #. TRANS: %%site.name%% is the name of the site. @@ -2200,7 +2106,7 @@ msgstr "%%site.name%% からのメールを管理。" #. TRANS: Form legend for e-mail settings form. #. TRANS: Field label for e-mail address input in e-mail settings form. msgid "Email address" -msgstr "メールアドレス" +msgstr "電子メールアドレス" #. TRANS: Form note in e-mail settings form. msgid "Current confirmed email address." @@ -2214,14 +2120,14 @@ msgstr "現在確認されているメールアドレス。" #. TRANS: Button text to untag a profile. msgctxt "BUTTON" msgid "Remove" -msgstr "回復" +msgstr "削除" #. TRANS: Form note in e-mail settings form. msgid "" "Awaiting confirmation on this address. Check your inbox (and spam box!) for " "a message with further instructions." msgstr "" -"このアドレスは承認待ちです。受信ボックス(とスパムボックス)に追加の指示が書" +"このアドレスは承認待ちです。受信ボックス(とスパムボックス)に更なる指示が書" "かれたメッセージが届いていないか確認してください。" #. TRANS: Instructions for e-mail address input form. Do not translate @@ -2236,7 +2142,6 @@ msgstr "メールアドレス、\"UserName@example.org\" のような" #. TRANS: Button label for adding an IM address in IM settings form. #. TRANS: Button label for adding a SMS phone number in SMS settings form. #. TRANS: Button text to tag a profile. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "追加" @@ -2258,24 +2163,25 @@ msgstr "新しいつぶやき投稿にこのアドレスへメールする" #. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned. #. TRANS: Instructions for incoming SMS e-mail address input form. msgid "Make a new email address for posting to; cancels the old one." -msgstr "投稿のための新しいEメールアドレスを作ります; 古い方を取り消します。" +msgstr "投稿のための新しい電子メールアドレスを作ります; 古い方を取り消します。" #. TRANS: Instructions for incoming e-mail address input form. 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. -#, fuzzy msgctxt "BUTTON" msgid "New" msgstr "New" #. TRANS: Form legend for e-mail preferences form. msgid "Email preferences" -msgstr "メールアドレス" +msgstr "電子メール設定" #. TRANS: Checkbox label in e-mail preferences form. msgid "Send me notices of new subscriptions through email." @@ -2302,21 +2208,19 @@ msgstr "友達が私に合図とメールを送ることを許可する。" #. TRANS: Checkbox label in e-mail preferences form. msgid "Publish a MicroID for my email address." -msgstr "私のメールアドレスのためにMicroIDを発行してください。" +msgstr "私のメールアドレスのために MicroID を発行してください。" #. TRANS: Confirmation message for successful e-mail preferences save. -#, fuzzy msgid "Email preferences saved." -msgstr "デザイン設定が保存されました。" +msgstr "電子メール設定が保存されました。" #. TRANS: Message given saving e-mail address without having provided one. msgid "No email address." -msgstr "メールアドレスがありません。" +msgstr "電子メールアドレスがありません。" #. TRANS: Message given saving e-mail address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that email address." -msgstr "そのメールアドレスを正規化できません" +msgstr "電子メールアドレスを正規化(normalize)できません。" #. 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. @@ -2335,9 +2239,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. -#, fuzzy msgid "Could not insert confirmation code." -msgstr "承認コードを追加できません" +msgstr "承認コードを追加できませんでした。" #. TRANS: Message given saving valid e-mail address that is to be confirmed. msgid "" @@ -2355,18 +2258,16 @@ msgid "No pending confirmation to cancel." msgstr "承認待ちのものはありません。" #. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address. -#, fuzzy msgid "That is the wrong email address." -msgstr "その IM アドレスは不正です。" +msgstr "電子メールアドレスが間違っています。" #. TRANS: Server error thrown on database error canceling e-mail address confirmation. -#, fuzzy msgid "Could not delete email confirmation." -msgstr "メール承認を削除できません" +msgstr "電子メール承認を削除できません。" #. TRANS: Message given after successfully canceling e-mail address confirmation. msgid "Email confirmation cancelled." -msgstr "承認待ちのものはありません。" +msgstr "電子メール承認がキャンセルされました。" #. TRANS: Message given trying to remove an e-mail address that is not #. TRANS: registered for the active user. @@ -2375,7 +2276,7 @@ msgstr "これはあなたのメールアドレスではありません。" #. TRANS: Message given after successfully removing a registered e-mail address. msgid "The email address was removed." -msgstr "入ってくるメールアドレスは削除されました。" +msgstr "この電子メールアドレスは削除されました。" #. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set. msgid "No incoming email address." @@ -2384,9 +2285,8 @@ 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 "ユーザレコードを更新できません。" +msgstr "ユーザーレコードを更新できませんでした。" #. TRANS: Message given after successfully removing an incoming e-mail address. #. TRANS: Confirmation text after updating SMS settings. @@ -2403,7 +2303,6 @@ msgid "This notice is already a favorite!" msgstr "このつぶやきはすでにお気に入りです!" #. TRANS: Page title for page on which favorite notices can be unfavourited. -#, fuzzy msgid "Disfavor favorite." msgstr "お気に入りをやめる" @@ -2444,8 +2343,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to add a " "notice to your favorites!" msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか、そして、あなたのお" -"気に入りにつぶやきを加える最初になりましょう!" +"なぜ [アカウント登録] (%%action.register%%) しないのですか、そして、あなたの" +"お気に入りにつぶやきを加える最初になりましょう!" #. TRANS: Title of RSS feed with favourite notices of a user. #. TRANS: %s is a user's nickname. @@ -2467,22 +2366,22 @@ msgstr "%1$s による %2$s 上のお気に入りを更新!" #. TRANS: Title for featured users section. #. TRANS: Menu item title in search group navigation panel. msgid "Featured users" -msgstr "フィーチャーされたユーザ" +msgstr "フィーチャーされたユーザー" #. TRANS: Page title for all but first page of featured users. #. TRANS: %d is the page number being displayed. #, php-format msgid "Featured users, page %d" -msgstr "フィーチャーされたユーザ、ページ %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." -msgstr "つぶやきIDがありません。" +msgstr "つぶやき ID がありません。" #. TRANS: Client error displayed when an invalid notice ID was given trying do display a file. msgid "No notice." @@ -2507,24 +2406,21 @@ msgstr "ファイルを読み込めません。" #. TRANS: Client error displayed when trying to assign an invalid role to a user. #. TRANS: Client error displayed when trying to revoke an invalid role. -#, fuzzy msgid "Invalid role." -msgstr "不正なトークン。" +msgstr "無効なロールです。" #. TRANS: Client error displayed when trying to assign an reserved role to a user. #. TRANS: Client error displayed when trying to revoke a reserved role. msgid "This role is reserved and cannot be set." -msgstr "" +msgstr "このロールは予約されており、設定することはできません。" #. TRANS: Client error displayed when trying to assign a role to a user while not being allowed to set roles. -#, fuzzy msgid "You cannot grant user roles on this site." -msgstr "あなたはこのサイトのサンドボックスユーザができません。" +msgstr "このサイトでのユーザーロールを付与することはできません。" #. TRANS: Client error displayed when trying to assign a role to a user that already has that role. -#, fuzzy msgid "User already has this role." -msgstr "ユーザは既に黙っています。" +msgstr "ユーザーは既にこのロールを持っています。" #. TRANS: Client error displayed trying to block a user from a group while not specifying a to be blocked user profile. #. TRANS: Client error displayed when trying to unblock a user from a group without providing a profile. @@ -2532,13 +2428,13 @@ msgstr "ユーザは既に黙っています。" #. 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. msgid "No profile specified." -msgstr "プロファイル記述がありません。" +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. msgid "No group specified." -msgstr "グループ記述がありません。" +msgstr "グループ説明がありません。" #. TRANS: Client error displayed trying to block a user from a group while not being an admin user. msgid "Only an admin can block group members." @@ -2546,16 +2442,16 @@ msgstr "管理者だけがグループメンバーをブロックできます。 #. TRANS: Client error displayed trying to block a user from a group while user is already blocked from the given group. msgid "User is already blocked from group." -msgstr "ユーザはすでにグループからブロックされています。" +msgstr "ユーザーはすでにグループからブロックされています。" #. TRANS: Client error displayed trying to block a user from a group while user is not a member of given group. msgid "User is not a member of group." -msgstr "ユーザはグループのメンバーではありません。" +msgstr "ユーザーはグループのメンバーではありません。" #. TRANS: Title for block user from group page. #. TRANS: Form legend for form to block user from a group. msgid "Block user from group" -msgstr "グループからユーザをブロック" +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. @@ -2565,22 +2461,20 @@ msgid "" "will be removed from the group, unable to post, and unable to subscribe to " "the group in the future." msgstr "" -"本当にユーザ %1$s をグループ %2$s からブロックしますか? 彼らはグループから削" -"除される、投稿できない、グループをフォローできなくなります。" +"本当にユーザー %1$s をグループ %2$s からブロックしますか? 彼らはグループから" +"削除される、投稿できない、グループをフォローできなくなります。" #. TRANS: Submit button title for 'No' when blocking a user from a group. -#, fuzzy msgid "Do not block this user from this group." -msgstr "このグループからこのユーザをブロックしない" +msgstr "このグループから、このユーザーをブロックしない。" #. TRANS: Submit button title for 'Yes' when blocking a user from a group. -#, fuzzy msgid "Block this user from this group." -msgstr "このグループからこのユーザをブロック" +msgstr "このグループから、このユーザーをブロックする。" #. 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." -msgstr "グループからのブロックユーザのデータベースエラー" +msgstr "グループからのブロックユーザーのデータベースエラー" #. TRANS: Client error displayed referring to a group's permalink without providing a group ID. #. TRANS: Client error displayed trying to perform an action without providing an ID. @@ -2636,7 +2530,7 @@ msgstr "%1$s グループメンバー、ページ %2$d" #. TRANS: Page notice for group members page. msgid "A list of the users in this group." -msgstr "このグループのユーザのリスト。" +msgstr "このグループのユーザーのリスト。" #. TRANS: Client error displayed when trying to approve group applicants without being a group administrator. msgid "Only the group admin may approve users." @@ -2644,20 +2538,19 @@ 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 group name, %2$s is a site name. #, php-format @@ -2665,14 +2558,13 @@ msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上の %1$s のメンバーから更新する" #. TRANS: Title for first page of the groups list. -#, fuzzy msgctxt "TITLE" msgid "Groups" msgstr "グループ" #. 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 "グループ、ページ %d" @@ -2680,7 +2572,7 @@ msgstr "グループ、ページ %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 " @@ -2689,9 +2581,9 @@ msgid "" "%%%)!" msgstr "" "%%%%site.name%%%% グループは、あなたと同様の関心事をもつ人々を見つけて話をす" -"ることができます。グループに入った後、あなたは他のメンバーに \"!groupname\" " -"文法を使ってメッセージを送ることができます。あなたが好きなグループがあるかど" -"うか[探してみる](%%%%action.groupsearch%%%%)か、あなた自身で[始めてください!]" +"ることができます。グループに入った後、他のメンバーに \"!groupname\" 文法を" +"使ってメッセージを送ることができます。あなたが好きなグループがあるかどうか " +"[探してみる] (%%%%action.groupsearch%%%%) か、あなた自身で[始めてください!] " "(%%%%action.newgroup%%%%)" #. TRANS: Link to create a new group on the group list page. @@ -2706,7 +2598,7 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" -"%%site.name%% のグループを、名前、場所、記述から検索。検索語はスペース区切" +"%%site.name%% のグループを、名前、場所、説明から検索。検索語はスペース区切" "り。3字以上。" #. TRANS: Title for page where groups can be searched. @@ -2722,13 +2614,13 @@ msgstr "結果なし。" #. 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." msgstr "" -"もし、あなたが探しているグループが見つからないとき、あなたは[それを作成](%%" -"action.newgroup%%)できます。" +"もし、探しているグループが見つからないとき、あなたはグループを [作成] (%%" +"action.newgroup%%) することができます。" #. TRANS: Additional text on page where groups can be searched if no results were found for a query for a not logged in user. #. TRANS: This message contains Markdown links in the form [link text](link). @@ -2737,8 +2629,8 @@ msgid "" "Why not [register an account](%%action.register%%) and [create the group](%%" "action.newgroup%%) yourself!" msgstr "" -"なぜ[アカウント登録](%%action.register%%) や [グループ作成](%%action.newgroup" -"%%) しないのか!" +"なぜ [アカウント登録] (%%action.register%%) や [グループ作成] (%%action." +"newgroup%%) をしないのですか!" #. TRANS: Client error displayed when trying to unblock a user from a group without being an administrator for the group. msgid "Only an admin can unblock group members." @@ -2746,7 +2638,7 @@ msgstr "管理者だけがグループメンバーをアンブロックできま #. TRANS: Client error displayed when trying to unblock a non-blocked user from a group. msgid "User is not blocked from group." -msgstr "ユーザはグループからブロックされていません。" +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. @@ -2755,78 +2647,70 @@ msgstr "ブロックの削除エラー" #. TRANS: Title for Instant Messaging settings. msgid "IM settings" -msgstr "IM設定" +msgstr "IM 設定" #. 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 "" -"Jabber/GTalk [instant messages](%%doc.im%%) 経由で通知の送信、受信が可能で" -"す。下のアドレスを設定して下さい。" +"インスタントメッセージ [instant messages] (%%doc.im%%) 経由でつぶやきの送信、" +"受信が可能です。あなたのアドレスと以下の設定を行ってください。" #. TRANS: Message given in the IM settings if IM is not enabled on the site. msgid "IM is not available." -msgstr "IM が利用不可。" +msgstr "IM が利用不可。" #. 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 "現在確認されているメールアドレス。" +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 "" -"このアドレスは承認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ" -"たメッセージを確認してください。(%s を友人リストに追加しましたか?)" +"このアドレスは承認待ちです。%1$s アカウントで追加の指示が書かれたメッセージを" +"確認してください。(%2$s を友人リストに追加しましたか?)" #. TRANS: Field label for IM address. msgid "IM address" -msgstr "IMアドレス" +msgstr "IM アドレス" #. 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 msgid "IM Preferences" -msgstr "設定が保存されました。" +msgstr "IM の設定" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me notices" -msgstr "つぶやきを送る" +msgstr "つぶやきを送信する" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Post a notice when my status changes." -msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" +msgstr "ステータスが変更された時に通知を送る。" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Send me replies from people I'm not subscribed to." -msgstr "" -"Jabber/GTalkを通して回答を、私がフォローされていない人々から私に送ってくださ" -"い。" +msgstr "私がフォローされていない人々から、私に返信を送る。" #. TRANS: Checkbox label in IM preferences form. -#, fuzzy msgid "Publish a MicroID" -msgstr "私のメールアドレスのためにMicroIDを発行してください。" +msgstr "MicroID を公開する。" #. TRANS: Server error thrown on database error updating IM preferences. -#, fuzzy msgid "Could not update IM preferences." -msgstr "ユーザを更新できませんでした。" +msgstr "IM 設定を更新できませんでした。" #. TRANS: Confirmation message for successful IM preferences save. #. TRANS: Confirmation message after saving preferences. @@ -2834,76 +2718,66 @@ msgid "Preferences saved." msgstr "設定が保存されました。" #. TRANS: Message given saving IM address without having provided one. -#, fuzzy msgid "No screenname." -msgstr "ニックネームがありません。" +msgstr "スクリーンネームがありません。" #. TRANS: Form validation error when no transport is available setting an IM address. -#, fuzzy msgid "No transport." -msgstr "つぶやきがありません。" +msgstr "通信方法がありません。" #. TRANS: Message given saving IM address that cannot be normalised. -#, fuzzy msgid "Cannot normalize that screenname." -msgstr "その Jabbar ID を正規化できません" +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. -#, fuzzy msgid "Screenname already belongs to another user." -msgstr "Jabber ID jは既に別のユーザが使用しています。" +msgstr "スクリーンネームは、既に別のユーザーが使用しています。" #. 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 "" -"承認コードを入力された IM アドレスに送信しました。あなたにメッセージを送れる" -"ようにするには%sを承認してください。" +msgstr "確認用コードを入力された IM アドレスに送信しました。" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. msgid "That is the wrong IM address." -msgstr "その IM アドレスは不正です。" +msgstr "IM アドレスが間違っています。" #. TRANS: Server error thrown on database error canceling IM address confirmation. -#, fuzzy msgid "Could not delete confirmation." -msgstr "メール承認を削除できません" +msgstr "メール確認を削除できませんでした。" #. TRANS: Message given after successfully canceling IM address confirmation. msgid "IM confirmation cancelled." -msgstr "確認コードがありません。" +msgstr "IM 確認がキャンセルされました。" #. 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 "それはあなたの電話番号ではありません。" +msgstr "それはあなたのスクリーンネームではありません。" #. TRANS: Message given after successfully removing a registered Instant Messaging address. msgid "The IM address was removed." -msgstr "入ってくるメールアドレスは削除されました。" +msgstr "IM アドレスは削除されました。" #. 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. #, php-format msgid "Inbox for %1$s - page %2$d" -msgstr "%1$s の受信箱 - ページ %2$d" +msgstr "%1$s の受信トレイ - ページ %2$d" #. TRANS: Title for the first page of the inbox page. #. TRANS: %s is the user's nickname. #, php-format msgid "Inbox for %s" -msgstr "%s の受信箱" +msgstr "%s の受信トレイ" #. TRANS: Instructions for user inbox page. msgid "This is your inbox, which lists your incoming private messages." msgstr "" -"これはあなたの受信箱です、やってきたプライベートメッセージをリストします。" +"これはあなたの受信トレイです、受信したプライベートメッセージをリストします。" #. TRANS: Client error displayed when trying to sent invites while they have been disabled. msgid "Invites have been disabled." @@ -2913,57 +2787,52 @@ msgstr "招待は無効にされました。" #. TRANS: %s is the StatusNet site name. #, 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" -msgstr "新しいユーザを招待" +msgstr "新しいユーザーを招待" #. TRANS: Message displayed inviting users to use a StatusNet site while the inviting user #. 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[0] "すでにこのユーザーをフォローしています:" #. 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)" +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. -#, 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] "" -"これらの人々は既にユーザです、そして、あなたは自動的に彼らにフォローされまし" -"た:" +"この方は既にユーザーです、そして、この方を自動的にフォローしました。:" #. 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. -#, fuzzy msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" -msgstr[0] "招待を以下の人々に送信しました:" +msgstr[0] "招待状を以下の方に送信しました:" #. TRANS: Generic message displayed after sending out one or more invitations to #. TRANS: people to join a StatusNet site. @@ -2992,15 +2861,14 @@ 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 に参加しました" #. 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. @@ -3014,11 +2882,11 @@ msgstr "ライセンス" #. TRANS: Form instructions for the site license admin panel. msgid "License for this StatusNet site" -msgstr "このStatusNetサイトのライセンス" +msgstr "この StatusNet サイトのライセンス" #. TRANS: Client error displayed selecting an invalid license in the license admin panel. msgid "Invalid license selection." -msgstr "" +msgstr "無効なライセンスを選択しています。" #. TRANS: Client error displayed when not specifying an owner for the all rights reserved license in the license admin panel. msgid "" @@ -3027,29 +2895,29 @@ 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 "ライセンスの URL が無効。" #. TRANS: Client error displayed specifying an invalid license image URL in the license admin panel. msgid "Invalid license image URL." -msgstr "" +msgstr "ライセンスの画像 URL が無効。" #. 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 "ライセンス URL は、ブランクまたは有効な URL でなければなりません。" #. 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 "" +"ライセンスの画像 URL は、ブランクまたは有効な URL でなければなりません。" #. TRANS: Form legend in the license admin panel. msgid "License selection" -msgstr "" +msgstr "ライセンス選択" #. TRANS: License option in the license admin panel. #. TRANS: Checkbox label to mark a list private. @@ -3062,57 +2930,55 @@ 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 msgid "Select a license." -msgstr "キャリア選択" +msgstr "ライセンス選択" #. TRANS: Form legend in the license admin panel. msgid "License details" -msgstr "" +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)." -msgstr "" +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" -msgstr "" +msgstr "ライセンス URL" #. TRANS: Field title in the license admin panel. msgid "URL for more information about the license." -msgstr "" +msgstr "ライセンスについての詳細情報の URL。" #. TRANS: Field label in the license admin panel. msgid "License Image URL" -msgstr "" +msgstr "ライセンス画像 URL" #. TRANS: Field title in the license admin panel. msgid "URL for an image to display with the license." -msgstr "" +msgstr "ライセンスを表示するイメージの URL。" #. TRANS: Button title in the license admin panel. -#, fuzzy msgid "Save license settings." -msgstr "サイト設定の保存" +msgstr "ライセンス設定を保存する。" #. 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. @@ -3122,12 +2988,12 @@ msgstr "既にログインしています。" #. TRANS: Form validation error displayed when trying to log in with incorrect credentials. msgid "Incorrect username or password." -msgstr "ユーザ名またはパスワードが間違っています。" +msgstr "ユーザー名またはパスワードが間違っています。" #. TRANS: Server error displayed when during login a server error occurs. #. TRANS: Server error displayed when a user object could not be created trying to login using "one time password login". msgid "Error setting user. You are probably not authorized." -msgstr "ユーザ設定エラー。 あなたはたぶん承認されていません。" +msgstr "ユーザー設定エラー。 あなたはたぶん承認されていません。" #. TRANS: Page title for login page. msgid "Login" @@ -3138,7 +3004,6 @@ msgid "Login to site" msgstr "サイトへログイン" #. TRANS: Field label on login page. -#, fuzzy msgid "Username or email address" msgstr "ニックネームまたはメールアドレス" @@ -3150,43 +3015,41 @@ msgstr "ログイン状態を保持" #. TRANS: Checkbox title on login page. #. TRANS: Checkbox title on account registration page. msgid "Automatically login in the future; not for shared computers!" -msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!" +msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!" #. TRANS: Button text for log in on login page. -#, fuzzy msgctxt "BUTTON" msgid "Login" msgstr "ログイン" #. TRANS: Link text for link to "reset password" on login page. msgid "Lost or forgotten password?" -msgstr "パスワードを紛失、忘れた?" +msgstr "パスワードを紛失、または忘れた?" #. TRANS: Form instructions on login page before being able to change user settings. msgid "" "For security reasons, please re-enter your user name and password before " "changing your settings." msgstr "" -"セキュリティー上の理由により、設定を変更する前にユーザ名とパスワードを入力し" -"て下さい。" +"セキュリティー上の理由により、設定を変更する前に再度ユーザー名とパスワードを" +"入力して下さい。" #. TRANS: Form instructions on login page. -#, fuzzy msgid "Login with your username and password." -msgstr "ユーザ名とパスワードでログイン" +msgstr "ユーザー名とパスワードでログイン。" #. TRANS: Form instructions on login page. This message contains Markdown links in the form [Link text](Link). #. TRANS: %%action.register%% is a link to the registration page. -#, fuzzy, php-format +#, php-format msgid "" "Don't have a username yet? [Register](%%action.register%%) a new account." msgstr "" -"ユーザ名とパスワードで、ログインしてください。 まだユーザ名を持っていません" -"か? 新しいアカウントを [登録](%%action.register%%)。" +"まだユーザー名を持っていませんか? 新しいアカウントを [登録] (%%action." +"register%%)してください。" #. TRANS: Client error displayed when trying to make another user admin on the Make Admin page while not an admin. msgid "Only an admin can make another user an admin." -msgstr "管理者だけが別のユーザを管理者にすることができます。" +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. @@ -3210,7 +3073,7 @@ msgstr "%1$s をグループ %2$s の管理者にすることはできません" #. TRANS: Client error displayed trying to make a micro summary without providing a status. msgid "No current status." -msgstr "結果なし。" +msgstr "現在のステータスはありません。" #. TRANS: This is the title of the form for adding a new application. msgid "New application" @@ -3226,25 +3089,23 @@ msgstr "このフォームを使って新しいアプリケーションを登録 #. TRANS: Validation error shown when not providing a source URL in the "New application" form. msgid "Source URL is required." -msgstr "ソースURLが必要です。" +msgstr "ソース URL が必要です。" #. TRANS: Server error displayed when an application could not be registered in the database through the "New application" form. msgid "Could not create application." msgstr "アプリケーションを作成できません。" #. TRANS: Form validation error messages displayed when uploading an invalid application logo. -#, fuzzy msgid "Invalid image." -msgstr "不正なサイズ。" +msgstr "無効な画像。" #. TRANS: Title for form to create a group. msgid "New group" msgstr "新しいグループ" #. 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 "このグループのメンバーではありません。" +msgstr "このサイトにグループを作成することは許可されていません。" #. TRANS: Form instructions for group create form. msgid "Use this form to create a new group." @@ -3257,16 +3118,15 @@ 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. -#, fuzzy msgid "You cannot send a message to this user." -msgstr "このユーザにメッセージを送ることはできません。" +msgstr "このユーザーにメッセージを送信することはできません。" #. TRANS: Form validator error displayed trying to send a direct message without content. #. 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. msgid "No content!" -msgstr "コンテンツがありません!" +msgstr "コンテンツがありません!" #. TRANS: Form validation error displayed trying to send a direct message without specifying a recipient. msgid "No recipient specified." @@ -3291,7 +3151,6 @@ 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 "新しいつぶやき" @@ -3326,8 +3185,8 @@ msgid "" "Be the first to [post on this topic](%%%%action.newnotice%%%%?" "status_textarea=%s)!" msgstr "" -"最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして" -"ください!" +"最初の [このトピックに投稿] (%%%%action.newnotice%%%%?status_textarea=%s) を" +"してください!" #. TRANS: Text for not logged in users making a query for notices without results. #. TRANS: This message contains Markdown links. @@ -3336,8 +3195,9 @@ msgid "" "Why not [register an account](%%%%action.register%%%%) and be the first to " "[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" msgstr "" -"なぜ [アカウント登録](%%%%action.register%%%%) しないのですか、そして最初の" -"[このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s)してください!" +"なぜ [アカウント登録] (%%%%action.register%%%%) しないのですか、そして最初の" +"[このトピック投稿] (%%%%action.newnotice%%%%?status_textarea=%s) してくださ" +"い!" #. TRANS: RSS notice search feed title. %s is the query. #, php-format @@ -3346,18 +3206,17 @@ msgstr "%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 "\"%2$s\" 上の検索語 \"$1$s\" に一致するすべての更新" +msgstr "\"%2$s\" 上で検索語 \"%1$s\" に一致するすべての更新" #. TRANS: Client error displayed trying to nudge a user that cannot be nudged. -#, fuzzy 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. msgid "Nudge sent" @@ -3394,13 +3253,13 @@ msgstr "" #. TRANS: Client error when trying to revoke access for an application while not being a user of it. msgid "You are not a user of that application." -msgstr "あなたはそのアプリケーションのユーザではありません。" +msgstr "あなたはそのアプリケーションのユーザーではありません。" #. TRANS: Client error when revoking access has failed for some reason. #. TRANS: %s is the application ID revoking access failed for. -#, fuzzy, php-format +#, php-format msgid "Unable to revoke access for application: %s." -msgstr "アプリケーションのための取消しアクセスができません: " +msgstr "アプリケーションのアクセスを取り消すことができません: %s。" #. 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. @@ -3424,23 +3283,25 @@ msgid "" "Are you a developer? [Register an OAuth client application](%s) to use with " "this instance of StatusNet." msgstr "" +"あなたは開発者ですか? StatusNet のこのインスタンスを [OAuth クライアントアプ" +"リケーションの登録] (%s) で使用します。" #. 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 "API メソッドが見つかりません。" +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. 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. @@ -3451,20 +3312,20 @@ 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. #, php-format msgid "\"%s\" not supported for oembed requests." -msgstr "" +msgstr " \"%s\" は oEmbed 要求をサポートしていません。" #. 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 @@ -3478,7 +3339,7 @@ msgstr "サポートされていないデータ形式。" #. TRANS: ShortName in the OpenSearch interface when trying to find users. msgid "People Search" -msgstr "ピープル検索" +msgstr "ユーザーの検索" #. TRANS: ShortName in the OpenSearch interface when trying to find notices. msgid "Notice Search" @@ -3486,11 +3347,11 @@ msgstr "つぶやき検索" #. TRANS: Client error displayed trying to use "one time password login" without specifying a user. msgid "No user ID specified." -msgstr "ユーザIDの記述がありません。" +msgstr "ユーザー ID の指定ありません。" #. TRANS: Client error displayed trying to use "one time password login" without specifying a login token. msgid "No login token specified." -msgstr "ログイントークンの記述がありません。" +msgstr "ログイントークンの指定がありません。" #. TRANS: Client error displayed trying to use "one time password login" without requesting a login token. msgid "No login token requested." @@ -3498,31 +3359,30 @@ msgstr "ログイントークンが要求されていません。" #. TRANS: Client error displayed trying to use "one time password login" while specifying an invalid login token. msgid "Invalid login token specified." -msgstr "不正なログイントークンが指定されています。" +msgstr "無効なログイントークンが指定されています。" #. TRANS: Client error displayed trying to use "one time password login" while specifying an expired login token. msgid "Login token expired." -msgstr "ログイントークンが期限切れです・" +msgstr "ログイントークンが期限切れです。" #. TRANS: Title for outbox for any but the fist page. #. TRANS: %1$s is the user nickname, %2$d is the page number. #, php-format msgid "Outbox for %1$s - page %2$d" -msgstr "%1$s の送信箱 - ページ %2$d" +msgstr "%1$s の送信トレイ - ページ %2$d" #. TRANS: Title for first page of outbox. #, php-format msgid "Outbox for %s" -msgstr "%s の送信箱" +msgstr "%s の送信トレイ" #. TRANS: Instructions for outbox. msgid "This is your outbox, which lists private messages you have sent." msgstr "" -"これはあなたの送信箱です、あなたが送ったプライベート・メッセージをリストしま" -"す。" +"これはあなたの送信トレイです、あなたが送ったプライベート・メッセージをリスト" +"します。" #. TRANS: Title for page where to change password. -#, fuzzy msgctxt "TITLE" msgid "Change password" msgstr "パスワードの変更" @@ -3547,25 +3407,21 @@ msgstr "新しいパスワード" #. TRANS: Field title on page where to change password. #. TRANS: Field title on account registration page. -#, fuzzy msgid "6 or more characters." -msgstr "6文字以上" +msgstr "6 文字以上。" #. 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 "パスワード確認" +msgstr "確認" #. TRANS: Field title on page where to change password. #. TRANS: Title 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 "上と同じパスワード" +msgstr "上記と同じパスワード。" #. TRANS: Button text on page where to change password. -#, fuzzy msgctxt "BUTTON" msgid "Change" msgstr "変更" @@ -3577,23 +3433,20 @@ 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 "パスワードが一致しません。" #. TRANS: Form validation error on page where to change password. -#, fuzzy msgid "Incorrect old password." -msgstr "古いパスワードが間違っています。" +msgstr "古いパスワードが正しくありません。" #. TRANS: Form validation error on page where to change password. msgid "Error saving user; invalid." -msgstr "ユーザ保存エラー; 不正なユーザ" +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. -#, fuzzy msgid "Cannot save new password." msgstr "新しいパスワードを保存できません。" @@ -3607,7 +3460,7 @@ msgstr "パス" #. TRANS: Form instructions for Path admin panel. msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "この StatusNet サイトのパスとサーバの設定" #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the directory that could not be read from. @@ -3629,14 +3482,14 @@ msgstr "バックグラウンドディレクトリ" #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the locales directory that could not be read from. -#, fuzzy, php-format +#, php-format msgid "Locales directory not readable: %s." -msgstr "場所ディレクトリが読み込めません: %s" +msgstr "ローカルディレクトリが読み込めません: %s。" #. TRANS: Client error in Paths admin panel. #. TRANS: %s is the SSL server URL that is too long. msgid "Invalid SSL server. The maximum length is 255 characters." -msgstr "不正な SSL サーバー。最大 255 文字まで。" +msgstr "無効な SSL サーバー。最大 255 文字まで。" #. TRANS: Fieldset legend in Paths admin panel. msgid "Site" @@ -3655,43 +3508,37 @@ msgid "Path" msgstr "パス" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Site path." -msgstr "サイトパス" +msgstr "サイトのパス" #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Locale directory" -msgstr "テーマディレクトリ" +msgstr "ローカルディレクトリ" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Directory path to locales." -msgstr "ロケールへのディレクトリパス" +msgstr "ローカルのディレクトリパス。" #. TRANS: Checkbox label in Paths admin panel. msgid "Fancy URLs" msgstr "" #. TRANS: Field title in Paths admin panel. -#, fuzzy msgid "Use fancy URLs (more readable and memorable)?" -msgstr "Fancy URL (読みやすく忘れにくい) を使用しますか?" +msgstr "Fancy URLs (読みやすく、忘れにくい) を使用しますか?" #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "Theme" msgstr "テーマ" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for themes." -msgstr "サイトのテーマ" +msgstr "テーマ用サーバー" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to themes." -msgstr "" +msgstr "テーマの Web パス。" #. TRANS: Field label in Paths admin panel. msgid "SSL server" @@ -3699,26 +3546,23 @@ msgstr "SSLサーバ" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL server for themes (default: SSL server)." -msgstr "" +msgstr "テーマ用 SSL サーバ ( デフォルト: SSL サーバ)。" #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "SSL path" -msgstr "サイトパス" +msgstr "SSL のパス" #. TRANS: Tooltip for field label in Paths admin panel. msgid "SSL path to themes (default: /theme/)." -msgstr "" +msgstr "テーマの SSL パス (デフォルト: /theme/ )。" #. TRANS: Field label in Paths admin panel. -#, fuzzy msgid "Directory" -msgstr "テーマディレクトリ" +msgstr "ディレクトリ" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where themes are located." -msgstr "ロケールへのディレクトリパス" +msgstr "テーマが置かれているディレクトリ" #. TRANS: Fieldset legend in Paths admin panel. msgid "Avatars" @@ -3729,66 +3573,58 @@ msgid "Avatar server" msgstr "アバターサーバー" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for avatars." -msgstr "サイトのテーマ" +msgstr "アバター用サーバ" #. TRANS: Field label in Paths admin panel. msgid "Avatar path" msgstr "アバターパス" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Web path to avatars." -msgstr "アバターの更新に失敗しました。" +msgstr "アバターの Web パス" #. TRANS: Field label in Paths admin panel. msgid "Avatar directory" msgstr "アバターディレクトリ" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where avatars are located." -msgstr "ロケールへのディレクトリパス" +msgstr "アバターが置かれているディレクトリ" #. TRANS: Fieldset legens in Paths admin panel. msgid "Attachments" msgstr "添付" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for attachments." -msgstr "サイトのテーマ" +msgstr "添付ファイル用サーバ" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Web path to attachments." -msgstr "そのような添付はありません。" +msgstr "添付ファイルへの Web パス" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server for attachments on SSL pages." -msgstr "サイトのテーマ" +msgstr "SSL ページの添付ファイル用サーバ" #. TRANS: Tooltip for field label in Paths admin panel. msgid "Web path to attachments on SSL pages." -msgstr "" +msgstr "SSL ページを Web パスに添付します。" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Directory where attachments are located." -msgstr "ロケールへのディレクトリパス" +msgstr "添付ファイルが置かれているディレクトリ" #. TRANS: Fieldset legend in Paths admin panel. -#, fuzzy msgctxt "LEGEND" msgid "SSL" -msgstr "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 "" +msgstr "しない" #. TRANS: Drop down option in Paths admin panel (option for "When to use SSL"). msgid "Sometimes" @@ -3803,12 +3639,10 @@ msgid "Use SSL" msgstr "SSL 使用" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "When to use SSL." -msgstr "SSL 使用時" +msgstr "SSL を使用する場合。" #. TRANS: Tooltip for field label in Paths admin panel. -#, fuzzy msgid "Server to direct SSL requests to." msgstr "ダイレクト SSL リクエストを向けるサーバ" @@ -3828,97 +3662,92 @@ msgstr "" #. TRANS: Title of a page where users can search for other users. msgid "People search" -msgstr "ピープルサーチ" +msgstr "ユーザーの検索" #. TRANS: Title for list page. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Public list %s" -msgstr "パブリックタグクラウド" +msgstr "公開リスト %s" #. TRANS: Title for list page. #. TRANS: %1$s is a list, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Public list %1$s, page %2$d" -msgstr "%1$s への返信、ページ %2$s" +msgstr "公開リスト %1$s、ページ %2$d" #. TRANS: Message for anonymous users on list page. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Lists are how you sort similar people on %%site.name%%, a [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) service based on the Free " "Software [StatusNet](http://status.net/) tool. You can then easily keep " "track of what they are doing by subscribing to the list's timeline." msgstr "" -"**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" -"する短いメッセージを共有します。" +"リストは、%%site.name%% 上の人々を並べ替える方法です。フリーソフトウェアツー" +"ル [StatusNet] (http://status.net/) を基にした [ミニブログ] (http://ja." +"wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスで" +"す。リストのタイムラインをフォローする事で、みんなが何をしているかを簡単に追" +"跡することができます。" #. TRANS: Client error displayed when a tagger is expected but not provided. -#, fuzzy msgid "No tagger." msgstr "そのようなタグはありません。" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s" -msgstr "%2$s 上の %1$s への返信!" +msgstr "%2$s の %1$s に記載された人々" #. TRANS: Title for list of people listed by the user. #. TRANS: %1$s is a list, %2$s is a username, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "People listed in %1$s by %2$s, page %3$d" -msgstr "%1$s への返信、ページ %2$s" +msgstr "%2$s の %1$s に記載された人々、ページ %3$d" #. TRANS: Addition in tag membership list for creator of a tag. #. TRANS: Addition in tag subscribers list for creator of a tag. -#, fuzzy msgid "Creator" -msgstr "作成日" +msgstr "作成者" #. TRANS: Title for lists by a user page for a private tag. -#, fuzzy msgid "Private lists by you" -msgstr "%s グループを編集" +msgstr "あなたのプライベートのリスト" #. TRANS: Title for lists by a user page for a public tag. -#, fuzzy msgid "Public lists by you" -msgstr "パブリックタグクラウド" +msgstr "あなたの公開リスト" #. TRANS: Title for lists by a user page. -#, fuzzy msgid "Lists by you" -msgstr "%s グループを編集" +msgstr "あなたのリスト" #. TRANS: Title for lists by a user page. #. TRANS: %s is a user nickname. #, php-format msgid "Lists by %s" -msgstr "" +msgstr "%s のリスト" #. TRANS: Title for lists by a user page. #. TRANS: %1$s is a user nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists by %1$s, page %2$d" -msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" +msgstr "%1$s のリスト、ページ %2$d" #. TRANS: Client error displayed when trying view another user's private lists. msgid "You cannot view others' private lists" -msgstr "" +msgstr "他人のプライベートリストを表示することはできません。" #. TRANS: Mode selector label. -#, fuzzy msgid "Mode" -msgstr "管理" +msgstr "モード" #. TRANS: Link text to show lists for user %s. -#, fuzzy, php-format +#, php-format msgid "Lists for %s" -msgstr "%s の送信箱" +msgstr "%s のリスト" #. TRANS: Fieldset legend. #. TRANS: Fieldset legend on gallery action page. @@ -3927,25 +3756,22 @@ msgstr "フィルターにかけるタグを選択" #. TRANS: Checkbox title. msgid "Show private tags." -msgstr "" +msgstr "プライベートタグを表示。" #. TRANS: Checkbox label to show public tags. -#, fuzzy msgctxt "LABEL" msgid "Public" msgstr "パブリック" #. TRANS: Checkbox title. -#, fuzzy msgid "Show public tags." -msgstr "そのようなタグはありません。" +msgstr "パブリックのタグを表示する。" #. TRANS: Submit button text for tag filter form. #. TRANS: Submit button text on gallery action page. -#, fuzzy msgctxt "BUTTON" msgid "Go" -msgstr "移動" +msgstr "" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3956,20 +3782,20 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" -"**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" -"する短いメッセージを共有します。" +"これは **%s** によって作成されたリストです。リストは、%%site.name%% 上の人々" +"を並べ替える方法です。フリーソフトウェアツール [StatusNet] (http://status." +"net/) を基にした [ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%E3%83%" +"8B%E3%83%96%E3%83%AD%E3%82%B0) サービスです。タグのタイムラインをフォローする" +"事で、みんなが何をしているのか簡単に追跡することができます。" #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not created any [lists](%%%%doc.lists%%%%) yet." -msgstr "" -"まだだれも [ハッシュタグ](%%doc.tags%%) 付きのつぶやきを投稿していません。" +msgstr "%s は [lists] (%%%%doc.lists%%%%) をまだ作成していません。" #. TRANS: Page title. %s is a tagged user's nickname. #, php-format @@ -3977,9 +3803,9 @@ msgid "Lists with %s in them" msgstr "" #. TRANS: Page title. %1$s is a tagged user's nickname, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists with %1$s, page %2$d" -msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" +msgstr "%1$s のリスト、ページ %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3990,49 +3816,49 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" -"**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" -"する短いメッセージを共有します。" +"これは **%s** のリストです。リストは、%%site.name%% 上の人々を並べ替える方法" +"です。フリーソフトウェアツール [StatusNet] (http://status.net/) を基にした " +"[ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%83%" +"AD%E3%82%B0) サービスです。タグのタイムラインをフォローする事で、みんなが何を" +"しているのか簡単に追跡することができます。" #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "%s has not been [listed](%%%%doc.lists%%%%) by anyone yet." -msgstr "" -"まだだれも [ハッシュタグ](%%doc.tags%%) 付きのつぶやきを投稿していません。" +msgstr "%s はだだれも [リスト] (%%%%doc.lists%%%%) にしていません。" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s" -msgstr "%2$s 上の %1$s への返信!" +msgstr "%2$s の %1$s フォロー一覧" #. TRANS: Page title for list of list subscribers. #. TRANS: %1$s is a list, %2$s is a user nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Subscribers to list %1$s by %2$s, page %3$d" -msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" +msgstr "%2$s の %1$s フォロー一覧、ページ %3$d" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %s" -msgstr "人々は %s をフォローしました。" +msgstr "%s のフォロー一覧" #. TRANS: Title for page that displays lists subscribed to by a user. #. TRANS: %1$s is a profile nickname, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Lists subscribed to by %1$s, page %2$d" -msgstr "%1$s フォローしている、ページ %2$d" +msgstr "%1$s のフォロー一覧、ページ %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists subscribed to by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists subscribed to by **%s**. Lists are how you sort similar " "people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/" @@ -4040,15 +3866,16 @@ msgid "" "net/) tool. You can easily keep track of what they are doing by subscribing " "to the list's timeline." msgstr "" -"**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" -"する短いメッセージを共有します。" +"これは **%s** がフォローしているリストです。リストは、%%site.name%% 上の人々" +"を並べ替える方法です。フリーソフトウェアツール [StatusNet] (http://status." +"net/) を基にした [ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%E3%83%" +"8B%E3%83%96%E3%83%AD%E3%82%B0) サービスです。リストのタイムラインをフォローす" +"る事で、みんなが何をしているのか簡単に追跡することができます。" #. 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. @@ -4056,25 +3883,22 @@ msgstr "" #. TRANS: Do not translate POST. #. TRANS: Client error displayed when trying to use another method than POST. msgid "This action only accepts POST requests." -msgstr "" +msgstr "この操作は POST リクエストのみ受け付けます。" #. TRANS: Client error displayed when trying to enable or disable a plugin without access rights. -#, fuzzy msgid "You cannot administer plugins." -msgstr "ユーザを削除できません" +msgstr "プラグインを管理することはでできません。" #. TRANS: Client error displayed when trying to enable or disable a non-existing plugin. -#, fuzzy msgid "No such plugin." -msgstr "そのようなページはありません。" +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 "プラグイン" @@ -4085,32 +3909,35 @@ msgid "" "\"http://status.net/wiki/Plugins\">online plugin documentation for more " "details." 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 "" "All default plugins have been disabled from the site's configuration file." msgstr "" +"サイトの設定ファイルにより、すべてのデフォルトプラグインが無効になっていま" +"す。" #. TRANS: Client error displayed when trying to add an unindentified field to profile. #. TRANS: %s is a field name. #, php-format msgid "Unidentified field %s." -msgstr "" +msgstr "不明なフィールド %s。" #. TRANS: Page title. -#, fuzzy msgctxt "TITLE" msgid "Search results" -msgstr "サイト検索" +msgstr "検索結果" #. TRANS: Error message in case a search is shorter than three characters. msgid "The search string must be at least 3 characters long." -msgstr "" +msgstr "検索文字列は、少なくとも 3 文字以上でなければなりません。" #. TRANS: Page title for profile settings. msgid "Profile settings" @@ -4130,9 +3957,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. @@ -4149,9 +3975,8 @@ msgstr "ホームページ" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. -#, fuzzy msgid "URL of your homepage, blog, or profile on another site." -msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" +msgstr "ホームページ、ブログ、または別のサイトのプロファイルの URL" #. TRANS: Tooltip for field label in form for profile settings. Plural #. TRANS: is decided by the number of characters available for the @@ -4159,16 +3984,15 @@ 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 +#, 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[0] "%d 字以内で自分自身と自分の興味について書いてください" #. 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 "自分自身と自分の興味について書いてください" +msgstr "自分自身と自分の興味について書いてください。" #. TRANS: Text area label in form for profile settings where users can provide #. TRANS: their biography. @@ -4185,35 +4009,32 @@ msgstr "場所" #. 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 "自分のいる場所。例:「都市, 都道府県 (または地域), 国」" +msgstr "あなたの居る場所。例:「都市, 都道府県 (または地域), 国」" #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" -msgstr "つぶやきを投稿するときには私の現在の場所を共有してください" +msgstr "つぶやきを投稿するときには私の位置情報を共有してください" #. TRANS: Field label in form for profile settings. msgid "Tags" msgstr "タグ" #. TRANS: Tooltip for field label in form for profile settings. -#, fuzzy msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"自分自身についてのタグ (アルファベット、数字、-、.、_)、カンマまたは空白区切" -"りで" +"自分自身についてのタグ (アルファベット、 数字、 -、 .、 _)、カンマまたは空白" +"区切りで。" #. TRANS: Dropdownlist label in form for profile settings. msgid "Language" msgstr "言語" #. TRANS: Tooltip for dropdown list label in form for profile settings. -#, fuzzy msgid "Preferred language." -msgstr "ご希望の言語" +msgstr "優先する設定。" #. TRANS: Dropdownlist label in form for profile settings. msgid "Timezone" @@ -4221,26 +4042,24 @@ msgstr "タイムゾーン" #. TRANS: Tooltip for dropdown list label in form for profile settings. msgid "What timezone are you normally in?" -msgstr "普段のタイムゾーンはどれですか?" +msgstr "通常のタイムゾーンはどれですか?" #. TRANS: Checkbox label in form for profile settings. -#, fuzzy msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)." -msgstr "自分をフォローしている者を自動的にフォローする (BOTに最適)" +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 "フォロー" +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." @@ -4255,10 +4074,10 @@ 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. -#, fuzzy, php-format +#, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." -msgstr[0] "自己紹介が長すぎます (最長%d文字)。" +msgstr[0] "自己紹介が長すぎます (最大 %d 文字まで)。" #. TRANS: Validation error in form for profile settings. #. TRANS: Client error displayed trying to save site settings without a timezone. @@ -4266,9 +4085,8 @@ msgid "Timezone not selected." msgstr "タイムゾーンが選ばれていません。" #. TRANS: Validation error in form for profile settings. -#, fuzzy msgid "Language is too long (maximum 50 characters)." -msgstr "言語が長すぎます。(最大50字)" +msgstr "言語が長すぎます (最大 50 文字まで)。" #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. @@ -4276,20 +4094,20 @@ msgstr "言語が長すぎます。(最大50字)" #. TRANS: %s is the invalid tag. #. TRANS: Error displayed if a given tag is invalid. #. TRANS: %s is the invalid tag. -#, fuzzy, php-format +#, php-format msgid "Invalid tag: \"%s\"." -msgstr "不正なタグ: \"%s\"" +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. -#, fuzzy msgid "Could not save location prefs." -msgstr "場所情報を保存できません。" +msgstr "位置情報を保存できません。" #. TRANS: Server error thrown when user profile settings tags could not be saved. msgid "Could not save tags." @@ -4302,19 +4120,19 @@ 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. -#, fuzzy, php-format +#, php-format msgid "Beyond the page limit (%s)." -msgstr "ページ制限を超えました (%s)" +msgstr "ページ制限を超えました (%s)。" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." -msgstr "パブリックストリームを検索できません。" +#, fuzzy +msgid "Could not retrieve public timeline." +msgstr "パブリックストリームを取得できません。" #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4329,19 +4147,22 @@ msgstr "パブリックタイムライン" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" -msgstr "パブリックストリームフィード (Atom)" +msgid "Public Timeline Feed (Activity Streams JSON)" +msgstr "パブリックストリームフィード (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "パブリックストリームフィード (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "パブリックストリームフィード (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "パブリックストリームフィード (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4362,8 +4183,8 @@ msgstr "投稿する1番目になってください!" msgid "" "Why not [register an account](%%action.register%%) and be the first to post!" msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか、そして最初の投稿を" -"してください!" +"なぜ [アカウント登録] (%%action.register%%) しないのですか、そして最初の投稿" +"をしてください!" #. 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. @@ -4374,11 +4195,11 @@ msgid "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" msgstr "" -"これは %%site.name%% です。フリーソフトウェアツール[StatusNet](http://status." -"net/)を基にした[マイクロブロギング](http://en.wikipedia.org/wiki/Micro-" -"blogging) サービス。[今すぐ参加](%%action.register%%)してあなた自身や友達、家" -"族そして同僚などについてのつぶやきを共有しましょう! ([もっと読む](%%doc.help%" -"%))" +"これは %%site.name%% です。フリーソフトウェアツール [StatusNet] (http://" +"status.net/) を基にした [ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%" +"E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスです。[今すぐ参加] (%%action." +"register%%) してあなた自身や友達、家族そして同僚などについてのつぶやきを共有" +"しましょう! ([もっと読む] (%%doc.help%%))" #. 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. @@ -4388,58 +4209,54 @@ msgid "" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool." msgstr "" -"これは %%site.name%% です。フリーソフトウェアツール[StatusNet](http://status." -"net/)を基にした[マイクロブロギング](http://en.wikipedia.org/wiki/Micro-" -"blogging) サービス。" +"これは %%site.name%% です。フリーソフトウェアツール[StatusNet] (http://" +"status.net/) を基にした [ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%" +"E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスです。" #. TRANS: Title for page with public list cloud. -#, fuzzy msgid "Public list cloud" -msgstr "パブリックタグクラウド" +msgstr "パブリックリストクラウド" #. TRANS: Page notice for page with public list cloud. #. TRANS: %s is a StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "These are largest lists on %s" -msgstr "これらは %s の人気がある最近のタグです " +msgstr "これらは %s 上の最大のリストです。" #. TRANS: Empty list message on page with public list cloud. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "No one has [listed](%%doc.tags%%) anyone yet." -msgstr "" -"まだだれも [ハッシュタグ](%%doc.tags%%) 付きのつぶやきを投稿していません。" +msgstr "まだ誰も [リスト] (%%doc.tags%%) 付きのつぶやきを投稿していません。" #. TRANS: Additional empty list message on page with public list cloud for logged in users. -#, fuzzy msgid "Be the first to list someone!" -msgstr "投稿する1番目になってください!" +msgstr "リストの1番目になってください!" #. TRANS: Additional empty list message on page with public list cloud for anonymous users. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%action.register%%) and be the first to list " "someone!" msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか。そして最初の投稿を" -"してください!" +"なぜ [アカウント登録] (%%action.register%%) しないのですか、そして最初の投稿" +"をしてください!" #. TRANS: DT element on on page with public list cloud. -#, fuzzy msgid "List cloud" -msgstr "API メソッドが見つかりません。" +msgstr "クラウドリスト" #. TRANS: Link title for number of listed people. %d is the number of listed people. #, php-format msgid "1 person listed" msgid_plural "%d people listed" -msgstr[0] "" +msgstr[0] "1 人をリスト" #. TRANS: Public RSS feed description. %s is the StatusNet site name. -#, fuzzy, php-format +#, php-format msgid "%s updates from everyone." -msgstr "皆からの %s アップデート!" +msgstr "皆さんの %s の最新の投稿" #. TRANS: Title for public tag cloud. msgid "Public tag cloud" @@ -4447,9 +4264,9 @@ msgstr "パブリックタグクラウド" #. TRANS: Instructions (more used like an explanation/header). #. TRANS: %s is the StatusNet sitename. -#, fuzzy, php-format +#, php-format msgid "These are most popular recent tags on %s" -msgstr "これらは %s の人気がある最近のタグです " +msgstr "これらは %s 上で最も人気のある最近のタグです" #. TRANS: This message contains a Markdown URL. The link description is between #. TRANS: square brackets, and the link between parentheses. Do not separate "](" @@ -4457,7 +4274,7 @@ msgstr "これらは %s の人気がある最近のタグです " #, php-format msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgstr "" -"まだだれも [ハッシュタグ](%%doc.tags%%) 付きのつぶやきを投稿していません。" +"まだだれも [ハッシュタグ] (%%doc.tags%%) 付きのつぶやきを投稿していません。" #. TRANS: Message shown to a logged in user for the public tag cloud #. TRANS: while no tags exist yet. "One" refers to the non-existing hashtag. @@ -4474,8 +4291,8 @@ msgid "" "Why not [register an account](%%action.register%%) and be the first to post " "one!" msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか。そして最初の投稿を" -"してください!" +"なぜ [アカウント登録] (%%action.register%%) しないのですか。そして最初の投稿" +"をしてください!" #. TRANS: Client error displayed trying to recover password while already logged in. msgid "You are already logged in!" @@ -4491,7 +4308,7 @@ msgstr "回復コードではありません。" #. TRANS: Server error displayed trying to recover password without providing a user. msgid "Recovery code for unknown user." -msgstr "不明なユーザのための回復コード。" +msgstr "不明なユーザーのための回復コード。" #. TRANS: Server error displayed removing a password recovery code from the database. msgid "Error with confirmation code." @@ -4503,7 +4320,7 @@ msgstr "確認コードが古すぎます。もう一度やり直してくださ #. TRANS: Server error displayed when updating a user's e-mail address in the database fails while recovering a password. msgid "Could not update user with confirmed email address." -msgstr "確認されたメールアドレスでユーザを更新できません。" +msgstr "確認されたメールアドレスでユーザーを更新できません。" #. TRANS: Page notice for password recovery page. msgid "" @@ -4534,7 +4351,6 @@ msgid "Recover" msgstr "回復" #. TRANS: Button text on password recovery page. -#, fuzzy msgctxt "BUTTON" msgid "Recover" msgstr "回復" @@ -4553,17 +4369,14 @@ msgid "Password recovery requested" msgstr "パスワード回復がリクエストされました" #. TRANS: Title for password recovery page in password saved mode. -#, fuzzy msgid "Password saved" msgstr "パスワードが保存されました。" #. TRANS: Title for field label for password reset form. -#, fuzzy msgid "6 or more characters, and do not forget it!" -msgstr "6文字以上。忘れないでください!" +msgstr "6文字以上、そして、忘れないでください!" #. TRANS: Button text for password reset form. -#, fuzzy msgctxt "BUTTON" msgid "Reset" msgstr "リセット" @@ -4583,9 +4396,8 @@ msgid "Unexpected password reset." msgstr "予期せぬパスワードのリセットです。" #. TRANS: Reset password form validation error message. -#, fuzzy msgid "Password must be 6 characters or more." -msgstr "パスワードは6字以上でなければいけません。" +msgstr "パスワードは6字以上でなければなりません。" #. TRANS: Reset password form validation error message. msgid "Password and confirmation do not match." @@ -4594,37 +4406,35 @@ 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. msgid "Error setting user." -msgstr "ユーザ設定エラー" +msgstr "ユーザー設定エラー" #. TRANS: Success message for user after password reset. 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引数がありません。" +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 "そのようなファイルはありません。" +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." -msgstr "すみません、招待された人々だけが登録できます。" +msgstr "申し訳ありません、招待された人々だけが登録できます。" #. TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation. msgid "Sorry, invalid invitation code." -msgstr "すみません、不正な招待コード。" +msgstr "申し訳ありません、無効な招待コードです。" #. TRANS: Title for registration page after a succesful registration. msgid "Registration successful" msgstr "登録成功" #. TRANS: Title for registration page. -#, fuzzy msgctxt "TITLE" msgid "Register" msgstr "登録" @@ -4634,9 +4444,8 @@ 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 "ライセンスに同意頂けない場合は登録できません。" +msgstr "ライセンスに同意しない場合、登録することはできません。" #. TRANS: Form validation error displayed when trying to register with an already registered e-mail address. msgid "Email address already exists." @@ -4644,41 +4453,35 @@ msgstr "メールアドレスが既に存在します。" #. TRANS: Form validation error displayed when trying to register with an invalid username or password. msgid "Invalid username or password." -msgstr "不正なユーザ名またはパスワード。" +msgstr "無効なユーザー名またはパスワード。" #. 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 "" "このフォームで新しいアカウントを作成できます。 次につぶやきを投稿して、友人や" -"同僚にリンクできます。 " +"同僚にリンクできます。" #. 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 "パスワード確認" +msgstr "確認" #. TRANS: Field label on account registration page. -#, fuzzy msgctxt "LABEL" msgid "Email" -msgstr "メール" +msgstr "電子メール" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Used only for updates, announcements, and password recovery." -msgstr "更新、アナウンス、パスワードリカバリーでのみ使用されます。" +msgstr "アップデート、お知らせ、およびパスワードリカバリーでのみ使用されます。" #. TRANS: Field title on account registration page. -#, fuzzy msgid "Longer name, preferably your \"real\" name." -msgstr "長い名前" +msgstr "長い名前、できれば \"本当\" の名前。" #. TRANS: Button text to register a user on account registration page. -#, fuzzy msgctxt "BUTTON" msgid "Register" msgstr "登録" @@ -4705,11 +4508,13 @@ msgid "All rights reserved." msgstr "" #. TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses. -#, fuzzy, php-format +#, php-format msgid "" "My text and files are available under %s except this private data: password, " "email address, IM address, and phone number." -msgstr "個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号" +msgstr "" +"私のテキストとファイルは、%s の下で利用できます、次の個人情報を除いて: パス" +"ワード、電子メールメールアドレス、IMアドレス、電話番号。" #. TRANS: Text displayed after successful account registration. #. TRANS: %1$s is the registered nickname, %2$s is the profile URL. @@ -4732,17 +4537,17 @@ 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" -"* [Jabber や GTalk のアドレス](%%%%action.imsettings%%%%) を追加して、インス" +"* [あなたのプロファイル] (%2$s) を参照して最初のメッセージを投稿する\n" +"* [Jabber や GTalk のアドレス] (%%%%action.imsettings%%%%) を追加して、インス" "タントメッセージを通してつぶやきを送れるようにする\n" -"* あなたが知っている人やあなたと同じ興味をもっている人を[検索](%%%%action." +"* あなたが知っている人やあなたと同じ興味をもっている人を [検索] (%%%%action." "peoplesearch%%%%) する\n" -"* [プロファイル設定](%%%%action.profilesettings%%%%) を更新して他のユーザにあ" -"なたのことをより詳しく知らせる\n" -"* 探している機能について[オンライン文書](%%%%doc.help%%%%) を読む\n" +"* [プロファイル設定] (%%%%action.profilesettings%%%%) を更新して他のユーザに" +"あなたのことをより詳しく知らせる\n" +"* 探している機能について [オンラインドキュメント] (%%%%doc.help%%%%) を読む\n" "\n" "参加してくださってありがとうございます。私たちはあなたがこのサービスを楽しん" "で使ってくれることを願っています。" @@ -4770,13 +4575,12 @@ msgid "" msgstr "" #. TRANS: Title after removing a user from a list. -#, fuzzy msgid "Unlisted" -msgstr "ライセンス" +msgstr "リストから解除" #. TRANS: Client error displayed when trying to repeat a notice while not logged in. msgid "Only logged-in users can repeat notices." -msgstr "ログインユーザだけがつぶやきを繰り返せます。" +msgstr "ログインユーザーだけがつぶやきをリピートできます。" #. TRANS: Client error displayed when trying to repeat a notice while not providing a notice ID. #. TRANS: Client error displayed when trying to repeat a non-existing notice. @@ -4786,11 +4590,11 @@ msgstr "つぶやきがありません。" #. TRANS: Title after repeating a notice. #. TRANS: Repeat form status in notice list when a notice has been repeated. msgid "Repeated" -msgstr "繰り返された" +msgstr "リピート" #. TRANS: Confirmation text after repeating a notice. msgid "Repeated!" -msgstr "繰り返されました!" +msgstr "リピート!" #. TRANS: Title for first page of replies for a user. #. TRANS: %s is a user nickname. @@ -4809,9 +4613,9 @@ msgstr "%1$s への返信、ページ %2$s" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Activity Streams JSON)" -msgstr "%s の返信フィード (Atom)" +msgstr "%s の返信フィード (Activity Streams JSON)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4846,8 +4650,8 @@ msgid "" "You can engage other users in a conversation, subscribe to more people or " "[join groups](%%action.groups%%)." msgstr "" -"あなたは、他のユーザを会話をするか、多くの人々をフォローするか、または [グ" -"ループに加わる](%%action.groups%%)ことができます。" +"あなたは、他のユーザーを会話をするか、多くの人々をフォローするか、または [グ" +"ループに参加] (%%action.groups%%) することができます。" #. TRANS: Empty list message for page with replies for a user for all logged in users but the user themselves. #. TRANS: %1$s, %2$s and %3$s are a user nickname. This message contains a Markdown link in the form [link text](link). @@ -4856,30 +4660,27 @@ msgid "" "You can try to [nudge %1$s](../%2$s) or [post something to them](%%%%action." "newnotice%%%%?status_textarea=%3$s)." msgstr "" -"最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして" -"ください!" +"[%1$s へ合図] (../%2$s) または [その人への投稿] (%%%%action.newnotice%%%%?" +"status_textarea=%3$s) をしてください!" #. 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 "%2$s 上の %1$s への返信!" +msgstr "%2$s 上の %1$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 "ログインユーザだけがつぶやきを繰り返せます。" +msgstr "ログインユーザーだけが自分のアカウントを復元することができます。" #. TRANS: Client exception displayed when trying to restore an account without having restore rights. -#, fuzzy msgid "You may not restore your account." -msgstr "あなたはまだなんのアプリケーションも登録していません。" +msgstr "あなたのアカウントでは復元することができません。" #. 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 "ファイルアップロード" +msgstr "アップロードされたファイルがありません。" #. 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." @@ -4892,12 +4693,12 @@ msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -"アップロードされたファイルはHTMLフォームで指定された MAX_FILE_SIZE ディレク" +"アップロードされたファイルは HTML フォームで指定された MAX_FILE_SIZE ディレク" "ティブを超えています。" #. TRANS: Client exception. msgid "The uploaded file was only partially uploaded." -msgstr "アップロードされたファイルは部分的にアップロードされていただけです。" +msgstr "アップロードされたファイルは一部のみしかアップロードされていません。" #. TRANS: Client exception thrown when a temporary folder is not present to store a file upload. msgid "Missing a temporary folder." @@ -4919,9 +4720,8 @@ 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 "全てのメンバー" +msgstr "Atom フィードではありません。" #. TRANS: Success message when a feed has been restored. msgid "" @@ -4935,24 +4735,21 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." 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. -#, fuzzy msgid "You cannot revoke user roles on this site." -msgstr "あなたはこのサイトでユーザを黙らせることができません。" +msgstr "このサイト上のユーザーのロールを取り消すことはできません。" #. TRANS: Client error displayed when trying to revoke a role that is not set. -#, fuzzy msgid "User does not have this role." -msgstr "合っているプロフィールのないユーザ" +msgstr "ユーザーはこのロールは持っていません。" #. TRANS: Engine name for RSD. #. TRANS: Engine name. @@ -4962,36 +4759,34 @@ 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 "あなたはこのサイトのサンドボックスユーザができません。" +msgstr "あなたはこのサイトのサンドボックスユーザーができません。" #. TRANS: Client error displayed trying to sandbox an already sandboxed user. msgid "User is already sandboxed." -msgstr "ユーザはすでにサンドボックスです。" +msgstr "ユーザーはすでにサンドボックスです。" #. TRANS: Client error displayed when trying to list a profile with an invalid list. #. TRANS: %s is the invalid list name. -#, fuzzy, php-format +#, php-format msgid "Not a valid list: %s." -msgstr "有効なメールアドレスではありません。" +msgstr "有効ではないリスト:%s。" #. TRANS: Page title for page showing self tags. #. TRANS: %1$s is a tag, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Users self-tagged with %1$s, page %2$d" -msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" +msgstr "ユーザー自身がつけたタグ %1$s、ページ %2$d" #. TRANS: Title for the sessions administration panel. -#, fuzzy msgctxt "TITLE" msgid "Sessions" msgstr "セッション" #. TRANS: Instructions for the sessions administration panel. msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "この StatusNet サイトのセッション設定" #. TRANS: Fieldset legend on the sessions administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Sessions" msgstr "セッション" @@ -5003,9 +4798,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. @@ -5013,18 +4807,16 @@ msgid "Session debugging" msgstr "セッションデバッグ" #. TRANS: Checkbox title on the sessions administration panel. -#, fuzzy msgid "Enable debugging output for sessions." -msgstr "セッションのためのデバッグ出力をオン。" +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." -msgstr "!!アプリケーションを見るためにはログインしていなければなりません。" +msgstr "アプリケーションを見るためにはログインしていなければなりません。" #. TRANS: Header on the OAuth application page. msgid "Application profile" @@ -5043,7 +4835,6 @@ msgid "Application actions" msgstr "アプリケーションアクション" #. TRANS: Link text to edit application on the OAuth application page. -#, fuzzy msgctxt "EDITAPP" msgid "Edit" msgstr "編集" @@ -5058,18 +4849,16 @@ 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. -#, fuzzy msgid "Are you sure you want to reset your consumer key and secret?" -msgstr "本当にこのつぶやきを削除しますか?" +msgstr "コンシューマーキーとシークレットをリセットしてもよろしいですか?" #. TRANS: Title for all but the first page of favourite notices of a user. #. TRANS: %1$s is the user for whom the favourite notices are displayed, %2$d is the page number. @@ -5079,12 +4868,12 @@ msgstr "%1$s のお気に入りのつぶやき、ページ %2$d" #. TRANS: Server error displayed when favourite notices could not be retrieved from the database. msgid "Could not retrieve favorite notices." -msgstr "お気に入りのつぶやきを検索できません。" +msgstr "お気に入りのつぶやきを取得できませんでした。" #. TRANS: Feed link text. %s is a username. -#, fuzzy, php-format +#, php-format msgid "Feed for favorites of %s (Activity Streams JSON)" -msgstr "%s のお気に入りのフィード (Atom)" +msgstr "%s のお気に入りのフィード (Activity Streams JSON)" #. TRANS: Feed link text. %s is a username. #, php-format @@ -5112,13 +4901,13 @@ 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 :)" msgstr "" -"%s はまだ彼のお気に入りに少しのつぶやきも加えていません。 彼らがお気に入りに" -"加えることおもしろいものを投稿してください:)" +"%s はまだお気に入りに全くつぶやきを追加していません。彼らがお気に入りに加える" +"ようなおもしろいものを投稿してください:)" #. 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. @@ -5129,8 +4918,9 @@ msgid "" "action.register%%%%) and then post something interesting they would add to " "their favorites :)" msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか、そして、あなたのお" -"気に入りにつぶやきを加える最初になりましょう!" +"%s はまだお気に入りにつぶやきを追加していません。なぜ [アカウント登録] (%%%%" +"action.register%%%%) しないのですか、そして、何か面白いつぶやきを投稿して、彼" +"のお気に入りにつぶやきを追加してもらいましょう :)" #. TRANS: Page notice for show favourites page. msgid "This is a way to share what you like." @@ -5148,24 +4938,24 @@ msgid "%1$s group, page %2$d" msgstr "%1$s グループ、ページ %2$d" #. TRANS: Tooltip for feed link. %s is a group nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s group (Activity Streams JSON)" -msgstr "%s グループのつぶやきフィード (Atom)" +msgstr "%s グループのつぶやきのフィード (Activity Streams JSON)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (RSS 1.0)" -msgstr "%s グループのつぶやきフィード (RSS 1.0)" +msgstr "%s グループのつぶやきのフィード (RSS 1.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (RSS 2.0)" -msgstr "%s グループのつぶやきフィード (RSS 2.0)" +msgstr "%s グループのつぶやきのフィード (RSS 2.0)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format msgid "Notice feed for %s group (Atom)" -msgstr "%s グループのつぶやきフィード (Atom)" +msgstr "%s グループのつぶやきのフィード (Atom)" #. TRANS: Tooltip for feed link. %s is a group nickname. #, php-format @@ -5197,13 +4987,11 @@ msgid "Statistics" msgstr "統計データ" #. TRANS: Label for group creation date. -#, fuzzy msgctxt "LABEL" msgid "Created" msgstr "作成日" #. TRANS: Label for member count in statistics on group page. -#, fuzzy msgctxt "LABEL" msgid "Members" msgstr "メンバー" @@ -5220,11 +5008,12 @@ msgid "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" -"する短いメッセージを共有します。[今すぐ参加](%%%%action.register%%%%) してこ" -"のグループの一員になりましょう! ([もっと読む](%%%%doc.help%%%%))" +"**%s** は %%site.name%% 上のユーザーグループです。フリーソフトウェアツール " +"[StatusNet] (http://status.net/) を基にした [ミニブログ] (http://ja." +"wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスで" +"す。メンバーは彼らの暮らしと興味に関する短いメッセージを共有します。[今すぐ参" +"加] (%%%%action.register%%%%) してこのグループの一員になりましょう! ([もっと" +"読む] (%%%%doc.help%%%%))" #. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations. #. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name, @@ -5236,13 +5025,12 @@ msgid "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " msgstr "" -"**%s** は %%site.name%% 上のユーザグループです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。メンバーは彼らの暮らしと興味に関" -"する短いメッセージを共有します。" +"**%s** は %%site.name%% 上のユーザーグループです。フリーソフトウェアツール " +"[StatusNet] (http://status.net/) を基にした [ミニブログ] (http://ja." +"wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスで" +"す。メンバーは彼らの暮らしと興味に関する短いメッセージを共有します。" #. TRANS: Title for list of group administrators on a group page. -#, fuzzy msgctxt "TITLE" msgid "Admins" msgstr "管理者" @@ -5268,9 +5056,8 @@ 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 が利用不可。" +msgstr "使用できません。" #. TRANS: Client error displayed trying to show a deleted notice. msgid "Notice deleted." @@ -5278,53 +5065,54 @@ msgstr "つぶやきを削除しました。" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Private timeline for %1$s list by you, page %2$d" -msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" +msgstr "%1$s リストのプライベートタイムライン、 ページ %2$d" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %1$s is a list, %2$s is a page number. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by you, page %2$d" -msgstr "ユーザ自身がつけたタグ %1$s - ページ %2$d" +msgstr "%1$s リストのタイムライン、ページ %2$d" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname, %3$d is a page number. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s, page %3$d" -msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" +msgstr "%2$s の %1$s リストのタイムライン、ページ %3$d" #. TRANS: Title for private list timeline. #. TRANS: %s is a list. #, php-format msgid "Private timeline of %s list by you" -msgstr "" +msgstr "%s リストのプライベートタイムライン" #. TRANS: Title for public list timeline where the viewer is the tagger. #. TRANS: %s is a list. #, php-format msgid "Timeline for %s list by you" -msgstr "" +msgstr "%s リストのタイムライン" #. TRANS: Title for private list timeline. #. TRANS: %1$s is a list, %2$s is the tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for %1$s list by %2$s" -msgstr "%2$s 上の %1$s への返信!" +msgstr "%2$s の %1$s リストのタイムライン" #. TRANS: Feed title. #. TRANS: %1$s is a list, %2$s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for %1$s list by %2$s (Atom)" -msgstr "%s のお気に入りのフィード (Atom)" +msgstr "%2$s の %1$s リストのフィード (Atom)" #. TRANS: Empty list message for list timeline. #. TRANS: %1$s is a list, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "" "This is the timeline for %1$s list by %2$s but no one has posted anything " "yet." -msgstr "これは%sとその友人のタイムラインですが、まだ誰も投稿していません。" +msgstr "" +"これは %2$s のリスト %1$s のタイムラインですが、まだ誰も投稿していません。" #. TRANS: Additional empty list message for list timeline for currently logged in user tagged tags. msgid "Try tagging more people." @@ -5332,23 +5120,23 @@ msgstr "" #. TRANS: Additional empty list message for list timeline. #. TRANS: This message contains Markdown links in the form [description](link). -#, fuzzy, php-format +#, php-format msgid "" "Why not [register an account](%%%%action.register%%%%) and start following " "this timeline!" msgstr "" -"なぜ [アカウント登録](%%action.register%%) しないのですか。そして最初の投稿を" -"してください!" +"なぜ [アカウント登録] (%%action.register%%) しないのですか? そしてタイムライ" +"ンのフォローを始めてください!" #. TRANS: Header on show list page. -#, fuzzy +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" -msgstr "ライセンス" +msgstr "リスト" #. TRANS: Link for more "People in list x by a user" #. TRANS: if there are more than the mini list's maximum. msgid "Show all" -msgstr "" +msgstr "すべてを表示" #. TRANS: Header for tag subscribers. #. TRANS: Link description for link to list of users subscribed to a tag. @@ -5360,53 +5148,53 @@ msgstr "フォローされている" msgid "All subscribers" msgstr "すべてのフォローされている" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. 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$d" +msgstr "%2$s とタグ付けされた %1$s のつぶやき" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. 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 とタグ付けされたつぶやき、ページ %2$d" +msgstr "%2$s とタグ付けされた %1$s のつぶやき、ページ %3$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. 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. #, php-format msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" -msgstr "%1$sの%2$sとタグ付けされたつぶやきフィード (RSS 1.0)" +msgstr "%1$s の %2$s とタグ付けされたつぶやきのフィード (RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Notice feed for %s (Activity Streams JSON)" -msgstr "%sのつぶやきフィード (Atom)" +msgstr "%s のつぶやきのフィード (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (RSS 1.0)" -msgstr "%sのつぶやきフィード (RSS 1.0)" +msgstr "%s のつぶやきのフィード (RSS 1.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (RSS 2.0)" -msgstr "%sのつぶやきフィード (RSS 2.0)" +msgstr "%s のつぶやきのフィード (RSS 2.0)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, php-format msgid "Notice feed for %s (Atom)" -msgstr "%sのつぶやきフィード (Atom)" +msgstr "%s のつぶやきのフィード (Atom)" #. TRANS: Title for link to notice feed. FOAF stands for Friend of a Friend. #. TRANS: More information at http://www.foaf-project.org. %s is a user nickname. @@ -5414,30 +5202,30 @@ msgstr "%sのつぶやきフィード (Atom)" msgid "FOAF for %s" msgstr "%s の FOAF" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. -#, fuzzy, php-format +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. +#, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." -msgstr "これは %1$s のタイムラインですが、%2$s はまだなにも投稿していません。" +msgstr "これは %1$s のタイムラインですが、%1$s はまだなにも投稿していません。" #. TRANS: Second sentence of empty list message for a stream for the user themselves. msgid "" "Seen anything interesting recently? You haven't posted any notices yet, now " "would be a good time to start :)" msgstr "" -"最近おもしろいものは何でしょう? あなたは少しのつぶやきも投稿していませんが、" -"いまは始める良い時でしょう:)" +"最近おもしろいものは何でしょう? あなたはまだつぶやきを投稿していませんが、い" +"まは始める良い時でしょう:)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." msgstr "" -"最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして" -"ください!" +"%1$s へ合図を送る、または [その人へ何かをつぶやく] (%%%%action.newnotice%%%%?" +"status_textarea=%2$s) を試してください。" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5446,13 +5234,13 @@ msgid "" "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -"**%s** は %%%%site.name%%%% 上のアカウントです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。[今すぐ参加](%%%%action.register" -"%%%%)して、**%s** のつぶやきなどをフォローしましょう! ([もっと読む](%%%%doc." -"help%%%%))" +"**%s** は %%%%site.name%%%% 上のアカウントです。フリーソフトウェアツール " +"[StatusNet] (http://status.net/) を基にした [ミニブログ] (http://ja." +"wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスで" +"す。[今すぐ参加] (%%%%action.register%%%%) して、**%s** のつぶやきなどをフォ" +"ローしましょう! ([もっと読む] (%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5460,26 +5248,26 @@ msgid "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " msgstr "" -"**%s** は %%site.name%% 上のアカウントです。フリーソフトウェアツール" -"[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." -"wikipedia.org/wiki/Micro-blogging) サービス。" +"**%s** は %%site.name%% 上のアカウントです。フリーソフトウェアツール " +"[StatusNet] (http://status.net/) を基にした [ミニブログ] (http://ja." +"wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスで" +"す。" #. TRANS: Link to the author of a repeated notice. %s is a linked nickname. #, php-format msgid "Repeat of %s" -msgstr "%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 "あなたはこのサイトでユーザを黙らせることができません。" +msgstr "あなたはこのサイトでユーザーを黙らせることができません。" #. TRANS: Client error displayed trying to silence an already silenced user. msgid "User is already silenced." -msgstr "ユーザは既に黙っています。" +msgstr "ユーザーは既に黙っています。" #. TRANS: Title for site administration panel. -#, fuzzy msgctxt "TITLE" msgid "Site" msgstr "サイト" @@ -5490,7 +5278,7 @@ msgstr "この StatusNet サイトのデザイン設定。" #. TRANS: Client error displayed trying to save an empty site name. msgid "Site name must have non-zero length." -msgstr "サイト名は長さ0ではいけません。" +msgstr "サイト名は長さ 0 ではいけません。" #. TRANS: Client error displayed trying to save site settings without a contact address. msgid "You must have a valid contact email address." @@ -5498,12 +5286,11 @@ msgstr "有効な連絡用メールアドレスがなければなりません。 #. TRANS: Client error displayed when a logo URL is not valid. msgid "Invalid logo URL." -msgstr "不正なロゴ URL" +msgstr "無効なロゴ URL" #. TRANS: Client error displayed when a SSL logo URL is invalid. -#, fuzzy msgid "Invalid SSL logo URL." -msgstr "不正なロゴ URL" +msgstr "SSL ロゴ URL が無効。" #. TRANS: Client error displayed trying to save site settings with an invalid language code. #. TRANS: %s is the invalid language code. @@ -5512,64 +5299,52 @@ msgid "Unknown language \"%s\"." msgstr "不明な言語 \"%s\"" #. TRANS: Client error displayed trying to save site settings with a text limit below 0. -#, fuzzy msgid "Minimum text limit is 0 (unlimited)." -msgstr "最小のテキスト制限は140字です。" +msgstr "テキストの最小文字数は 0 (無制限) です。" #. TRANS: Client error displayed trying to save site settings with a text limit below 1. -#, fuzzy msgid "Dupe limit must be one or more seconds." -msgstr "デュープ制限は1秒以上でなければなりません。" +msgstr "からかう人に対する制限は 1 秒以上でなければなりません。" #. 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 "あなたのサイトの名前、\"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 "" -"クレジットに使用されるテキストは、それぞれのページのフッターでリンクされま" -"す。" +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 "メール" +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 "ローカル" @@ -5584,15 +5359,14 @@ msgstr "サイトのデフォルトタイムゾーン; 通常UTC。" #. TRANS: Dropdown label on site settings panel. msgid "Default language" -msgstr "ご希望の言語" +msgstr "デフォルトの言語" #. TRANS: Dropdown title on site settings panel. msgid "" "The site language when autodetection from browser settings is not available." -msgstr "" +msgstr "ブラウザの設定から自動検出できない場合のサイトの言語。" #. TRANS: Fieldset legend on site settings panel. -#, fuzzy msgctxt "LEGEND" msgid "Limits" msgstr "制限" @@ -5612,8 +5386,8 @@ msgstr "デュープ制限" #. TRANS: Field title on site settings panel. msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -"どれくらい長い間(秒)、ユーザは、再び同じものを投稿するのを待たなければならな" -"いか。" +"どれくらい長い間(秒)、ユーザーは、再び同じものを投稿するのを待たなければなら" +"ないか。" #. TRANS: Fieldset legend for form to change logo. msgid "Logo" @@ -5624,48 +5398,40 @@ msgid "Site logo" msgstr "サイトロゴ" #. TRANS: Field label for SSL StatusNet site logo. -#, fuzzy msgid "SSL logo" -msgstr "サイトロゴ" +msgstr "SSL ロゴ" #. TRANS: Button title for saving site settings. -#, fuzzy msgid "Save the site settings." msgstr "サイト設定の保存" #. TRANS: Page title for site-wide notice tab in admin panel. -#, fuzzy msgid "Site Notice" -msgstr "サイトつぶやき" +msgstr "サイトのお知らせ" #. TRANS: Instructions for site-wide notice tab in admin panel. -#, fuzzy msgid "Edit site-wide message" -msgstr "新しいメッセージ" +msgstr "サイト全体に及ぶメッセージを編集" #. TRANS: Server error displayed when saving a site-wide notice was impossible. -#, fuzzy msgid "Unable to save site notice." -msgstr "あなたのデザイン設定を保存できません。" +msgstr "サイトのお知らせを保存することができません。" #. TRANS: Client error displayed when a site-wide notice was longer than allowed. -#, fuzzy msgid "Maximum length for the site-wide notice is 255 characters." -msgstr "プロファイル自己紹介の最大文字長。" +msgstr "サイト全体のお知らせの最大長は 255 文字です。" #. TRANS: Label for site-wide notice text field in admin panel. -#, fuzzy msgid "Site notice text" -msgstr "サイトつぶやき" +msgstr "サイトのお知らせテキスト" #. TRANS: Tooltip for site-wide notice text field in admin panel. msgid "Site-wide notice text (255 characters maximum; HTML allowed)" -msgstr "" +msgstr "サイト全体のお知らせテキスト (最大 255 文字まで; HTML 可)。" #. TRANS: Title for button to save site notice in admin panel. -#, fuzzy msgid "Save site notice." -msgstr "サイトつぶやき" +msgstr "サイトのお知らせを保存。" #. TRANS: Title for SMS settings. msgid "SMS settings" @@ -5683,9 +5449,8 @@ msgid "SMS is not available." msgstr "SMS は利用できません。" #. TRANS: Form legend for SMS settings form. -#, fuzzy msgid "SMS address" -msgstr "IMアドレス" +msgstr "SMS アドレス" #. TRANS: Form guide in SMS settings form. msgid "Current confirmed SMS-enabled phone number." @@ -5704,19 +5469,17 @@ msgid "Enter the code you received on your phone." msgstr "あなたがあなたの電話で受け取ったコードを入れてください。" #. TRANS: Button label to confirm SMS confirmation code in SMS settings. -#, fuzzy msgctxt "BUTTON" msgid "Confirm" -msgstr "パスワード確認" +msgstr "確認" #. TRANS: Field label for SMS phone number input in SMS settings form. msgid "SMS phone number" msgstr "SMS 電話番号" #. TRANS: SMS phone number input field instructions in SMS settings form. -#, fuzzy msgid "Phone number, no punctuation or spaces, with area code." -msgstr "電話番号、句読点またはスペースがない、市街番号付き" +msgstr "電話番号、句読点ではないまたはスペース、市街局番付き" #. TRANS: Form legend for SMS preferences form. msgid "SMS preferences" @@ -5731,9 +5494,8 @@ msgstr "" "るかもしれないのを理解しています。" #. TRANS: Confirmation message for successful SMS preferences save. -#, fuzzy msgid "SMS preferences saved." -msgstr "設定が保存されました。" +msgstr "SMS 設定が保存されました。" #. TRANS: Message given saving SMS phone number without having provided one. msgid "No phone number." @@ -5749,7 +5511,7 @@ msgstr "これはすでにあなたの電話番号です。" #. TRANS: Message given saving SMS phone number that is already set for another user. msgid "That phone number already belongs to another user." -msgstr "この電話番号はすでに他のユーザに使われています。" +msgstr "この電話番号はすでに他のユーザーに使われています。" #. TRANS: Message given saving valid SMS phone number that is to be confirmed. msgid "" @@ -5764,13 +5526,12 @@ 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 "SMS の確認を削除できませんでした。" #. TRANS: Message given after successfully canceling SMS phone number confirmation. msgid "SMS confirmation cancelled." -msgstr "SMS確認" +msgstr "SMS 確認がキャンセルされました。" #. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: registered for the active user. @@ -5778,9 +5539,8 @@ msgid "That is not your phone number." msgstr "それはあなたの電話番号ではありません。" #. TRANS: Message given after successfully removing a registered SMS phone number. -#, fuzzy msgid "The SMS phone number was removed." -msgstr "SMS 電話番号" +msgstr "SMS 電話番号を削除しました。" #. TRANS: Label for mobile carrier dropdown menu in SMS settings. msgid "Mobile carrier" @@ -5802,34 +5562,31 @@ msgstr "" "ください。" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#, fuzzy msgid "No code entered." -msgstr "コードが入力されていません" +msgstr "コードが入力されていません。" #. 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 "セッション設定" +msgstr "スナップショット設定の管理" #. TRANS: Client error displayed on admin panel for snapshots when providing an invalid run value. msgid "Invalid snapshot run value." -msgstr "不正なスナップショットランバリュー" +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 "スナップショット頻度は数でなければなりません。" +msgstr "スナップショット頻度は数字でなければなりません。" #. TRANS: Client error displayed on admin panel for snapshots when providing an invalid report URL. msgid "Invalid snapshot report URL." -msgstr "不正なスナップショットレポートURL。" +msgstr "無効なスナップショットレポート URL。" #. TRANS: Fieldset legend on admin panel for snapshots. -#, fuzzy msgctxt "LEGEND" msgid "Snapshots" msgstr "スナップショット" @@ -5847,36 +5604,32 @@ 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 "レポート URL" +msgstr "スナップショットは N web ヒット後に送信されます。" #. 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." -msgstr "あなたはそのプロファイルにフォローされていません。" +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. @@ -5889,52 +5642,49 @@ 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: Page title when subscription succeeded. msgid "Subscribed" msgstr "フォローしている" #. TRANS: Client error displayed when trying to perform an action while not logged in. -#, fuzzy msgid "You must be logged in to unsubscribe from a list." -msgstr "グループを作るにはログインしていなければなりません。" +msgstr "リストからの登録を解除するにはログインする必要があります。" #. TRANS: Client error displayed when trying to perform an action without providing an ID. -#, fuzzy msgid "No ID given." -msgstr "ID引数がありません。" +msgstr "ID がありません。" #. TRANS: Server error displayed subscribing to a list fails. #. TRANS: %1$s is a user nickname, %2$s is a list, %3$s is the error message (no period). -#, fuzzy, php-format +#, php-format msgid "Could not subscribe user %1$s to list %2$s: %3$s" -msgstr "ユーザ %1$s はグループ %2$s に参加できません。" +msgstr "%1$s のリスト %2$s に参加できません: %3$s" #. TRANS: Title of form to subscribe to a list. #. TRANS: %1%s is a user nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s subscribed to list %2$s by %3$s" -msgstr "%1$s フォローされている、ページ %2$d" +msgstr "%3$s によって リスト %2$s に %1$s を参加" #. TRANS: Header for list of subscribers for a user (first page). #. TRANS: %s is the user's nickname. #, php-format msgid "%s subscribers" -msgstr "フォローされている" +msgstr "%s フォローされている" #. TRANS: Header for list of subscribers for a user (not first page). #. TRANS: %1$s is the user's nickname, $2$d is the page number. @@ -5954,13 +5704,12 @@ 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." msgstr "" -"あなたには、フォローしている人が全くいません。 あなたが知っている人々をフォ" -"ローしてみてください。そうすれば、彼らはお気に入りを返すかもしれません。" +"あなたは、フォローしている人が全くいません。 あなたが知っている人々をフォロー" +"してみてください。そうすれば、彼らはお気に入りを返すかもしれません。" #. TRANS: Subscriber list text when looking at the subscribers for a of a user other #. TRANS: than the logged in user that has no subscribers. %s is the user nickname. @@ -5978,8 +5727,8 @@ msgid "" "%s has no subscribers. Why not [register an account](%%%%action.register%%%" "%) and be the first?" msgstr "" -"%s にはフォローしている人がいません。なぜ[アカウント登録](%%%%action.register" -"%%%%)して最初にならないのですか?" +"%s にはフォローしている人がいません。なぜ[アカウント登録] (%%%%action." +"register%%%%) して最初にならないのですか?" #. TRANS: Header for subscriptions overview for a user (not first page). #. TRANS: %1$s is a user nickname, %2$d is the page number. @@ -6011,11 +5760,11 @@ msgid "" "automatically subscribe to people you already follow there." msgstr "" "今、だれのつぶやきも聞いていないなら、あなたが知っている人々をフォローしてみ" -"てください。[ピープル検索](%%action.peoplesearch%%)を試してください。そして、" -"あなたが興味を持っているグループと私たちの[フィーチャーされたユーザ](%%" -"action.featured%%)のメンバーを探してください。もし[Twitterユーザ](%%action." -"twittersettings%%)であれば、あなたは自動的に既にフォローしている人々をフォ" -"ローできます。" +"てください。[ユーザー検索] (%%action.peoplesearch%%) を試してください。そし" +"て、あなたが興味を持っているグループと私たちの [フィーチャーされたユーザー] " +"(%%action.featured%%) のメンバーを探してください。もし [Twitterユーザー] (%%" +"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. @@ -6026,19 +5775,18 @@ 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のつぶやきフィード (Atom)" +msgstr "%s のつぶやきのフィード (Atom)" #. TRANS: Checkbox label for enabling IM messages for a profile in a subscriptions list. -#, fuzzy msgctxt "LABEL" msgid "IM" -msgstr "IM" +msgstr "" #. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list. msgid "SMS" -msgstr "SMS" +msgstr "" #. TRANS: Title for all but the first page of notices with tags. #. TRANS: %1$s is the tag, %2$d is the page number. @@ -6048,92 +5796,85 @@ msgstr "%1$s とタグ付けされたつぶやき、ページ %2$d" #. TRANS: Link label for feed on "notices with tag" page. #. TRANS: %s is the tag the feed is for. -#, fuzzy, php-format +#, php-format msgid "Notice feed for tag %s (Activity Streams JSON)" -msgstr "%s とタグ付けされたつぶやきフィード (Atom)" +msgstr "タグ %s のつぶやきのフィード (Activity Streams JSON)" #. 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)" +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)" +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)" +msgstr "%s とタグ付けされたつぶやきのフィード (Atom)" #. TRANS: Client error displayed when trying to tag a user that cannot be tagged. #. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged. #. TRANS: Error displayed when trying to tag a user that cannot be tagged. -#, fuzzy msgid "You cannot tag this user." -msgstr "このユーザにメッセージを送ることはできません。" +msgstr "このユーザーにタグを付けることはできません。" #. TRANS: Title for list form when not on a profile page. -#, fuzzy msgid "List a profile" -msgstr "ユーザプロファイル" +msgstr "プロファイルのリスト" #. TRANS: Title for list form when on a profile page. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgctxt "ADDTOLIST" msgid "List %s" -msgstr "制限" +msgstr "リスト %s" #. TRANS: Title for list form when an error has occurred. -#, fuzzy msgctxt "TITLE" msgid "Error" -msgstr "Ajax エラー" +msgstr "エラー" #. TRANS: Header in list form. msgid "User profile" -msgstr "ユーザプロファイル" +msgstr "ユーザープロファイル" #. TRANS: Fieldset legend for list form. -#, fuzzy msgid "List user" -msgstr "制限" +msgstr "ユーザーリスト" #. TRANS: Field label on list form. -#, fuzzy msgctxt "LABEL" msgid "Lists" -msgstr "制限" +msgstr "リスト" #. TRANS: Field title on list form. -#, fuzzy msgid "" "Lists for this user (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" -"自分自身についてのタグ (アルファベット、数字、-、.、_)、カンマまたは空白区切" -"りで" +"このユーザーのリスト (アルファベット、数字、-、.、および _)、カンマまたは空白" +"で区切られた。" #. TRANS: Title for personal tag cloud section. -#, fuzzy msgctxt "TITLE" msgid "Tags" msgstr "タグ" #. TRANS: Success message if lists are saved. -#, fuzzy msgid "Lists saved." -msgstr "パスワードが保存されました。" +msgstr "リストが保存されました。" #. TRANS: Page notice. -#, fuzzy msgid "Use this form to add your subscribers or subscriptions to lists." -msgstr "このフォームを使用して、フォロー者かフォローにタグを加えてください。" +msgstr "" +"フォローする人またはリストがフォローする人を追加するには、このフォームを使用" +"してください。" #. TRANS: Client error when requesting a tag feed for a non-existing tag. msgid "No such tag." @@ -6141,15 +5882,15 @@ msgstr "そのようなタグはありません。" #. TRANS: Client error displayed when trying to unblock a non-blocked user. msgid "You haven't blocked that user." -msgstr "あなたはそのユーザをブロックしていません。" +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 "ユーザはサンドボックスではありません。" +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 "ユーザはサイレンスではありません。" +msgstr "ユーザーはサイレンスではありません。" #. TRANS: Page title for page to unsubscribe. msgid "Unsubscribed" @@ -6157,14 +5898,13 @@ msgstr "フォロー解除済み" #. TRANS: Page title for form that allows unsubscribing from a list. #. TRANS: %1$s is a nickname, %2$s is a list, %3$s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s unsubscribed from list %2$s by %3$s" -msgstr "%1$s フォローされている、ページ %2$d" +msgstr "%3$s によって、リスト %2$s から %1$s のフォローを解除" #. TRANS: Title of URL settings tab in profile settings. -#, fuzzy msgid "URL settings" -msgstr "IM設定" +msgstr "URL 設定" #. TRANS: Instructions for tab "Other" in user profile settings. msgid "Manage various other options." @@ -6177,17 +5917,16 @@ msgid " (free service)" msgstr "(フリーサービス)" #. TRANS: Default value for URL shortening settings. -#, fuzzy msgid "[none]" -msgstr "なし" +msgstr "[なし]" #. TRANS: Default value for URL shortening settings. msgid "[internal]" -msgstr "" +msgstr "[内部]" #. TRANS: Label for dropdown with URL shortener services. msgid "Shorten URLs with" -msgstr "URLを短くします" +msgstr "URL を短くします" #. TRANS: Tooltip for for dropdown with URL shortener services. msgid "Automatic shortening service to use." @@ -6195,67 +5934,62 @@ msgstr "使用する自動短縮サービス。" #. TRANS: Field label in URL settings in profile. msgid "URL longer than" -msgstr "" +msgstr "長い URL" #. TRANS: Field title in URL settings in profile. msgid "URLs longer than this will be shortened, 0 means always shorten." -msgstr "" +msgstr "これよりも長い URL が短縮され、0 は常に短縮することを意味する。" #. TRANS: Field label in URL settings in profile. msgid "Text longer than" -msgstr "" +msgstr "長いテキスト" #. TRANS: Field title in URL settings in profile. msgid "" "URLs in notices longer than this will be shortened, 0 means always shorten." msgstr "" +"これよりも長いつぶやきの URL が短縮され、0 は常に短縮することを意味する。" #. TRANS: Form validation error for form "Other settings" in user profile. -#, fuzzy msgid "URL shortening service is too long (maximum 50 characters)." -msgstr "URL 短縮サービスが長すぎます。(最大50字)" +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 "不正なトークン。" +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." -msgstr "" +msgstr "短縮 URL の設定を保存する時にエラーが発生しました。" #. TRANS: User admin panel title. -#, fuzzy msgctxt "TITLE" msgid "User" -msgstr "ユーザ" +msgstr "ユーザー" #. TRANS: Instruction for user admin panel. msgid "User settings for this StatusNet site" -msgstr "" +msgstr "この StatusNet サイトのユーザー設定" #. TRANS: Form validation error in user admin panel when a non-numeric character limit was set. msgid "Invalid bio limit. Must be numeric." -msgstr "不正な自己紹介制限。数字である必要があります。" +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. -#, fuzzy, php-format +#, php-format msgid "Invalid default subscripton: \"%1$s\" is not a user." -msgstr "不正なデフォルトフォローです: '%1$s' はユーザではありません。" +msgstr "無効なデフォルトフォローです: \"%1$s\" はユーザーではありません。" #. TRANS: Fieldset legend in user administration panel. -#, fuzzy msgctxt "LEGEND" msgid "Profile" msgstr "プロファイル" @@ -6270,16 +6004,15 @@ msgstr "プロファイル自己紹介の最大文字長。" #. TRANS: Form legend in user admin panel. msgid "New users" -msgstr "新しいユーザ" +msgstr "新しいユーザー" #. TRANS: Field label in user admin panel for setting new user welcome text. msgid "New user welcome" -msgstr "新しいユーザを歓迎" +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字)。" +msgstr "新しいユーザーへのウェルカムテキスト (最大 255 文字)。" #. TRANS: Field label in user admin panel for setting default subscription for new users. msgid "Default subscription" @@ -6287,7 +6020,7 @@ msgstr "デフォルトフォロー" #. TRANS: Tooltip in user admin panel for setting default subscription for new users. msgid "Automatically subscribe new users to this user." -msgstr "自動的にこのユーザに新しいユーザをフォローしてください。" +msgstr "自動的にこのユーザーに新しいユーザーをフォローしてください。" #. TRANS: Form legend in user admin panel. msgid "Invitations" @@ -6299,12 +6032,11 @@ msgstr "招待が可能" #. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail. msgid "Whether to allow users to invite new users." -msgstr "ユーザが新しいユーザを招待するのを許容するかどうか。" +msgstr "ユーザーが新しいユーザーを招待するのを許容するかどうか。" #. TRANS: Title for button to save user settings in user admin panel. -#, fuzzy msgid "Save user settings." -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. @@ -6326,7 +6058,7 @@ msgstr "%s はどのグループのメンバーでもありません。" #. TRANS: a Markdown link in the form [link text](link) and a variable that should not be changed. #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." -msgstr "[グループを探して](%%action.groupsearch%%)それに加入してください。" +msgstr "[グループを探して] (%%action.groupsearch%%) それに加入してください。" #. 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 in atom group notice feed. @@ -6340,7 +6072,7 @@ msgstr "%1$s から %2$s 上の更新をしました!" #. TRANS: Title for version page. %s is the StatusNet version. #, php-format msgid "StatusNet %s" -msgstr "StatusNet %s" +msgstr "" #. TRANS: Content part of StatusNet version page. #. TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. @@ -6349,12 +6081,10 @@ msgid "" "This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " "Inc. and contributors." msgstr "" -"This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " -"Inc. and contributors." #. TRANS: Header for StatusNet contributors section on the version page. msgid "Contributors" -msgstr "コントリビュータ" +msgstr "貢献者" #. TRANS: Header for StatusNet license section on the version page. msgid "License" @@ -6389,28 +6119,24 @@ 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 "作者" +msgstr "著者" #. TRANS: Column header for plugins table on version page. -#, fuzzy msgctxt "HEADER" msgid "Description" -msgstr "概要" +msgstr "説明" #. TRANS: Activity title when marking a notice as favorite. msgid "Favor" @@ -6418,14 +6144,14 @@ msgstr "お気に入り" #. TRANS: Ntofication given when a user marks a notice as favorite. #. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. -#, fuzzy, php-format +#, php-format msgid "%1$s marked notice %2$s as a favorite." -msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" +msgstr "%1$s はお気に入りとしてあなたのつぶやき %2$s をマークしました。" #. TRANS: Server exception thrown when a URL cannot be processed. #, php-format msgid "Cannot process URL '%s'" -msgstr "" +msgstr "URL '%s' を処理することができません。" #. TRANS: Server exception thrown when... Robin thinks something is impossible! msgid "Robin thinks something is impossible." @@ -6434,7 +6160,7 @@ msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #. TRANS: %1$s is used for plural. -#, fuzzy, php-format +#, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$d bytes. " "Try to upload a smaller version." @@ -6442,42 +6168,39 @@ msgid_plural "" "No file may be larger than %1$d bytes and the file you sent was %2$d bytes. " "Try to upload a smaller version." msgstr[0] "" -"どんなファイルも %d バイトより大きくてはいけません、そして、あなたが送った" -"ファイルは %d バイトでした。より小さいバージョンをアップロードするようにして" -"ください。" +"どんなファイルも %2$d バイトより大きくてはいけません、あなたが送ったファイル" +"は %1$d バイトでした。より小さいファイルをアップロードするようにしてくださ" +"い。" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. -#, fuzzy, php-format +#, php-format msgid "A file this large would exceed your user quota of %d byte." msgid_plural "A file this large would exceed your user quota of %d bytes." -msgstr[0] "" -"これほど大きいファイルはあなたの%dバイトのユーザ割当てを超えているでしょう。" +msgstr[0] "この大きなファイルは、%d バイトの割り当て制限を超過します。" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes and is used for plural. -#, fuzzy, php-format +#, php-format msgid "A file this large would exceed your monthly quota of %d byte." msgid_plural "A file this large would exceed your monthly quota of %d bytes." -msgstr[0] "" -"これほど大きいファイルはあなたの%dバイトの毎月の割当てを超えているでしょう。" +msgstr[0] "この大きなファイルは、%d バイトの月々の割り当て制限を超過します。" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#, fuzzy msgid "Invalid filename." -msgstr "不正なサイズ。" +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 "" +msgstr "プロファイル ID %s は無効です。" #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. -#, fuzzy, php-format +#, php-format msgid "Group ID %s is invalid." -msgstr "ユーザ保存エラー; 不正なユーザ" +msgstr "グループ ID %s は無効です。" #. TRANS: Exception thrown when joining a group fails. msgid "Group join failed." @@ -6499,12 +6222,11 @@ 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. -#, fuzzy msgid "Could not update local group." -msgstr "グループを更新できません。" +msgstr "ローカルグループを更新できませんでした。" #. TRANS: Exception thrown when trying creating a login token failed. #. TRANS: %s is the user nickname for which token creation failed. @@ -6512,13 +6234,12 @@ msgstr "グループを更新できません。" msgid "Could not create login token for %s" msgstr "%s 用のログイン・トークンを作成できませんでした" -#, fuzzy msgid "Cannot instantiate class " -msgstr "新しいパスワードを保存できません。" +msgstr "クラスをインスタンス化することはできません " #. TRANS: Exception thrown when database name or Data Source Name could not be found. msgid "No database name or DSN found anywhere." -msgstr "" +msgstr "データベース名または DSN が見つかりません。" #. 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." @@ -6536,12 +6257,12 @@ msgstr "新しいURIでメッセージをアップデートできませんでし #. TRANS: %1$d is a profile ID (number), %2$d is a notice ID (number). #, php-format msgid "No such profile (%1$d) for notice (%2$d)." -msgstr "" +msgstr "つぶやき (%2$d) のプロファイル (%1$d) はありません。" #. TRANS: Server exception. %s are the error details. -#, fuzzy, php-format +#, php-format msgid "Database error inserting hashtag: %s." -msgstr "OAuth アプリケーションユーザの追加時DBエラー。" +msgstr "ハッシュタグの挿入時のデータベースエラー: %s" #. TRANS: Client exception thrown if a notice contains too many characters. msgid "Problem saving notice. Too long." @@ -6549,7 +6270,7 @@ msgstr "つぶやきを保存する際に問題が発生しました。長すぎ #. TRANS: Client exception thrown when trying to save a notice for an unknown user. msgid "Problem saving notice. Unknown user." -msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。" +msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザーです。" #. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame. msgid "" @@ -6570,34 +6291,30 @@ 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. -#, fuzzy msgid "You cannot repeat your own notice." -msgstr "自分のつぶやきは繰り返せません。" +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." -msgstr "すでにそのつぶやきを繰り返しています。" +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. @@ -6610,7 +6327,7 @@ msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. msgid "Problem saving group inbox." -msgstr "グループ受信箱を保存する際に問題が発生しました。" +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. @@ -6620,51 +6337,48 @@ 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 +#, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" -msgstr "%1$s (%2$s)" +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 msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist." msgstr "" +"ユーザー #%2$d のロール %1$s を取り消すことができません; 存在しません。" #. 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). #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" +"ユーザー #%2$d のロール %1$s を取り消すことができません; データベースエラー。" #. TRANS: Server exception. msgid "The tag you are trying to rename to already exists." -msgstr "" +msgstr "既に存在するタグの名前に変更しようとしています。" #. TRANS: Server exception saving new tag without having a tagger specified. -#, fuzzy msgid "No tagger specified." -msgstr "グループ記述がありません。" +msgstr "" #. TRANS: Server exception saving new tag without having a tag specified. -#, fuzzy msgid "No tag specified." -msgstr "グループ記述がありません。" +msgstr "" #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not create profile tag." -msgstr "プロフィールを保存できませんでした。" +msgstr "プロファイルタグを作成することができませんでした。" #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag URI." -msgstr "プロフィールを保存できませんでした。" +msgstr "プロファイルタグ URI を設定することができませんでした。" #. TRANS: Server exception saving new tag. -#, fuzzy msgid "Could not set profile tag mainpage." -msgstr "プロフィールを保存できませんでした。" +msgstr "プロファイルタグメインページを設定することができませんでした。" #. TRANS: Client exception thrown trying to set more tags than allowed. #, php-format @@ -6681,19 +6395,16 @@ msgid "" msgstr "" #. TRANS: Exception thrown when inserting a list subscription in the database fails. -#, fuzzy msgid "Adding list subscription failed." -msgstr "フォローを保存できません。" +msgstr "リストのフォローの追加ができませんでした。" #. TRANS: Exception thrown when deleting a list subscription from the database fails. -#, fuzzy msgid "Removing list subscription failed." -msgstr "フォローを保存できません。" +msgstr "リストのフォローの解除ができませんでした。" #. TRANS: Exception thrown when a right for a non-existing user profile is checked. -#, fuzzy msgid "Missing profile." -msgstr "ユーザはプロフィールをもっていません。" +msgstr "不明なプロファイル。" #. TRANS: Exception thrown when a tag cannot be saved. msgid "Unable to save tag." @@ -6709,31 +6420,30 @@ msgstr "すでにフォローしています!" #. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user. msgid "User has blocked you." -msgstr "ユーザはあなたをブロックしました。" +msgstr "ユーザーはあなたをブロックしました。" #. TRANS: Exception thrown when trying to unsibscribe without a subscription. msgid "Not subscribed!" -msgstr "フォローしていません!" +msgstr "フォローしていません!" #. TRANS: Exception thrown when trying to unsubscribe a user from themselves. msgid "Could not delete self-subscription." -msgstr "フォローを保存できません。" +msgstr "自身のフォローを削除できません。" #. TRANS: Exception thrown when a subscription could not be deleted on the server. msgid "Could not delete subscription." -msgstr "フォローを保存できません。" +msgstr "フォローを削除できません。" #. 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. -#, fuzzy, php-format +#, php-format msgid "%1$s is now following %2$s." -msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" +msgstr "%1$s は %2$s でフォローしています。" #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -6747,19 +6457,20 @@ msgstr "" #. TRANS: Server exception. msgid "No single user defined for single-user mode." -msgstr "single-user モードのためのシングルユーザが定義されていません。" +msgstr "single-user モードのためのシングルユーザーが定義されていません。" #. TRANS: Server exception. msgid "Single-user mode code called when not enabled." msgstr "" +"有効になっていないときにシングルユーザーモードのコードは呼び出されます。" #. TRANS: Information on password recovery form if no known username or e-mail address was specified. msgid "No user with that email address or username." -msgstr "そのメールアドレスかユーザ名をもっているユーザがありません。" +msgstr "そのメールアドレスかユーザー名をもっているユーザーがありません。" #. TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address. msgid "No registered email address for that user." -msgstr "そのユーザにはメールアドレスの登録がありません。" +msgstr "そのユーザーにはメールアドレスの登録がありません。" #. TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form. msgid "Error saving address confirmation." @@ -6771,84 +6482,75 @@ msgstr "グループを作成できません。" #. TRANS: Server exception thrown when updating a group URI failed. msgid "Could not set group URI." -msgstr "グループを作成できません。" +msgstr "グループの URI を設定できません。" #. TRANS: Server exception thrown when setting group membership failed. msgid "Could not set group membership." msgstr "グループメンバーシップをセットできません。" #. TRANS: Server exception thrown when saving local group information failed. -#, fuzzy msgid "Could not save local group info." -msgstr "フォローを保存できません。" +msgstr "ローカルグループ情報を保存することができませんでした。" #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. -#, fuzzy, php-format +#, php-format msgid "Cannot locate account %s." -msgstr "ユーザを削除できません" +msgstr "%s でアカウントを見つけることができませんでした。" #. TRANS: Exception thrown when a service document could not be located account move. #. TRANS: %s is the remote site. #, php-format msgid "Cannot find XRD for %s." -msgstr "" +msgstr "%s の XRD を見つけることができませんでした。" #. TRANS: Exception thrown when an account could not be located when it should be moved. #. TRANS: %s is the remote site. #, php-format msgid "No AtomPub API service for %s." -msgstr "" +msgstr "%s の AtomPub API サービスがありません。" #. TRANS: H2 for user actions in a profile. #. TRANS: H2 for entity actions in a profile. msgid "User actions" -msgstr "利用者アクション" +msgstr "ユーザーの操作" #. TRANS: Text shown in user profile of not yet compeltely deleted users. msgid "User deletion in progress..." -msgstr "" +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 "メッセージ" #. TRANS: Label text on user profile to select a user role. -#, fuzzy msgid "Moderate" msgstr "管理" #. TRANS: Label text on user profile to select a user role. -#, fuzzy msgid "User role" -msgstr "ユーザプロファイル" +msgstr "ユーザーのロール" #. TRANS: Role that can be set for a user profile. -#, fuzzy msgctxt "role" msgid "Administrator" msgstr "管理者" #. TRANS: Role that can be set for a user profile. -#, fuzzy msgctxt "role" msgid "Moderator" msgstr "管理" @@ -6856,7 +6558,6 @@ msgstr "管理" #. TRANS: Link text for link that will subscribe to a remote profile. #. TRANS: Button text to subscribe to a user. #. TRANS: Button text for subscribing to a list. -#, fuzzy msgctxt "BUTTON" msgid "Subscribe" msgstr "フォロー" @@ -6873,10 +6574,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 "返信" @@ -6884,25 +6584,24 @@ 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 "返事を書く..." #. TRANS: Tab on the notice form. -#, fuzzy msgctxt "TAB" msgid "Status" -msgstr "StatusNet" +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%%) が提供するマ" -"イクロブログサービスです。 " +"**%%site.name%%** は [%%site.broughtby%%] (%%site.broughtbyurl%%) が提供する" +"マイクロブログサービスです。" #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. #, php-format @@ -6919,9 +6618,9 @@ msgid "" "s, available under the [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." msgstr "" -"マイクロブロギングソフト [StatusNet](http://status.net/) , バージョン %s で動" -"いています。 ライセンス [GNU Affero General Public License](http://www.fsf." -"org/licensing/licenses/agpl-3.0.html)。" +"マイクロブロギングソフト [StatusNet] (http://status.net/) , バージョン %s で" +"動いています。 ライセンス [GNU Affero General Public License] (http://www." +"fsf.org/licensing/licenses/agpl-3.0.html)。" #. TRANS: Content license displayed when license is set to 'private'. #. TRANS: %1$s is the site name. @@ -6960,23 +6659,21 @@ 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." msgstr "" #. TRANS: Client exception thrown when trying to force a remote user to subscribe. -#, fuzzy msgid "Cannot force remote user to subscribe." -msgstr "フォローする利用者の名前を指定してください" +msgstr "リモートユーザーのフォローを強制することはできません。" #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. -#, fuzzy msgid "Unknown profile." -msgstr "不明なファイルタイプ" +msgstr "不明なプロファイル。" #. TRANS: Client exception thrown when trying to import an event not related to the importing user. msgid "This activity seems unrelated to our user." @@ -6984,12 +6681,11 @@ msgstr "" #. TRANS: Client exception thrown when trying to join a remote group that is not a group. msgid "Remote profile is not a group!" -msgstr "" +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. @@ -7003,14 +6699,14 @@ msgstr "" #. TRANS: Client exception thrown when trying to import a notice without content. #. TRANS: %s is the notice URI. -#, fuzzy, php-format +#, php-format msgid "No content for notice %s." -msgstr "つぶやきの内容を探す" +msgstr "つぶやきの内容がありません %s。" #. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID. -#, fuzzy, php-format +#, php-format msgid "No such user \"%s\"." -msgstr "そのようなユーザはいません。" +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. @@ -7018,10 +6714,10 @@ msgstr "そのようなユーザはいません。" #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. #. TRANS: Exception thrown when post to collection fails with a status that is not handled. #. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason. -#, fuzzy, php-format +#, php-format msgctxt "URLSTATUSREASON" msgid "%1$s %2$s %3$s" -msgstr "%1$s (%2$s)" +msgstr "" #. TRANS: Client exception thrown when there is no source attribute. msgid "Can't handle remote content yet." @@ -7053,22 +6749,19 @@ msgstr "saveSettings() は実装されていません。" #. 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 "管理者" @@ -7078,27 +6771,24 @@ msgid "Basic site configuration" msgstr "基本サイト設定" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site" msgstr "サイト" #. TRANS: Menu item title in administrator navigation panel. msgid "User configuration" -msgstr "ユーザ設定" +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 "アクセス" @@ -7108,7 +6798,6 @@ msgid "Paths configuration" msgstr "パス設定" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Paths" msgstr "パス" @@ -7118,50 +6807,42 @@ msgid "Sessions configuration" msgstr "セッション設定" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Sessions" msgstr "セッション" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Edit site notice" -msgstr "サイトつぶやき" +msgstr "サイトのお知らせを編集します。" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Site notice" -msgstr "サイトつぶやき" +msgstr "サイトのお知らせ" #. TRANS: Menu item title in administrator navigation panel. -#, fuzzy msgid "Snapshots configuration" -msgstr "パス設定" +msgstr "スナップショットの設定" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Snapshots" msgstr "スナップショット" #. TRANS: Menu item title in administrator navigation panel. msgid "Set site license" -msgstr "" +msgstr "サイトのライセンスを設定" #. 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 "パス設定" +msgstr "プラグインの設定" #. TRANS: Menu item in administrator navigation panel. -#, fuzzy msgctxt "MENU" msgid "Plugins" msgstr "プラグイン" @@ -7174,11 +6855,11 @@ msgstr "" #. TRANS: OAuth exception thrown when no application is found for a given consumer key. msgid "No application for that consumer key." -msgstr "" +msgstr "コンシューマーキー無しのアプリケーション" #. TRANS: Authorization exception thrown when a user without API access tries to access the API. msgid "Not allowed to use API." -msgstr "" +msgstr "API の使用は許可されていません。" #. TRANS: OAuth exception given when an incorrect access token was given for a user. msgid "Bad access token." @@ -7207,10 +6888,10 @@ msgstr "名前" #. TRANS: Form input field instructions. #. TRANS: %d is the number of available characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe your application in %d character" msgid_plural "Describe your application in %d characters" -msgstr[0] "あなたのアプリケーションを %d 字以内記述" +msgstr[0] "あなたのアプリケーションを %d 文字以内で記述" #. TRANS: Form input field instructions. msgid "Describe your application" @@ -7221,7 +6902,7 @@ msgstr "あなたのアプリケーションを記述" #. TRANS: Field label for description of list. #. TRANS: Dropdown option for searching in profiles. msgid "Description" -msgstr "概要" +msgstr "説明" #. TRANS: Form input field instructions. msgid "URL of the homepage of this application" @@ -7283,9 +6964,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. @@ -7293,12 +6973,10 @@ msgid " by " msgstr "" #. TRANS: Application access type -#, fuzzy msgid "read-write" msgstr "リードライト" #. TRANS: Application access type -#, fuzzy msgid "read-only" msgstr "リードオンリー" @@ -7316,18 +6994,16 @@ msgstr "" #. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" msgid "Revoke" -msgstr "回復" +msgstr "取消" #. 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" msgstr "承認" #. 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" msgstr "拒否" @@ -7337,20 +7013,19 @@ msgid "Author element must contain a name element." msgstr "" #. TRANS: Server exception thrown when using the method setActivitySubject() in the class Atom10Feed. -#, fuzzy msgid "Do not use this method!" -msgstr "このつぶやきを削除できません。" +msgstr "このメソッドは使用しないでください!" #. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Timeline for people in list %1$s by %2$s" -msgstr "%2$s 上の %1$s への返信!" +msgstr "%2$s によるリスト %1$s の人々のタイムライン" #. TRANS: Message is used as a subtitle in atom list notice feed. #. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name. -#, fuzzy, php-format +#, php-format msgid "Updates from %1$s's list %2$s on %3$s!" -msgstr "%1$s から %2$s 上の更新をしました!" +msgstr "%3$s の %1$s のリスト %2$s を更新をしました!" #. TRANS: Title. msgid "Notices where this attachment appears" @@ -7361,14 +7036,12 @@ msgid "Tags for this attachment" msgstr "この添付のタグ" #. TRANS: Exception thrown when a password change fails. -#, fuzzy msgid "Password changing failed." -msgstr "パスワード変更に失敗しました" +msgstr "パスワード変更に失敗しました。" #. TRANS: Exception thrown when a password change attempt fails because it is not allowed. -#, fuzzy msgid "Password changing is not allowed." -msgstr "パスワード変更は許可されていません" +msgstr "パスワード変更は許可されていません。" #. TRANS: Title for the form to block a user. msgid "Block" @@ -7376,27 +7049,25 @@ msgstr "ブロック" #. TRANS: Description of the form to block a user. msgid "Block this user" -msgstr "このユーザをブロックする" +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 "すべてのフォロー" +msgstr "フォローリクエストをキャンセルします" #. TRANS: Title for command results. msgid "Command results" msgstr "コマンド結果" #. TRANS: Title for command results. -#, fuzzy msgid "AJAX error" -msgstr "Ajax エラー" +msgstr "AJAX エラー" #. TRANS: E-mail subject when a command has completed. #. TRANS: E-mail subject for reply to an e-mail command. @@ -7408,27 +7079,25 @@ msgid "Command failed" msgstr "コマンド失敗" #. TRANS: Command exception text shown when a notice ID is requested that does not exist. -#, fuzzy msgid "Notice with that id does not exist." -msgstr "その ID によるつぶやきは存在していません" +msgstr "その id のつぶやきは存在していません。" #. 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. -#, fuzzy msgid "User has no last notice." -msgstr "利用者はまだつぶやいていません" +msgstr "ユーザーはまだつぶやいていません。" #. TRANS: Message given requesting a profile for a non-existing user. #. TRANS: %s is the nickname of the user for which the profile could not be found. -#, fuzzy, php-format +#, php-format msgid "Could not find a user with nickname %s." -msgstr "ユーザを更新できません" +msgstr "ニックネーム %s のユーザーを見つけることができませんでした。" #. TRANS: Message given getting a non-existing user. #. TRANS: %s is the nickname of the user that could not be found. #, php-format msgid "Could not find a local user with nickname %s." -msgstr "" +msgstr "ニックネーム %s のローカルユーザーが見つかりませんでした。" #. TRANS: Error text shown when an unimplemented command is given. msgid "Sorry, this command is not yet implemented." @@ -7440,7 +7109,7 @@ 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 "%s へ合図を送りました" @@ -7459,9 +7128,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. msgid "Notice marked as fave." @@ -7471,27 +7139,27 @@ 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: Error displayed if tagging a user fails. #. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error tagging %1$s: %2$s" -msgstr "" +msgstr "タグ %1$s 付与時のエラー: %2$s" #. TRANS: Succes message displayed if tagging a user succeeds. #. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags. #. TRANS: Plural is decided based on the number of tags added (not part of message). -#, fuzzy, php-format +#, php-format msgid "%1$s was tagged %2$s" msgid_plural "%1$s was tagged %2$s" -msgstr[0] "%1$s、ページ %2$d" +msgstr[0] "%1$s は %2$s タグを付けました" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "Jim, Bob, Mary". @@ -7502,13 +7170,13 @@ msgstr "" #. TRANS: %s is the invalid tag. #, php-format msgid "Invalid tag: \"%s\"" -msgstr "不正なタグ: \"%s\"" +msgstr "無効なタグ: \"%s\"" #. TRANS: Error displayed if untagging a user fails. #. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation). #, php-format msgid "Error untagging %1$s: %2$s" -msgstr "" +msgstr "タグ %1$s 解除時のエラー: %2$s" #. TRANS: Succes message displayed if untagging a user succeeds. #. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags. @@ -7520,10 +7188,10 @@ msgstr[0] "" #. 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)" +msgstr "" #. TRANS: Whois output. %s is the full name of the queried user. #, php-format @@ -7561,14 +7229,15 @@ msgstr "" #. 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 +#, 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." -msgstr[0] "メッセージが長すぎます - 最大 %1$d 字、あなたが送ったのは %2$d。" +msgstr[0] "" +"メッセージが長すぎます - 最大 %1$d 文字まで、あなたが送ったのは %2$d 文字。" #. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other). msgid "You can't send a message to this user." -msgstr "このユーザにメッセージを送ることはできません。" +msgstr "このユーザーにメッセージを送ることはできません。" #. TRANS: Error text shown sending a direct message fails with an unknown reason. msgid "Error sending direct message." @@ -7576,54 +7245,51 @@ 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 からつぶやきが繰り返されています" +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. -#, fuzzy, php-format +#, 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." -msgstr[0] "つぶやきが長すぎます - 最大 %d 字、あなたが送ったのは %d" +msgstr[0] "" #. 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. -#, fuzzy, php-format +#, php-format msgid "Reply to %s sent." -msgstr "%s へ返信を送りました" +msgstr "%s へ返信を送りました。" #. TRANS: Error text shown when a reply to a notice fails with an unknown reason. msgid "Error saving notice." msgstr "つぶやき保存エラー。" #. TRANS: Error text shown when no username was provided when issuing a subscribe command. -#, fuzzy msgid "Specify the name of the user to subscribe to." -msgstr "フォローする利用者の名前を指定してください" +msgstr "フォローするユーザーの名前を指定してください。" #. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command. -#, fuzzy msgid "Can't subscribe to OMB profiles by command." -msgstr "あなたはそのプロファイルにフォローされていません。" +msgstr "コマンドで OMB プロファイルをフォローすることはできません。" #. TRANS: Text shown after having subscribed to another user successfully. #. TRANS: %s is the name of the user the subscription was requested for. #, php-format msgid "Subscribed to %s." -msgstr "" +msgstr "%s をフォローしました。" #. 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. -#, fuzzy msgid "Specify the name of the user to unsubscribe from." -msgstr "フォローをやめるユーザの名前を指定してください" +msgstr "フォローをやめるユーザーの名前を指定してください" #. TRANS: Text shown after having unsubscribed from another user successfully. #. TRANS: %s is the name of the user the unsubscription was requested for. #, php-format msgid "Unsubscribed from %s." -msgstr "" +msgstr "%s のフォローを解除しました。" #. 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. @@ -7632,7 +7298,7 @@ msgstr "コマンドはまだ実装されていません。" #. TRANS: Text shown when issuing the command "off" successfully. msgid "Notification off." -msgstr "通知オフ。" +msgstr "通知をオフ。" #. TRANS: Error text shown when the command "off" fails for an unknown reason. msgid "Can't turn off notification." @@ -7640,14 +7306,13 @@ msgstr "通知をオフできません。" #. TRANS: Text shown when issuing the command "on" successfully. msgid "Notification on." -msgstr "通知オン。" +msgstr "通知をオン。" #. TRANS: Error text shown when the command "on" fails for an unknown reason. msgid "Can't turn on notification." msgstr "通知をオンできません。" #. TRANS: Error text shown when issuing the login command while login is disabled. -#, fuzzy msgid "Login command is disabled." msgstr "ログインコマンドが無効になっています。" @@ -7661,7 +7326,7 @@ msgstr "" #. TRANS: %s is the name of the user the unsubscription was requested for. #, php-format msgid "Unsubscribed %s." -msgstr "" +msgstr "%s のフォローを解除しました。" #. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions. msgid "You are not subscribed to anyone." @@ -7684,7 +7349,7 @@ msgstr "誰もフォローしていません。" #. TRANS: hard coded space and a comma separated list of subscribing users. msgid "This person is subscribed to you:" msgid_plural "These people are subscribed to you:" -msgstr[0] "この人はあなたにフォローされている:" +msgstr[0] "この人はあなたにフォローされています:" #. TRANS: Text shown after requesting groups a user is subscribed to without having #. TRANS: any group subscriptions. @@ -7699,30 +7364,26 @@ msgid_plural "You are a member of these groups:" msgstr[0] "あなたはこのグループのメンバーではありません:" #. 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 "このユーザーをフォロー" @@ -7733,16 +7394,14 @@ msgid "lists the groups you have joined" msgstr "" #. TRANS: Help message for IM/SMS command "tag". -#, fuzzy msgctxt "COMMANDHELP" msgid "tag a user" -msgstr "タグユーザ" +msgstr "ユーザーにタグを付ける" #. TRANS: Help message for IM/SMS command "untag". -#, fuzzy msgctxt "COMMANDHELP" msgid "untag a user" -msgstr "タグユーザ" +msgstr "ユーザーからタグを解除する" #. TRANS: Help message for IM/SMS command "subscriptions". msgctxt "COMMANDHELP" @@ -7755,16 +7414,14 @@ msgid "list the people that follow you" 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" @@ -7772,10 +7429,9 @@ msgid "get last notice from user" 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" @@ -7798,10 +7454,9 @@ msgid "repeat a notice with a given id" msgstr "" #. 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" @@ -7809,16 +7464,14 @@ msgid "reply to notice with a given id" msgstr "" #. 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" @@ -7826,36 +7479,35 @@ msgid "Get a link to login to the web interface" 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". 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 ". @@ -7866,10 +7518,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 "コマンドはまだ実装されていません。" +msgstr "まだ実装されていません。" #. TRANS: Help message for IM/SMS command "nudge ". msgctxt "COMMANDHELP" @@ -7877,20 +7528,18 @@ msgid "remind a user to update." msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#, fuzzy msgid "No configuration file found." -msgstr "コンフィギュレーションファイルがありません。 " +msgstr "設定ファイルが見つかりませんでした。" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. #. TRANS: Is followed by a list of directories (separated by HTML breaks). -#, fuzzy msgid "I looked for configuration files in the following places:" -msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: " +msgstr "以下の場所で設定ファイルを探しました:" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. msgid "You may wish to run the installer to fix this." msgstr "" -"あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ" +"あなたは、これを修復するためにインストーラを実行したがっているかもしれませ" "ん。" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. @@ -7904,7 +7553,6 @@ msgstr "データベースエラー" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Public" msgstr "パブリック" @@ -7912,17 +7560,15 @@ msgstr "パブリック" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item in search group navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Groups" msgstr "グループ" #. TRANS: Menu item in default local navigation panel. #. TRANS: Menu item title in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Lists" -msgstr "制限" +msgstr "リスト" #. TRANS: Title of form for deleting a user. #. TRANS: Link text in notice list item to delete a notice. @@ -7931,12 +7577,12 @@ msgstr "削除" #. TRANS: Description of form for deleting a user. msgid "Delete this user" -msgstr "このユーザを削除" +msgstr "このユーザーを削除" #. TRANS: Exception. %s is an ID. -#, fuzzy, php-format +#, php-format msgid "Unable to find services for %s." -msgstr "アプリケーションのための取消しアクセスができません: " +msgstr "%s のサービスを見つけることができません。" #. TRANS: Form legend for removing the favourite status for a favourite notice. #. TRANS: Title for button text for removing the favourite status for a favourite notice. @@ -7944,7 +7590,6 @@ msgid "Disfavor this notice" msgstr "このつぶやきのお気に入りをやめる" #. TRANS: Button text for removing the favourite status for a favourite notice. -#, fuzzy msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "お気に入りをやめる" @@ -7955,26 +7600,25 @@ msgid "Favor this notice" msgstr "このつぶやきをお気に入りにする" #. TRANS: Button text for adding the favourite status to a notice. -#, fuzzy msgctxt "BUTTON" msgid "Favor" msgstr "お気に入り" #. TRANS: Feed type name. msgid "RSS 1.0" -msgstr "RSS 1.0" +msgstr "" #. TRANS: Feed type name. msgid "RSS 2.0" -msgstr "RSS 2.0" +msgstr "" #. TRANS: Feed type name. msgid "Atom" -msgstr "Atom" +msgstr "" #. TRANS: Feed type name. FOAF stands for Friend of a Friend. msgid "FOAF" -msgstr "FOAF" +msgstr "" #. TRANS: Feed type name. See http://activitystrea.ms/ msgid "Activity Streams" @@ -7982,7 +7626,7 @@ msgstr "" #. TRANS: Client exception thrown when an imported feed does not have an author. msgid "No author in the feed." -msgstr "" +msgstr "フィードの著者がいません。" #. TRANS: Client exception thrown when an imported feed does not have an author that #. TRANS: can be associated with a user. @@ -7991,10 +7635,9 @@ msgstr "" #. TRANS: Header for feed links (h2). msgid "Feeds" -msgstr "" +msgstr "フィード" #. TRANS: List element on gallery action page to show all tags. -#, fuzzy msgctxt "TAGS" msgid "All" msgstr "全て" @@ -8004,9 +7647,8 @@ 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: Description on form for granting a role. #, php-format @@ -8016,35 +7658,32 @@ msgstr "" #. TRANS: Button text for the form that will block a user from a group. msgctxt "BUTTON" msgid "Block" -msgstr "" +msgstr "ブロック" #. TRANS: Submit button title. msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "このユーザーをブロックする" #. TRANS: Field title on group edit form. -#, fuzzy msgid "URL of the homepage or blog of the group or topic." -msgstr "グループやトピックのホームページやブログの URL" +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. -#, 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[0] "グループやトピックの説明を %d 文字以内で記述" #. TRANS: Field title on group edit form. -#, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." -msgstr "グループの場所, 例えば \"都市, 都道府県 (または 地域), 国\"" +msgstr "グループの場所、例えば \"都市、都道府県 (または 地域)、国\"。" #. TRANS: Field label on group edit form. msgid "Aliases" @@ -8052,7 +7691,7 @@ msgstr "別名" #. TRANS: Input field title for group aliases. #. TRANS: %d is the maximum number of group aliases available. -#, fuzzy, php-format +#, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " "alias allowed." @@ -8060,7 +7699,8 @@ msgid_plural "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " "aliases allowed." msgstr[0] "" -"グループのエクストラニックネーム、カンマまたはスペース区切り、最大 %d" +"グループのエクストラニックネーム、カンマまたはスペース区切り、最大 %d、エイリ" +"アス可。" #. TRANS: Checkbox field title on group edit form to mark a group private. msgid "" @@ -8068,7 +7708,6 @@ msgid "" msgstr "" #. TRANS: Indicator in group members list that this user is a group administrator. -#, fuzzy msgctxt "GROUPADMIN" msgid "Admin" msgstr "管理者" @@ -8076,26 +7715,26 @@ msgstr "管理者" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" msgid "Group" -msgstr "" +msgstr "グループ" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "%s group" -msgstr "" +msgstr "%s グループ" #. TRANS: Menu item in the group navigation page. msgctxt "MENU" msgid "Members" -msgstr "" +msgstr "メンバー" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "%s group members" -msgstr "" +msgstr "%s グループのメンバー" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. #. TRANS: %d is the number of pending members. @@ -8103,30 +7742,29 @@ msgstr "" msgctxt "MENU" msgid "Pending members (%d)" msgid_plural "Pending members (%d)" -msgstr[0] "" +msgstr[0] "保留中のメンバー (%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" msgid "Blocked" -msgstr "" +msgstr "ブロック状態" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. #, php-format msgctxt "TOOLTIP" msgid "%s blocked users" -msgstr "" +msgstr "%s ブロックされたユーザー" #. 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" msgstr "管理者" @@ -8136,12 +7774,12 @@ msgstr "管理者" #, php-format msgctxt "TOOLTIP" msgid "Edit %s group properties" -msgstr "" +msgstr "%s グループのプロパティを編集" #. TRANS: Menu item in the group navigation page. Only shown for group administrators. msgctxt "MENU" msgid "Logo" -msgstr "" +msgstr "ロゴ" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -8155,20 +7793,18 @@ msgid "Group actions" msgstr "グループアクション" #. TRANS: Title for groups with the most members section. -#, fuzzy msgid "Popular groups" -msgstr "人気のつぶやき" +msgstr "人気のグループ" #. TRANS: Title for groups with the most posts section. -#, fuzzy msgid "Active groups" -msgstr "全てのグループ" +msgstr "活発なグループ" msgid "See all" -msgstr "" +msgstr "全てを見る" msgid "See all groups you belong to" -msgstr "" +msgstr "所属する全てのグループを見る" #. TRANS: Title for group tag cloud section. #. TRANS: %s is a group name. @@ -8208,22 +7844,22 @@ msgid "Unknown file type" msgstr "不明なファイルタイプ" #. TRANS: Number of megabytes. %d is the number. -#, fuzzy, php-format +#, php-format msgid "%dMB" msgid_plural "%dMB" -msgstr[0] "MB" +msgstr[0] "%d メガバイト" #. TRANS: Number of kilobytes. %d is the number. -#, fuzzy, php-format +#, php-format msgid "%dkB" msgid_plural "%dkB" -msgstr[0] "kB" +msgstr[0] "%d キロバイト" #. TRANS: Number of bytes. %d is the number. #, php-format msgid "%dB" msgid_plural "%dB" -msgstr[0] "" +msgstr[0] "%d バイト" #. TRANS: Body text for confirmation code e-mail. #. TRANS: %1$s is a user nickname, %2$s is the StatusNet sitename, @@ -8241,7 +7877,7 @@ msgstr "" #. TRANS: %d is the unknown inbox ID (number). #, php-format msgid "Unknown inbox source %d." -msgstr "不明な受信箱のソース %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." @@ -8254,27 +7890,24 @@ msgstr "" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trends" -msgstr "" +msgstr "トレンド" #. TRANS: Default button text for inviting more users to the StatusNet instance. -#, fuzzy msgctxt "BUTTON" msgid "Invite more colleagues" -msgstr "新しいユーザを招待" +msgstr "多くの同僚を招待する" #. TRANS: Form legend. -#, fuzzy msgid "Invite collegues" -msgstr "新しいユーザを招待" +msgstr "同僚を招待する" #. TRANS: Field label for a list of e-mail addresses. msgid "Email addresses" msgstr "メールアドレス" #. TRANS: Field title for a list of e-mail addresses. -#, fuzzy 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" @@ -8286,45 +7919,38 @@ msgstr "任意に招待にパーソナルメッセージを加えてください #. TRANS: Send button for inviting friends #. TRANS: Button text for sending notice. -#, fuzzy msgctxt "BUTTON" msgid "Send" -msgstr "投稿" +msgstr "送信" #. TRANS: Submit button title. -#, fuzzy msgid "Send invitations." -msgstr "招待" +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" msgid "Leave" msgstr "離れる" -#, fuzzy msgid "See all lists you have created" -msgstr "あなたが登録したアプリケーション" +msgstr "作成したすべてのリストを参照する" #. TRANS: Menu item for logging in to the StatusNet site. #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Login" msgstr "ログイン" #. TRANS: Title for menu item for logging in to the StatusNet site. msgid "Login with a username and password" -msgstr "ユーザ名とパスワードでログイン" +msgstr "ユーザー名とパスワードでログイン" #. TRANS: Menu item for registering with the StatusNet site. -#, fuzzy msgctxt "MENU" msgid "Register" msgstr "登録" @@ -8340,7 +7966,7 @@ msgstr "メールアドレス確認" #. 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" @@ -8355,32 +7981,32 @@ msgid "" "Thanks for your time, \n" "%2$s\n" msgstr "" -"こんにちは、%s\n" +"こんにちは、%1$s。\n" "\n" -"だれかがこのメールアドレスを %s に入力しました。\n" +"だれかが %2$s でこの電子メールアドレスを入力しました。\n" "\n" "もし登録を承認したいなら、以下のURLを使用してください:\n" "\n" -"%s\n" +"%3$s\n" "\n" "もしそうでなければ、このメッセージを無視してください。\n" "\n" "ありがとうございます。\n" -"%s\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. #. TRANS: Main body of 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 is now following you on %2$s." -msgstr "%1$s は %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 +#, 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. @@ -8393,7 +8019,7 @@ 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. -#, fuzzy, php-format +#, php-format msgid "" "Faithfully yours,\n" "%1$s.\n" @@ -8401,22 +8027,17 @@ msgid "" "----\n" "Change your email address or notification options at %2$s" msgstr "" -"%1$s は %2$s であなたのつぶやきを聞いています。\n" +"敬具,\n" +"%1$s.\n" "\n" -"%3$s\n" -"\n" -"%4$s%5$s%6$s\n" -"忠実である、あなたのもの、\n" -"%7$s.\n" -"\n" -"----\n" -"%8$s でメールアドレスか通知オプションを変えてください。\n" +"---- \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. @@ -8441,7 +8062,7 @@ msgstr "%s へ投稿のための新しいメールアドレス" #. 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" @@ -8449,14 +8070,11 @@ msgid "" "\n" "More email instructions at %3$s." msgstr "" -"あなたは %1$s に関する新しい投稿アドレスを持っています。\n" +"あなたは %1$s に新しい投稿アドレスを持っています。\n" "\n" "%2$s にメールを送って、新しいメッセージを投稿してください。\n" "\n" -"%3$s でより多くのメール指示。\n" -"\n" -"忠実である、あなたのもの、\n" -"%4$s" +"%3$s でより多くのメール指示。" #. TRANS: Subject line for SMS-by-email notification messages. #. TRANS: %s is the posting user's nickname. @@ -8466,24 +8084,24 @@ msgstr "%s の状態" #. TRANS: Subject line for SMS-by-email address confirmation message. msgid "SMS confirmation" -msgstr "SMS確認" +msgstr "SMS 確認" #. TRANS: Main body heading for SMS-by-email address confirmation message. #. TRANS: %s is the addressed user's nickname. -#, fuzzy, php-format +#, php-format msgid "%s: confirm you own this phone number with this code:" -msgstr "この電話番号は確認待ちです。" +msgstr "%s: この電話番号は確認待ちです。" #. TRANS: Subject for 'nudge' notification email. #. TRANS: %s is the nudging user. -#, fuzzy, php-format +#, php-format msgid "You have been nudged by %s" 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" @@ -8494,17 +8112,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. @@ -8515,7 +8130,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" @@ -8535,27 +8150,24 @@ msgstr "" "%3$s\n" "------------------------------------------------------\n" "\n" -"あなたはここでそれらのメッセージに答えることができます:\n" +"あなたは以下でそれらのメッセージに答えることができます:\n" "\n" "%4$s\n" "\n" -"このメールに答えないでください。 それはそれらを始めないでしょう。\n" -"\n" -"敬具\n" -"%5$s" +"このメールに答えないでください。それを受け取ることはありません。" #. 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. -#, fuzzy, php-format +#, php-format msgid "%1$s (@%2$s) added your notice as a favorite" -msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" +msgstr "%1$ss (@%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, #. 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" @@ -8571,23 +8183,20 @@ msgid "" "\n" "%5$s" msgstr "" -"%1$s (@%7$s) は彼らのお気に入りのひとりとして %2$s からあなたのつぶやきを加え" -"ました。\n" +"%1$s (@%7$s) は自分のお気に入りのひとつとして %2$s のあなたのつぶやきを加えま" +"した。\n" "\n" -"あなたのつぶやきのURL:\n" +"あなたのつぶやきのURL:\n" "\n" "%3$s\n" "\n" -"あなたのつぶやきのテキスト:\n" +"あなたのつぶやきの本文:\n" "\n" "%4$s\n" "\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 @@ -8596,17 +8205,20 @@ 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, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8628,6 +8240,25 @@ msgid "" "\n" "%7$s" msgstr "" +"%1$s は %2$s であなた宛につぶやき ('@-reply' 付) を送りました。\n" +"\n" +"つぶやきはこちら:\n" +"\n" +"\t%3$s\n" +"\n" +"それを読む:\n" +"\n" +"\t%4$s\n" +"\n" +"\t%5$s\n" +"\n" +"返信する場合こちら:\n" +"\n" +"\t%6$s\n" +"\n" +"あなた宛のすべての @ 付返信のリストはこちら:\n" +"\n" +"\t%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. @@ -8635,15 +8266,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 "%3$s のあなたのグループ %2$s に %1$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 でお気に入りを更新しました / %2$s。" +msgstr "%3$s のあなたのグループ %2$s に %1$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, @@ -8656,46 +8287,42 @@ 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 "ユーザだけがかれら自身のメールボックスを読むことができます。" +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 "受信箱" +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 "送信箱" +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." -msgstr "メッセージを分析できませんでした。" +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 "登録ユーザではありません。" +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." @@ -8707,23 +8334,23 @@ 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" -msgstr "ユーザをグループの管理者にする" +msgstr "ユーザーをグループの管理者にする" #. TRANS: Button text for the form that will make a user administrator. msgctxt "BUTTON" msgid "Make Admin" -msgstr "" +msgstr "管理者にする" #. TRANS: Submit button title. msgctxt "TOOLTIP" msgid "Make this user an admin" -msgstr "" +msgstr "このユーザーを管理者にする" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8733,7 +8360,7 @@ msgstr "" #. TRANS: Client exception thrown when a file upload operation would cause a user to exceed a set quota. msgid "File exceeds user's quota." -msgstr "ファイルはユーザの割当てを超えています。" +msgstr "ファイルはユーザーの割当てを超えています。" #. TRANS: Client exception thrown when a file upload operation fails because the file could #. TRANS: not be moved from the temporary folder to the permanent file location. @@ -8743,7 +8370,7 @@ msgstr "ファイルを目的ディレクトリに動かすことができませ #. TRANS: Client exception thrown when a file upload operation has been stopped because the MIME #. TRANS: type of the uploaded file could not be determined. msgid "Could not determine file's MIME type." -msgstr "ファイルのMIMEタイプを決定できません。" +msgstr "ファイルの MIME タイプを特定できません。" #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %1$s is the file type that was denied, %2$s is the application part of @@ -8753,12 +8380,15 @@ msgid "" "\"%1$s\" is not a supported file type on this server. Try using another %2$s " "format." msgstr "" +"\"%1$s\" はこのサーバでサポートされているファイルの種類ではありません。別の形" +"式 %2$s を試してください。" #. TRANS: Client exception thrown trying to upload a forbidden MIME type. #. TRANS: %s is the file type that was denied. #, php-format msgid "\"%s\" is not a supported file type on this server." msgstr "" +"\"%s\" はこのサーバーでサポートされているファイルの種類ではありません。" #. TRANS: Form legend for direct notice. msgid "Send a direct notice" @@ -8767,34 +8397,30 @@ msgstr "直接つぶやきを送る" #. 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 "キャリア選択" +msgstr "受信者を選択:" #. 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 "フォローしていません!" +msgstr "互いにフォローしていません。" #. TRANS: Dropdown label in direct notice form. msgid "To" -msgstr "To" +msgstr "" #. TRANS: Button text for sending a direct notice. -#, fuzzy msgctxt "Send button for sending notice" msgid "Send" -msgstr "投稿" +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" +msgstr "" #. TRANS: A possible notice source (web interface). msgctxt "SOURCE" @@ -8807,7 +8433,6 @@ msgid "xmpp" msgstr "" #. TRANS: A possible notice source (e-mail). -#, fuzzy msgctxt "SOURCE" msgid "mail" msgstr "メール" @@ -8827,14 +8452,12 @@ msgid "Cannot get author for activity." msgstr "" #. TRANS: Client exception thrown when ... -#, fuzzy msgid "Bookmark not posted to this group." -msgstr "このグループのメンバーではありません。" +msgstr "ブックマークはこのグループに投稿できません。" #. TRANS: Client exception when ... -#, fuzzy msgid "Object not posted to this user." -msgstr "このつぶやきを削除できません。" +msgstr "オブジェクトはこのユーザーに投稿できません。" #. 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." @@ -8845,17 +8468,17 @@ msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" msgid "More ▼" -msgstr "" +msgstr "もっと ▼" #. TRANS: Validation error in form for registration, profile and group settings, etc. msgid "Nickname cannot be empty." -msgstr "" +msgstr "ニックネームを空にすることはできません。" #. TRANS: Validation error in form for registration, profile and group settings, etc. #, php-format msgid "Nickname cannot be more than %d character long." msgid_plural "Nickname cannot be more than %d characters long." -msgstr[0] "" +msgstr[0] "ニックネームを %d 文字以上にすることはできません。" #. TRANS: Form legend for notice form. msgid "Send a notice" @@ -8871,9 +8494,8 @@ msgid "Attach" msgstr "添付" #. TRANS: Title for input field to attach a file to a notice. -#, fuzzy msgid "Attach a file." -msgstr "ファイル添付" +msgstr "ファイルを添付する。" #. TRANS: Field label to add location to a notice. msgid "Share my location" @@ -8897,24 +8519,20 @@ msgid ", " msgstr "" #. TRANS: Used in coordinates as abbreviation of north. -#, fuzzy msgid "N" -msgstr "北" +msgstr "" #. TRANS: Used in coordinates as abbreviation of south. -#, fuzzy msgid "S" -msgstr "南" +msgstr "" #. TRANS: Used in coordinates as abbreviation of east. -#, fuzzy msgid "E" -msgstr "東" +msgstr "" #. TRANS: Used in coordinates as abbreviation of west. -#, fuzzy msgid "W" -msgstr "西" +msgstr "" #. TRANS: Coordinates message. #. TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes, @@ -8927,7 +8545,7 @@ msgstr "" #. TRANS: Followed by geo location. msgid "at" -msgstr "at" +msgstr "" #. TRANS: Addition in notice list item if notice is part of a conversation. msgid "in context" @@ -8950,226 +8568,198 @@ 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 "" +msgstr "あなたのステータスを更新する..." #. TRANS: Form legend of form to nudge/ping another user. msgid "Nudge this user" -msgstr "このユーザへ合図" +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." -msgstr "このユーザへ合図を送る" +msgstr "このユーザーへ合図を送る" #. TRANS: Server exception thrown in oEmbed action if no API endpoint is available. -#, fuzzy msgid "No oEmbed API endpoint available." -msgstr "IM が利用不可。" +msgstr "利用可能な oEmbed API エンドポイントがありません。" #. TRANS: Field label for list. -#, fuzzy msgctxt "LABEL" msgid "List" -msgstr "リンク" +msgstr "リスト" #. TRANS: Field title for list. -#, fuzzy msgid "Change the list (letters, numbers, -, ., and _ are allowed)." -msgstr "" -"このユーザのタグ (アルファベット、数字、-、.、_)、カンマかスペース区切り" +msgstr "リストを変更 (アルファベット、数字、-、.、および _ が利用可能)。" #. TRANS: Field title for description of list. -#, fuzzy msgid "Describe the list or topic." -msgstr "グループやトピックを記述" +msgstr "リストまたはトピックについて説明する。" #. TRANS: Field title for description of list. #. TRANS: %d is the maximum number of characters for the description. -#, fuzzy, php-format +#, php-format msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." -msgstr[0] "グループやトピックを %d 字以内記述" +msgstr[0] "リストやトピックの説明を %d 文字以内で記述。" #. TRANS: Button title to delete a list. -#, fuzzy msgid "Delete this list." -msgstr "このユーザを削除" +msgstr "このユーザーを削除。" #. TRANS: Header in list edit form. msgid "Add or remove people" -msgstr "" +msgstr "人を追加または削除" #. TRANS: Header in list edit form. -#, fuzzy msgctxt "HEADER" msgid "Search" msgstr "検索" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "List" -msgstr "リンク" +msgstr "リスト" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "%1$s list by %2$s." -msgstr "%1$s、ページ %2$d" +msgstr "%2$s の %1$s リスト" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Listed" -msgstr "ライセンス" +msgstr "リスト" #. TRANS: Menu item in list navigation panel. #. TRANS: Menu item in local navigation menu. -#, fuzzy msgctxt "MENU" msgid "Subscribers" msgstr "フォローされている" #. TRANS: Menu item title in list navigation panel. #. TRANS: %1$s is a list, %2$s is a nickname. -#, fuzzy, php-format +#, php-format msgid "Subscribers to %1$s list by %2$s." -msgstr "%2$s 上の %1$s への返信!" +msgstr "%2$s はリスト %1$s をフォローする。" #. TRANS: Menu item in list navigation panel. -#, fuzzy msgctxt "MENU" msgid "Edit" msgstr "編集" #. TRANS: Menu item title in list navigation panel. #. TRANS: %s is a list. -#, fuzzy, php-format +#, php-format msgid "Edit %s list by you." -msgstr "%s グループを編集" - -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "タグ" +msgstr "%s リストを編集" #. TRANS: Title for link to edit list settings. -#, fuzzy msgid "Edit list settings." -msgstr "プロファイル設定編集" +msgstr "リスト設定を編集する。" #. TRANS: Text for link to edit list settings. msgid "Edit" msgstr "編集" #. TRANS: Privacy mode text in list list item for private list. -#, fuzzy msgctxt "MODE" msgid "Private" msgstr "プライベート" #. TRANS: Menu item in the group navigation page. -#, fuzzy msgctxt "MENU" msgid "List Subscriptions" -msgstr "フォロー" +msgstr "フォローリスト" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists subscribed to by %s." -msgstr "人々は %s をフォローしました。" +msgstr "%s のフォローリスト。" #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "MENU" msgid "Lists with %s" -msgstr "%s で更新" +msgstr "%s のリスト" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists with %s." -msgstr "%s で更新" +msgstr "%s のリスト" #. TRANS: Menu item in the group navigation page. #. TRANS: %s is a user nickname. #, php-format msgctxt "MENU" msgid "Lists by %s" -msgstr "" +msgstr "%s のリスト" #. TRANS: Tooltip for menu item in the group navigation page. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgctxt "TOOLTIP" msgid "Lists by %s." -msgstr "%1$s、ページ %2$d" +msgstr "%s のリスト" #. TRANS: Label in lists widget. -#, fuzzy msgctxt "LABEL" msgid "Your lists" -msgstr "人気のつぶやき" +msgstr "あなたのリスト" #. TRANS: Fieldset legend in lists widget. -#, fuzzy msgctxt "LEGEND" msgid "Edit lists" -msgstr "有効なメールアドレスではありません。" +msgstr "リストを編集" #. TRANS: Label in self tags widget. -#, fuzzy msgctxt "LABEL" msgid "Tags" msgstr "タグ" #. TRANS: Title for section contaning lists with the most subscribers. -#, fuzzy msgid "Popular lists" msgstr "人気のつぶやき" #. TRANS: List summary. %1$d is the number of users in the list, #. TRANS: %2$d is the number of subscribers to the list. -#, fuzzy, php-format +#, php-format msgid "Listed: %1$d Subscribers: %2$d" -msgstr "%1$s フォローされている、ページ %2$d" +msgstr "リスト: %1$d フォロー: %2$d" #. TRANS: Title for page that displays which lists current user is part of. -#, fuzzy, php-format +#, php-format msgid "Lists with you" -msgstr "API メソッドが見つかりません。" +msgstr "あなたとリスト" #. TRANS: Title for page that displays which lists a user is part of. #. TRANS: %s is a profile name. -#, fuzzy, php-format +#, php-format msgid "Lists with %s" -msgstr "%s で更新" +msgstr "%s とリスト" #. TRANS: Title for page that displays lists a user has subscribed to. -#, fuzzy msgid "List subscriptions" -msgstr "%s フォローしている" +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 "プロファイル" @@ -9179,25 +8769,21 @@ 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 "ユーザ" +msgstr "ユーザー" #. TRANS: Menu item in personal group navigation menu. -#, fuzzy msgctxt "MENU" msgid "Messages" msgstr "メッセージ" @@ -9213,74 +8799,66 @@ msgstr "不明" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Disable" -msgstr "" +msgstr "無効" #. TRANS: Plugin admin panel controls msgctxt "plugin" msgid "Enable" -msgstr "" +msgstr "有効" #. TRANS: Plugin description for a disabled plugin. msgctxt "plugin-description" msgid "" "(The plugin description is unavailable when a plugin has been disabled.)" msgstr "" +"(プラグインの説明は、プラグインが無効になっている場合は使用できません。)" #. TRANS: Menu item in primary navigation panel. -#, fuzzy msgctxt "MENU" msgid "Settings" -msgstr "SMS 設定" +msgstr "設定" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Change your personal settings." -msgstr "プロファイル設定の変更" +msgstr "個人設定を変更する。" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Site configuration." -msgstr "ユーザ設定" +msgstr "サイト設定。" #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Logout" -msgstr "ロゴ" +msgstr "ログアウト" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Logout from the site." -msgstr "サイトのテーマ" +msgstr "サイトからログアウトします" #. TRANS: Menu item title in primary navigation panel. -#, fuzzy msgid "Login to the site." -msgstr "サイトへログイン" +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 "サイト検索" +msgstr "サイトを検索" #. TRANS: H2 text for user subscription statistics. -#, fuzzy msgid "Following" -msgstr "許可" +msgstr "フォローしている" #. TRANS: H2 text for user subscriber statistics. -#, fuzzy msgid "Followers" -msgstr "許可" +msgstr "フォロワー" #. TRANS: Label for user statistics. msgid "User ID" -msgstr "ユーザID" +msgstr "ユーザーID" #. TRANS: Label for user statistics. msgid "Member since" @@ -9293,16 +8871,15 @@ msgstr "つぶやき" #. TRANS: Label for user statistics. #. TRANS: Average count of posts made per day since account registration. msgid "Daily average" -msgstr "" +msgstr "毎日の平均" #. TRANS: H2 text for user group membership statistics. msgid "Groups" msgstr "グループ" #. TRANS: H2 text for user list membership statistics. -#, fuzzy msgid "Lists" -msgstr "制限" +msgstr "リスト" #. TRANS: Server error displayed when using an unimplemented method. msgid "Unimplemented method." @@ -9310,10 +8887,9 @@ msgstr "未実装のメソッド。" #. TRANS: Menu item title in search group navigation panel. msgid "User groups" -msgstr "ユーザグループ" +msgstr "ユーザーグループ" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Recent tags" msgstr "最近のタグ" @@ -9323,13 +8899,11 @@ msgid "Recent tags" msgstr "最近のタグ" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Featured" -msgstr "フィーチャーされた" +msgstr "おすすめ" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Popular" msgstr "人気" @@ -9337,7 +8911,7 @@ msgstr "人気" #. TRANS: Title for inbox tag cloud section. msgctxt "TITLE" msgid "Trending topics" -msgstr "" +msgstr "流行の話題" #. TRANS: Client error displayed when return-to was defined without a target. msgid "No return-to arguments." @@ -9345,32 +8919,29 @@ msgstr "return-to 引数がありません。" #. TRANS: For legend for notice repeat form. msgid "Repeat this notice?" -msgstr "このつぶやきを繰り返しますか?" +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. -#, fuzzy, php-format +#, php-format msgid "Revoke the \"%s\" role from this user" -msgstr "このグループからこのユーザをブロック" +msgstr "このユーザーからロール \"%s\" を解除する。" #. TRANS: Client error on action trying to visit a non-existing page. -#, fuzzy msgid "Page not found." -msgstr "API メソッドが見つかりません。" +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 "このユーザをサンドボックス" +msgstr "このユーザーをサンドボックス" #. TRANS: Fieldset legend for the search form. msgid "Search site" @@ -9385,7 +8956,7 @@ msgstr "キーワード" #. TRANS: Button text to search profiles. msgctxt "BUTTON" msgid "Search" -msgstr "" +msgstr "検索" #. TRANS: Standard search suggestions shown when a search does not give any results. msgid "" @@ -9409,7 +8980,6 @@ msgid "" msgstr "" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "People" msgstr "人々" @@ -9419,7 +8989,6 @@ msgid "Find people on this site" msgstr "このサイトの人々を探す" #. TRANS: Menu item in search group navigation panel. -#, fuzzy msgctxt "MENU" msgid "Notices" msgstr "つぶやき" @@ -9433,22 +9002,19 @@ 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 "About" +msgstr "" #. TRANS: Secondary navigation menu item leading to Frequently Asked Questions. -#, fuzzy msgctxt "MENU" msgid "FAQ" -msgstr "よくある質問" +msgstr "よくある質問と回答" #. TRANS: Secondary navigation menu item leading to Terms of Service. msgctxt "MENU" @@ -9456,32 +9022,27 @@ msgid "TOS" 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 "ソース" #. 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 "バッジ" @@ -9495,17 +9056,15 @@ msgid "More..." msgstr "さらに..." #. TRANS: Header in settings navigation panel. -#, fuzzy msgctxt "HEADER" msgid "Settings" -msgstr "SMS 設定" +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 "アバター" @@ -9515,7 +9074,6 @@ msgid "Upload an avatar" msgstr "アバターのアップロード" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Password" msgstr "パスワード" @@ -9525,47 +9083,42 @@ msgid "Change your password" msgstr "パスワードの変更" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Email" -msgstr "メール" +msgstr "電子メール" #. TRANS: Menu item title in settings navigation panel. msgid "Change email handling" msgstr "メールの扱いを変更" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "URL" -msgstr "URL" +msgstr "" #. TRANS: Menu item title in settings navigation panel. msgid "URL shorteners" -msgstr "" +msgstr "URL 短縮サービス" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "IM" -msgstr "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 "SMS" +msgstr "" #. TRANS: Menu item title in settings navigation panel. msgid "Updates by SMS" -msgstr "SMSでの更新" +msgstr "SMS での更新" #. TRANS: Menu item in settings navigation panel. -#, fuzzy msgctxt "MENU" msgid "Connections" msgstr "接続" @@ -9575,24 +9128,21 @@ msgid "Authorized connected applications" msgstr "承認された接続アプリケーション" #. TRANS: Title of form to silence a user. -#, fuzzy msgctxt "TITLE" msgid "Silence" -msgstr "サイレンス" +msgstr "" #. TRANS: Description of form to silence a user. msgid "Silence this user" -msgstr "このユーザをサイレンスに" +msgstr "このユーザーをサイレンスに" #. TRANS: Server error displayed when trying to create an anynymous OAuth consumer. -#, fuzzy msgid "Could not create anonymous consumer." -msgstr "別名を作成できません。" +msgstr "匿名利用者を作成することはできません。" #. TRANS: Server error displayed when trying to create an anynymous OAuth application. -#, fuzzy msgid "Could not create anonymous OAuth application." -msgstr "アプリケーションを作成できません。" +msgstr "匿名 OAuth アプリケーションを作成することはできません。" #. TRANS: Exception thrown when no token association could be found. msgid "" @@ -9600,18 +9150,16 @@ msgid "" msgstr "" #. TRANS: Exception thrown when no access token can be issued. -#, fuzzy msgid "Could not issue access token." -msgstr "メッセージを追加できません。" +msgstr "アクセストークンを発行できませんでした。" #. TRANS: Exception thrown when a database error occurs. msgid "Database error inserting OAuth application user." -msgstr "OAuth アプリケーションユーザの追加時DBエラー。" +msgstr "OAuth アプリケーションユーザーの追加時のデータベースエラー。" #. TRANS: Exception thrown when a database error occurs. -#, fuzzy msgid "Database error updating OAuth application user." -msgstr "OAuth アプリケーションユーザの追加時DBエラー。" +msgstr "OAuth アプリケーションユーザーの更新時のデータベースエラー。" #. TRANS: Exception thrown when an attempt is made to revoke an unknown token. msgid "Tried to revoke unknown token." @@ -9622,20 +9170,19 @@ msgid "Failed to delete revoked token." 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 title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "People subscribed to %s." msgstr "人々は %s をフォローしました。" @@ -9644,7 +9191,7 @@ msgstr "人々は %s をフォローしました。" #, php-format msgctxt "MENU" msgid "Pending (%d)" -msgstr "" +msgstr "保留中 (%d)" #. TRANS: Menu item title in local navigation menu. #, php-format @@ -9653,36 +9200,34 @@ 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 title in local navigation menu. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "List subscriptions by %s." -msgstr "人々は %s をフォローしました。" +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 the StatusNet sitename. -#, 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 "このユーザーをフォロー" #. TRANS: Button title to subscribe to a user. -#, fuzzy msgid "Subscribe to this user." -msgstr "このユーザーをフォロー" +msgstr "このユーザーをフォローする。" #. TRANS: Title of personal tag cloud section. msgid "People Tagcloud as self-tagged" @@ -9693,33 +9238,32 @@ 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 "なし" #. TRANS: Server exception displayed if a theme name was invalid. -#, fuzzy msgid "Invalid theme name." -msgstr "不正なサイズ。" +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 "" +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 "アバターの更新に失敗しました。" +msgstr "テーマの保存ができません。" #. TRANS: Server exception thrown when an uploaded theme has an incorrect structure. 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. @@ -9731,7 +9275,7 @@ msgstr[0] "" #. TRANS: Server exception thrown when an uploaded theme is incomplete. msgid "Invalid theme archive: Missing file css/display.css" -msgstr "" +msgstr "無効なテーマのアーカイブ: css/display.css ファイルが見つからない" #. TRANS: Server exception thrown when an uploaded theme has an incorrect file or folder name. msgid "" @@ -9751,10 +9295,9 @@ msgstr "" #. TRANS: Server exception thrown when an uploaded compressed theme cannot be opened. msgid "Error opening theme archive." -msgstr "ブロックの削除エラー" +msgstr "テーマアーカイブを開くときにエラー" #. TRANS: Header for Notices section. -#, fuzzy msgctxt "HEADER" msgid "Notices" msgstr "つぶやき" @@ -9769,20 +9312,19 @@ msgstr[0] "" #. TRANS: Reference to the logged in user in favourite list. msgctxt "FAVELIST" msgid "You" -msgstr "" +msgstr "あなた" #. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". #. 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$d" +msgstr "%1$s と %2$s" #. TRANS: List message for notice favoured by logged in user. -#, fuzzy msgctxt "FAVELIST" msgid "You like this." -msgstr "人気のつぶやき" +msgstr "あなたはこれが好きです。" #. TRANS: List message for when more than 4 people like something. #. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. @@ -9801,29 +9343,27 @@ msgid_plural "%%s like this." msgstr[0] "" #. TRANS: List message for notice repeated by logged in user. -#, fuzzy msgctxt "REPEATLIST" msgid "You have repeated this notice." -msgstr "すでにそのつぶやきを繰り返しています。" +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] "すでにつぶやきを繰り返しています。" +msgstr[0] "1 人がつぶやきをリピートしている。" #. TRANS: Form legend. -#, fuzzy, php-format +#, php-format msgid "Search and list people" -msgstr "サイト検索" +msgstr "検索とリストの人々" #. TRANS: Dropdown option for searching in profiles. msgid "Everything" -msgstr "" +msgstr "すべて" #. TRANS: Dropdown option for searching in profiles. -#, fuzzy msgid "Fullname" msgstr "フルネーム" @@ -9832,27 +9372,25 @@ msgid "URI (Remote users)" msgstr "" #. TRANS: Dropdown field label. -#, fuzzy msgctxt "LABEL" msgid "Search in" msgstr "サイト検索" #. TRANS: Dropdown field title. -#, fuzzy msgid "Choose a field to search." -msgstr "タグを選んで、リストを狭くしてください" +msgstr "検索するフィールドを選択してください。" #. TRANS: Form legend. #. TRANS: %1$s is a nickname, $2$s is a list. -#, fuzzy, php-format +#, php-format msgid "Remove %1$s from list %2$s" -msgstr "%1$s、ページ %2$d" +msgstr "リスト %2$s から %1$s を削除しました。" #. TRANS: Legend on form to add a profile to a list. #. TRANS: %1$s is a nickname, %2$s is a list. -#, fuzzy, php-format +#, php-format msgid "Add %1$s to list %2$s" -msgstr "%1$s、ページ %2$d" +msgstr "リスト %2$s に %1$s を追加しました。" #. TRANS: Title for top posters section. msgid "Top posters" @@ -9861,45 +9399,41 @@ 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. -#, fuzzy msgctxt "LABEL" msgid "To:" -msgstr "To" +msgstr "" #. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private. -#, fuzzy msgid "Private?" -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. -#, fuzzy msgctxt "TITLE" msgid "Unblock" -msgstr "アンブロック" +msgstr "ブロックを解除" #. TRANS: Title for unsandbox form. -#, fuzzy msgctxt "TITLE" msgid "Unsandbox" msgstr "アンサンドボックス" #. TRANS: Description for unsandbox form. msgid "Unsandbox this user" -msgstr "この利用者をアンサンドボックス" +msgstr "このユーザーをアンサンドボックス" #. TRANS: Title for unsilence form. msgid "Unsilence" @@ -9907,30 +9441,28 @@ msgstr "アンサイレンス" #. TRANS: Form description for unsilence form. msgid "Unsilence this user" -msgstr "この利用者をアンサイレンス" +msgstr "このユーザーをアンサイレンス" #. TRANS: Form legend on unsubscribe form. #. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" -msgstr "この利用者からのフォローを解除する" +msgstr "ユーザーからのフォローを解除する" #. TRANS: Button text on unsubscribe form. #. TRANS: Button text for unsubscribing from a list. -#, 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. -#, fuzzy msgid "Not allowed to log in." -msgstr "ログインしていません。" +msgstr "ログインは許可されていません。" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "a few seconds ago" @@ -9944,7 +9476,7 @@ msgstr "約 1 分前" #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" -msgstr[0] "" +msgstr[0] "約 1 分前" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about an hour ago" @@ -9954,7 +9486,7 @@ msgstr "約 1 時間前" #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" -msgstr[0] "" +msgstr[0] "約 1 時間前" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about a day ago" @@ -9964,17 +9496,17 @@ msgstr "約 1 日前" #, php-format msgid "about one day ago" msgid_plural "about %d days ago" -msgstr[0] "" +msgstr[0] "約 1 日前" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about a month ago" -msgstr "約 1 ヵ月前" +msgstr "約 1 ヶ月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. #, php-format msgid "about one month ago" msgid_plural "about %d months ago" -msgstr[0] "" +msgstr[0] "約 1 ヶ月前" #. TRANS: Used in notices to indicate when the notice was made compared to now. msgid "about a year ago" @@ -9982,14 +9514,13 @@ msgstr "約 1 年前" #. TRANS: Web color exception thrown when a hexadecimal color code does not validate. #. TRANS: %s is the provided (invalid) color code. -#, fuzzy, php-format +#, php-format msgid "%s is not a valid color! Use 3 or 6 hex characters." -msgstr "%s は有効な色ではありません! 3か6の16進数を使ってください。" +msgstr "%s は有効な色ではありません! 3 桁か 6 桁の 16 進数を使ってください。" #. TRANS: Exception. -#, fuzzy msgid "Invalid XML." -msgstr "不正なサイズ。" +msgstr "無効な XML。" #. TRANS: Exception. msgid "Invalid XML, missing XRD root." @@ -9998,222 +9529,43 @@ msgstr "" #. TRANS: Commandline script output. %s is the filename that contains a backup for a user. #, php-format msgid "Getting backup from file '%s'." -msgstr "" +msgstr "ファイル '%s' からバックアップを取得する。" #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Invalid avatar URL %s." -msgstr "アバターURL を読み取れません '%s'" +msgstr "無効なアバターの URL %s。" #. TRANS: Server exception. %s is a URI. -#, fuzzy, php-format +#, php-format msgid "Tried to update avatar for unsaved remote profile %s." -msgstr "リモートプロファイル更新エラー" +msgstr "" +"保存されていないリモートプロファイル %s からアバターを最新化しようとしまし" +"た。" #. TRANS: Server exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Unable to fetch avatar from %s." -msgstr "アプリケーションのための取消しアクセスができません: " +msgstr "%s からアバターを取得することができません。" #. TRANS: Exception. %s is a profile URL. -#, fuzzy, php-format +#, php-format msgid "Could not reach profile page %s." -msgstr "プロフィールを保存できませんでした。" +msgstr "プロファイルページ %s に到達できませんでした。" #. TRANS: Exception. %s is a URL. -#, fuzzy, php-format +#, php-format msgid "Could not find a feed URL for profile page %s." -msgstr "ユーザを更新できません" +msgstr "" +"プロファイルページ %s のためのフィード URL を見つけることができませんでした。" #. TRANS: Exception. -#, fuzzy msgid "Not a valid webfinger address." -msgstr "有効なメールアドレスではありません。" +msgstr "有効な webfinger アドレスではありません。" -#, fuzzy, php-format +#, php-format msgid "Could not find a valid profile for \"%s\"." -msgstr "プロフィールを保存できませんでした。" +msgstr "\"%s\" の有効なプロファイルが見つかりませんでした。" -#, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "あなたはそのプロファイルにフォローされていません。" - -#~ msgid "Not expecting this response!" -#~ msgstr "想定外のレスポンスです!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "存在しないように聴かれているユーザ。" - -#~ msgid "You can use the local subscription!" -#~ msgstr "ローカルサブスクリプションを使用可能です!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "このユーザはフォローをブロックされています。" - -#~ msgid "You are not authorized." -#~ msgstr "認証されていません。" - -#~ msgid "Could not convert request token to access token." -#~ msgstr "リクエストトークンをアクセストークンに変換できません" - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "" -#~ "リモートサービスは、不明なバージョンの OMB プロトコルを使用しています。" - -#, fuzzy -#~ msgid "Error updating remote profile." -#~ msgstr "リモートプロファイル更新エラー" - -#~ msgid "Invalid notice content." -#~ msgstr "不正なトークン。" - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "" -#~ "つぶやきライセンス ‘%1$s’ はサイトライセンス ‘%2$s’ と互換性がありません。" - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "フォローするには、[ログイン](%%action.login%%) するか, [登録](%%action." -#~ "register%%) を行って下さい。既に [compatible microblogging site](%%doc." -#~ "openmublog%%) にアカウントをお持ちの場合は、下にプロファイルURLを入力して" -#~ "下さい." - -#~ msgid "Remote subscribe" -#~ msgstr "リモートフォロー" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "リモートユーザーをフォロー" - -#~ msgid "User nickname" -#~ msgstr "ユーザのニックネーム" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "フォローしたいユーザのニックネーム" - -#~ msgid "Profile URL" -#~ msgstr "プロファイルURL" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "不正なプロファイルURL。(形式不備)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "有効なプロファイルURLではありません。(YADIS ドキュメントがないかまたは 不" -#~ "正な XRDS 定義)" - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "" -#~ "それはローカルのプロファイルです! フォローするには、ログインしてください。" - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "リクエストトークンを取得できません" - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "あなたはそのプロファイルにフォローされていません。" - -#, fuzzy -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "あなたはそのプロファイルにフォローされていません。" - -#, fuzzy -#~ msgid "" -#~ "Listenee stream license \"%1$s\" is not compatible with site license \"%2" -#~ "$s\"." -#~ msgstr "" -#~ "リスニーストリームライセンス ‘%1$s’ は、サイトライセンス ‘%2$s’ と互換性が" -#~ "ありません。" - -#~ msgid "Authorize subscription" -#~ msgstr "フォローを承認" - -#, fuzzy -#~ 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 "" -#~ "ユーザのつぶやきをフォローするには詳細を確認して下さい。だれかのつぶやきを" -#~ "フォローするために尋ねない場合は、\"Reject\" をクリックして下さい。" - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "このフォローを拒否" - -#~ msgid "No authorization request!" -#~ msgstr "認証のリクエストがありません。" - -#~ msgid "Subscription authorized" -#~ msgstr "フォローが承認されました" - -#, 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 "" -#~ "フォローは承認されましたが、コールバックURLが通過できませんでした。どう" -#~ "フォローを承認するかに関する詳細のためのサイトの指示をチェックしてくださ" -#~ "い。あなたのフォロートークンは:" - -#~ msgid "Subscription rejected" -#~ msgstr "フォローが拒否" - -#, 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 "" -#~ "フォローは拒絶されましたが、コールバックURLは全く通過されませんでした。 ど" -#~ "うフォローを完全に拒絶するかに関する詳細のためのサイトの指示をチェックして" -#~ "ください。" - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "リスナー URI ‘%s’ はここでは見つかりません。" - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "リスニー URI ‘%s’ が長すぎます。" - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "リスニー URI ‘%s’ はローカルユーザーではありません。" - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "プロファイル URL ‘%s’ はローカルユーザーではありません。" - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "アバター URL ‘%s’ が正しくありません。" - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "アバターURL を読み取れません '%s'" - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "アバター URL '%s' は不正な画像形式。" - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "フォローを保存できません。" - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "サブスクリプションを追加できません" +#~ msgid "Tagged" +#~ msgstr "タグ" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 4acda52699..c284488cce 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Georgian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:12+0000\n" +"Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -30,12 +30,6 @@ msgid "" "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 "" @@ -3915,7 +3909,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" "blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." @@ -3946,7 +3940,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "რს არის %%site.name%%, [მიკრო–ბლოგინგის](http://en.wikipedia.org/wiki/Micro-" "blogging) სერვისი, დაფუძნებული უფასო [StatusNet](http://status.net/) კოდზე." @@ -4265,7 +4259,8 @@ msgid "Beyond the page limit (%s)." msgstr "გვერსიდ საზღვრის მიღმა (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "საჯარო ნაკადის გამოთხოვნა ვერ ხერხდება." #. TRANS: Title for all public timeline pages but the first. @@ -4280,20 +4275,24 @@ msgid "Public timeline" msgstr "საჯარო განახლებების ნაკადი" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" +msgstr "შეტყობინებების RSS მონიშნული %s-თ (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" +msgstr "საჯარო განახლებების ნაკადი, გვერდი %d" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" +msgstr "საჯარო განახლებების ნაკადი, გვერდი %d" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (Atom)" +msgstr "საჯარო განახლებების ნაკადი, გვერდი %d" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4882,7 +4881,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5276,6 +5275,7 @@ msgid "" msgstr "[დარეგისტრირდი](%%action.register%%) და დაპოსტე პირველმა!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "ლიცენზია" @@ -5295,19 +5295,19 @@ msgstr "გამომწერები" msgid "All subscribers" msgstr "ყველა გამომწერი" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, 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: Page title showing tagged notices in one user's timeline. #. 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$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5349,7 +5349,7 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5362,7 +5362,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5370,7 +5370,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5380,7 +5380,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8527,7 +8527,7 @@ msgstr "%s-მა (@%s) გამოაგზავნა შეტყობი #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8976,11 +8976,6 @@ msgstr "რედაქტირება" msgid "Edit %s list by you." msgstr "%s ჯგუფის რედაქტირება" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "სანიშნე" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9955,185 +9950,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "პროფილის შენახვა ვერ მოხერხდა." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "თქვენ არ შეგიძლიათ გამოიწეროთ 0მბ-იანი 0.1 დაშორებული პროფილი ამ " -#~ "მოქმედებით." - -#~ msgid "Not expecting this response!" -#~ msgstr "ეს უკუქმედება არ არის მოსალოდნელი." - -#~ msgid "User being listened to does not exist." -#~ msgstr "მისადევნებელი მომხმარებელი არ არსებობს." - -#~ msgid "You can use the local subscription!" -#~ msgstr "შეგიძლიათ გამოიყენოთ ადგილობრივი გამოწერა!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "ამ მომხმარებელმა აგიკრძალათ მიდევნება." - -#~ msgid "You are not authorized." -#~ msgstr "თქვენ არ ხართ ავტორიზირებული." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "დაშორებული სერვისი OMB პროტოკოლის უცნობ ვერსიას იყენებს." - -#~ msgid "Error updating remote profile." -#~ msgstr "შეცდომა დაშორებული პროფილის განახლებისას." - -#~ msgid "Invalid notice content." -#~ msgstr "შეტყობინების არასწორი შიგთავსი." - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "" -#~ "შეტყობინების ლიცენზია ‘%1$s’ შეუთავსებელია საიტის ლიცენზიასთან ‘%2$s’." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "გამოსაწერად, თქვენ შეგიძლიათ [შეხვიდეთ](%%action.login%%), ან " -#~ "[დაარეგისტრიროთ](%%action.register%%) ახალი ანგარიში. თუ თქვენ უკვე გაქვთ " -#~ "ანგარიში [თავსებად მიკრობლოგინგის საიტზე](%%doc.openmublog%%), მაშინ " -#~ "შეიყვანეთ თქვენი პროფილის URL ქვევით." - -#~ msgid "Remote subscribe" -#~ msgstr "დაშორებული გამოწერა" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "გამოიწერე დაშორებული მომხმარებელი" - -#~ msgid "User nickname" -#~ msgstr "მომხმარებლის მეტსახელი" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "მომხმარებლის მეტსახელი რომელსაც გინდათ რომ მიჰყვეთ" - -#~ msgid "Profile URL" -#~ msgstr "პროფილის URL" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "თქვენი პროფილის URL სხვა თავსებად მიკრობლოგინგის სერვისზე" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "პროფილის არასწორი URL (ცუდი ფორმატი)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "ეს არ არის პროფილის სწორი URL (YADIS დოკუმენტი არ არის, ან არასწორი XRDS–" -#~ "ა განსაზღვრული)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "ეს ადგილობრივი პროფილია! შედით რომ გამოიწეროთ." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "შეტყობინების ჩასმა ვერ მოხერხდა." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "თქვენ არ შეგიძლიათ გამოიწეროთ 0მბ-იანი 0.1 დაშორებული პროფილი ამ " -#~ "მოქმედებით." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "თქვენ არ შეგიძლიათ გამოიწეროთ 0მბ-იანი 0.1 დაშორებული პროფილი ამ " -#~ "მოქმედებით." - -#, fuzzy -#~ msgid "" -#~ "Listenee stream license \"%1$s\" is not compatible with site license \"%2" -#~ "$s\"." -#~ msgstr "" -#~ "გამოსაწერი მომხმარებლის ნაკადის ლიცენზია ‘%1$s’ შეუთავსებელია საიტის " -#~ "ლიცენზიასთან ‘%2$s’." - -#~ msgid "Authorize subscription" -#~ msgstr "გამოწერის ავტორიზაცია" - -#, fuzzy -#~ 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 "" -#~ "გთხოვთ გადახედოთ ამ დეტალებს, რომ დარწმუნდეთ რომ გინდათ ამ მომხმარებლის " -#~ "განახლებების გამოწერა. თუ თქვენ არ გინდოდათ გამოწერა, მაშინ გააჭირეთ " -#~ "ღილაკს \"უარყოფა\"." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "ამ გამოწერის უარყოფა" - -#~ msgid "No authorization request!" -#~ msgstr "ავტორიზაციის მოთხოვნა არ არის!" - -#~ msgid "Subscription authorized" -#~ msgstr "გამოწერა ავტორიზირებულია" - -#, 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 "" -#~ "გამოწერა ავტორიზირებულია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " -#~ "გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის ავტორიზირების დეტალები. თქვენი " -#~ "გამოწერის ტოკენია:" - -#~ msgid "Subscription rejected" -#~ msgstr "გამოწერა უარყოფილია" - -#, 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 "" -#~ "გამოწერა უარყოფილია, მაგრამ უკან დასაბრუნებელი URL არ მოწოდებულა. " -#~ "გადაამოწმეთ საიტის ინსტრუქციებში გამოწერის მთლიანად უარყოფის შესახებ " -#~ "დეტალები." - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "მსმენელის URI ‘%s’ აქ ვერ მოიძებნა." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "წყაროს URL ძალიან გრძელია." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "პროფილის URL ‘%s’ ლოკალური მომხმარებლისთვისაა განკუთვნილი." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "ავატარის URL ‘%s’ არ არის სწორი." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "ვერ ვკითხულობ ავატარის URL ‘%s’." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "ავატარის სურათის ფორმატი არასწორია URL ‘%s’." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "გამოწერის წაშლა ვერ მოხერხდა. 0მბ-იანი ტოკენი" - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "ახალი გამოწერის ჩასმა ვერ მოხერხდა." +#~ msgid "Tagged" +#~ msgstr "სანიშნე" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 39925fab99..408aa72adf 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Korean \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:14+0000\n" +"Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -36,14 +36,6 @@ msgstr "" "제를 전달하려면 %2$s 통해 관리자에게 연락할 수 있습니다. 아니면 몇 분 정도 기" "다렸다가 다시 시도하십시오." -#. 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 "오류가 발생했습니다." @@ -3771,13 +3763,13 @@ msgstr "이동" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "다음은 **%s** 사용자가 만든 리스트입니다. 리스트는 %%%%site.name%%%% 사이트에" "서 사람들을 분류하는 수단입니다. %%%%site.name%%%% 사이트는 자유소프트웨어 " @@ -3806,13 +3798,13 @@ msgstr "%1$s 사용자가 들어 있는 리스트, %2$d 페이지" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "다음은 **%s**님이 들어 있는 리스트입니다. 리스트는 %%%%site.name%%%% 사이트에" "서 사람들을 분류하는 수단입니다. %%%%site.name%%%% 사이트는 자유소프트웨어 " @@ -4125,7 +4117,8 @@ msgid "Beyond the page limit (%s)." msgstr "페이지 제한을 (%s) 넘어갔습니다." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "공개 스트림을 가져올 수 없습니다." #. TRANS: Title for all public timeline pages but the first. @@ -4141,19 +4134,22 @@ msgstr "공개 타임라인" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "공개 스트림 피드 (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "공개 스트림 피드 (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "공개 스트림 피드 (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "공개 스트림 피드 (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4715,8 +4711,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "피드를 복구했습니다. 결과가 나올 때까지 몇 분 기다리십시오." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "백업한 스트림을 Activity Streams 형" @@ -5107,6 +5104,7 @@ msgstr "" "[계정을 등록해](%%action.register%%) 이 타임라인 팔로우를 시작해 보세요!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "리스트 포함" @@ -5125,19 +5123,19 @@ msgstr "구독자" msgid "All subscribers" msgstr "모든 구독자" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, php-format msgid "Notices by %1$s tagged %2$s" msgstr "%2$s 태그가 붙은 %1$s의 글" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format msgid "Notices by %1$s tagged %2$s, page %3$d" msgstr "%2$s 태그가 붙은 %1$s의 글, %3$d 페이지" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format msgid "Notices by %1$s, page %2$d" @@ -5179,7 +5177,7 @@ msgstr "%s의 글 피드 (Atom)" msgid "FOAF for %s" msgstr "%s의 FOAF" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "%1$s의 타임라인이지만, 아직 %1$s님이 글을 작성하지 않았습니다." @@ -5191,7 +5189,7 @@ msgid "" msgstr "" "최근에 재미있는 일이 있었나요? 아직 올린 글이 없는데, 지금 시작해 보세요. :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5201,7 +5199,7 @@ msgstr "" "%1$s님을 찔러 보거나 [글을 써 볼 수 있습니다](%%%%action.newnotice%%%%?" "status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5218,7 +5216,7 @@ msgstr "" "[지금 가입해](%%%%action.register%%%%) to **%s**님 및 다른 많은 사람들의 글" "을 팔로우하세요! ([자세히 보기](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8209,7 +8207,7 @@ 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, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8653,10 +8651,6 @@ msgstr "편집" msgid "Edit %s list by you." msgstr "나의 %s 리스트 편집." -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "태그 붙음" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "리스트 설정 편집." @@ -9572,171 +9566,12 @@ msgstr "올바른 메일 주소가 아닙니다." msgid "Could not find a valid profile for \"%s\"." msgstr "프로필을 저장 할 수 없습니다." -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "이 동작으로 OMB 0.1 원격 프로필을 리스트에 넣을 수 없습니다." - -#~ msgid "Not expecting this response!" -#~ msgstr "예상치 못한 응답입니다!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "살펴 보고 있는 사용자가 없습니다." - -#~ msgid "You can use the local subscription!" -#~ msgstr "로컬 구독을 사용할 수 있습니다." - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "이 사용자는 내 구독을 차단했습니다." - -#~ msgid "You are not authorized." -#~ msgstr "인증하지 않았습니다." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "요청 토큰을 접근 권한 토큰으로 변환할 수 없습니다." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "원격 서비스가 OMB 프로토콜의 알려지지 않은 버전을 사용합니다." - -#~ msgid "Error updating remote profile." -#~ msgstr "원격 프로필 프로필 업데이트 오류." - -#~ msgid "Invalid notice content." -#~ msgstr "글 내용이 잘못되었습니다." - #~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "글의 \"%1$s\" 라이선스가 사이트의 \"%2$s\" 라이선스와 호환되지 않습니다." +#~ "전자메일 설치와 관련된 중요한 오류가 발생했습니다. 로그 파일에서 자세한 내" +#~ "용을 확인하십시오." -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "구독하려면, [로그인](%%action.login%%)하거나, 새로 [가입](%%action." -#~ "register%%)하십시오. 이미 계정이 [호환되는 마이크로블로깅 사이트]((%%doc." -#~ "openmublog%%)에 계정이 있으면, 아래에 프로파일 URL을 입력하십시오." - -#~ msgid "Remote subscribe" -#~ msgstr "원격 구독" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "원격 사용자에 구독" - -#~ msgid "User nickname" -#~ msgstr "사용자 이름" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "팔로우할 사용자의 이름" - -#~ msgid "Profile URL" -#~ msgstr "프로필 URL" - -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "다른 호환 마이크로블로깅 서비스의 자기 프로필 URL." - -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "잘못된 프로필 URL (형식이 잘못됨)." - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "올바른 프로필 URL이 아닙니다. (YADIS 문서가 없거나 잘못된 XRDS가 정의되었" -#~ "습니다.)" - -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "로컬 프로파일입니다! 구독하려면 로그인하십시오." - -#~ msgid "Could not get a request token." -#~ msgstr "요청 토큰을 얻을 수 없습니다." - -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "" -#~ "이 동작으로 OMB 0.1 원격 프로필을 리스트에 넣을 수 (또는 뺼 수) 없습니다." - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "이 동작으로 OMB 0.1 원격 프로필에 구독할 수 없습니다." - -#~ msgid "" -#~ "Listenee stream license \"%1$s\" is not compatible with site license \"%2" -#~ "$s\"." -#~ msgstr "" -#~ "받는 스트림 라이선스 \"%1$s\"은(는) 사이트 라이선스인 \"%2$s\"과(와) 호환" -#~ "되지 않습니다." - -#~ msgid "Authorize subscription" -#~ msgstr "구독 허가" - -#~ 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 "" -#~ "자세한 정보를 보고 이 사용자의 글을 구독할지 확인하십시오. 글을 구독하지 " -#~ "않으려면 \"거절\"을 누르십시오." - -#~ msgid "Reject this subscription." -#~ msgstr "이 구독을 거절." - -#~ msgid "No authorization request!" -#~ msgstr "인증 요청이 없습니다!" - -#~ msgid "Subscription authorized" -#~ msgstr "구독 허락되었습니다" - -#~ 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 "" -#~ "구독이 허락되었지만, 콜백 URL이 통과되지 않았습니다. 사이트 안내를 따라 " -#~ "이 구독을 승인하는 방법을 보십시오. 구독 토큰은 다음과 같습니다 :" - -#~ msgid "Subscription rejected" -#~ msgstr "구독 거절되었습니다" - -#~ 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 "" -#~ "구독이 거절되었지만, 콜백 URL이 통과 되지 않았습니다. 사이트의 안내에 따" -#~ "라 구독을 완전히 거절하는 방법을 보십시오." - -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "리스너 URI \"%s\"이(가) 여기 없습니다." - -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "리스너 URI \"%s\"이(가) 너무 깁니다." - -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "리스너 URI \"%s\"이(가) 로컬 사용자입니다." - -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "프로필 URI \"%s\"이(가) 로컬 사용자용입니다." - -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "아바타 URL \"%s\"이(가) 올바르지 않습니다." - -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "아바타 URL \"%s\"을(를) 읽을 수 없습니다." - -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "아바타 URL \"%s\"의 이미지 종류가 잘못되었습니다." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "구독 OMB 토큰을 삭제할 수 없습니다." - -#~ msgid "Error inserting new profile." -#~ msgstr "새 프로필을 만드는데 오류." - -#~ msgid "Error inserting avatar." -#~ msgstr "아바타를 새로 만드는데 오류." - -#~ msgid "Error inserting remote profile." -#~ msgstr "원격 프로필을 새로 만드는데 오류." - -#~ msgid "Duplicate notice." -#~ msgstr "동일한 글." - -#~ msgid "Could not insert new subscription." -#~ msgstr "새 구독을 새로 만들 수 없습니다." +#~ msgid "Tagged" +#~ msgstr "태그 붙음" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 26aa694bfd..b663314505 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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:16+0000\n" +"Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -35,14 +35,6 @@ msgstr "" "запознаени со проблемот, но ако сакате сепак да проверите, обратете им се на " "%2$s. Во друг случај, почекајте неколку минути, па обидете се повторно." -#. 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 "Се појави грешка." @@ -317,10 +309,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Испрати покани." +msgstr "Испрати покани" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -445,13 +436,12 @@ msgstr "Блокирањето на корисникот не успеа." msgid "Unblock user failed." msgstr "Не успеа одблокирањето на корисникот." -#, fuzzy msgid "no conversation id" -msgstr "Разговор" +msgstr "нема назнака за разговорот" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "Нема разговор со назнака %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -1743,15 +1733,13 @@ msgstr "Адресата \"%s\" е потврдена за Вашата сме #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Канал со забелешки за %s (Activity Streams JSON)" +msgstr "Канал со разговор (Activity Streams JSON)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Канал со забелешки за %s (RSS 2.0)" +msgstr "Канал со разговор (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -3839,13 +3827,13 @@ msgstr "Оди" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Ова се списоците направени од **%s**. Списоците служат за подредување на " "слични лица на %%%%site.name%%%%, служба за [микроблогирање](http://mk." @@ -3873,13 +3861,13 @@ msgstr "Списоци со %1$s, страница %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Ова се списоците за **%s**. Списоците служат за подредување на слични лица " "на %%%%site.name%%%%, служба за [микроблогирање](http://mk.wikipedia.org/" @@ -4199,7 +4187,8 @@ msgid "Beyond the page limit (%s)." msgstr "Надминато е ограничувањето на страницата (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Не можам да го вратам јавниот поток." #. TRANS: Title for all public timeline pages but the first. @@ -4214,19 +4203,23 @@ msgid "Public timeline" msgstr "Јавна историја" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Канал на јавниот поток (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Канал на јавниот поток (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Канал на јавниот поток (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Канал на јавниот поток (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4812,8 +4805,9 @@ msgstr "" "Каналот ќе биде вратен. Почејате некоја минута за да се појават резултатите." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Можете да опдигнете зачувано резервно емитување во форматот \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:17+0000\n" +"Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-01 11:17:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,12 +30,6 @@ msgid "" "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 "ഒരു പിഴവ് ഉണ്ടായിരിക്കുന്നു." @@ -3777,7 +3771,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "സ്വതന്ത്ര സോഫ്റ്റ്‌വേറായ [സ്റ്റാറ്റസ്‌നെറ്റ്](http://status.net/) ഉപകരണം ഉപയോഗിച്ച് [മൈക്രോ-" "ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%" @@ -3809,7 +3803,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "സ്വതന്ത്ര സോഫ്റ്റ്‌വേറായ [സ്റ്റാറ്റസ്‌നെറ്റ്](http://status.net/) ഉപകരണം ഉപയോഗിച്ച് [മൈക്രോ-" "ബ്ലോഗിങ്](http://en.wikipedia.org/wiki/Micro-blogging) സേവനം നൽകുന്ന %%site.name%" @@ -4120,8 +4114,9 @@ msgid "Beyond the page limit (%s)." msgstr "താളിന്റെ പരിധിയ്ക്ക് (%s) പുറത്താണ്." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." -msgstr "" +#, fuzzy +msgid "Could not retrieve public timeline." +msgstr "പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ ശേഖരിക്കാൻ കഴിഞ്ഞില്ല." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4135,20 +4130,23 @@ msgid "Public timeline" msgstr "സാർവ്വജനിക സമയരേഖ" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" +msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" +msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" -msgstr "" +#, fuzzy +msgid "Public Timeline Feed (Atom)" +msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4701,7 +4699,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5088,6 +5086,7 @@ msgstr "" "ചെയ്തുകൂട!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "അനുമതി" @@ -5108,19 +5107,19 @@ msgstr "വരിക്കാർ" msgid "All subscribers" msgstr "എല്ലാ വരിക്കാരും" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, 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: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, php-format 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: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5162,7 +5161,7 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "" @@ -5175,7 +5174,7 @@ msgstr "" "താത്പര്യമുള്ളതെന്തോ ഈയിടെ കണ്ടെന്നു തോന്നുന്നു? താങ്കളിതുവരെയൊന്നും പ്രസിദ്ധീകരിച്ചില്ലല്ലോ, " "ഇപ്പോഴാണെന്നു തോന്നുന്നു നല്ല സമയം :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5183,7 +5182,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5198,7 +5197,7 @@ msgstr "" "പേരുടേയും അറിയിപ്പുകൾ പിന്തുടരാൻ [ഇപ്പോൾ തന്നെ ചേരുക](%%action.register%%)! (കൂടുതൽ " "അറിയുക](%%doc.help%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8180,7 +8179,7 @@ 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, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8623,11 +8622,6 @@ msgstr "തിരുത്തുക" msgid "Edit %s list by you." msgstr "%s എന്ന സംഘത്തിൽ മാറ്റം വരുത്തുക" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "റ്റാഗ്" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9587,79 +9581,6 @@ msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല msgid "Could not find a valid profile for \"%s\"." msgstr "ലക്ഷ്യമിട്ട ഉപയോക്താവിനെ കണ്ടെത്താനായില്ല." -#~ msgid "Not expecting this response!" -#~ msgstr "ഈ പ്രതികരണമല്ല പ്രതീക്ഷിച്ചത്!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "വരിക്കാരനാകുന്നതിൽ നിന്നും ആ ഉപയോക്താവ് താങ്കളെ തടഞ്ഞിരിക്കുന്നു." - -#~ msgid "You are not authorized." -#~ msgstr "താങ്കൾക്ക് അംഗീകാരം ലഭിച്ചിട്ടില്ല." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "അഭ്യർത്ഥനാ ചീട്ടിനെ അഭിഗമ്യതാ ചീട്ടാക്കാൻ കഴിയില്ല." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "വിദൂര സേവനം അപരിചിതമായ ഒ.എം.ബി. പ്രോട്ടോകോൾ ഉപയോഗിക്കുന്നു." - -#~ msgid "Invalid notice content." -#~ msgstr "അറിയിപ്പിന്റെ ഉള്ളടക്കം അസാധുവാണ്." - #, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "" -#~ "അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി " -#~ "ചേർന്നു പോകുന്നില്ല." - -#~ msgid "User nickname" -#~ msgstr "ഉപയോക്തൃ വിളിപ്പേര്" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "താങ്കൾക്ക് പിന്തുടരേണ്ട ഉപയോക്താവിന്റെ വിളിപ്പേര്." - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "പ്രമാണത്തിന്റെ പേര് അസാധുവാണ്." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "വരിക്കാരനാകുന്നതിൽ നിന്നും ആ ഉപയോക്താവ് താങ്കളെ തടഞ്ഞിരിക്കുന്നു." - -#~ msgid "Could not get a request token." -#~ msgstr "അഭ്യർത്ഥനാ ചീട്ട് ലഭ്യമാക്കാനായില്ല." - -#, fuzzy -#~ msgid "" -#~ "Listenee stream license \"%1$s\" is not compatible with site license \"%2" -#~ "$s\"." -#~ msgstr "" -#~ "അറിയിപ്പിന്റെ ഉപയോഗാനുമതിയായ് ‘%1$s’ സൈറ്റിന്റെ ഉപയോഗാനുമതിയായ ‘%2$s’ എന്നതുമായി " -#~ "ചേർന്നു പോകുന്നില്ല." - -#~ msgid "Authorize subscription" -#~ msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കുക" - -#~ msgid "Reject this subscription." -#~ msgstr "ഈ വരിക്കാരനാകൽ നിരസിക്കുക." - -#~ msgid "Subscription authorized" -#~ msgstr "വരിക്കാരനാകൽ അംഗീകരിക്കപ്പെട്ടു" - -#~ msgid "Subscription rejected" -#~ msgstr "വരിക്കാരനാകൽ നിരസിക്കപ്പെട്ടു" - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. വളരെ വലുതാണ്." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "സ്രോതസ്സ് യൂ.ആർ.എൽ. അസാധുവാണ്." - -#~ msgid "Duplicate notice." -#~ msgstr "അറിയിപ്പിന്റെ പകർപ്പ്." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "സന്ദേശം ഉൾപ്പെടുത്താൻ കഴിഞ്ഞില്ല." +#~ msgid "Tagged" +#~ msgstr "റ്റാഗ്" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index e2c4541ba0..f9604db6c1 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:21+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.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -34,14 +34,6 @@ msgid "" "again." msgstr "" -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"En viktig feil oppstod, sannsynligvis relatert til e-postoppsettet. Sjekk " -"loggfilene for mer informasjon." - #. TRANS: Error message. msgid "An error occurred." msgstr "En feil oppstod." @@ -3872,7 +3864,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** er en brukergruppe på %%%%site.name%%%%, en [mikrobloggingstjeneste]" "(http://no.wikipedia.org/wiki/Mikroblogg) basert på det frie " @@ -3905,7 +3897,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** er en brukergruppe på %%%%site.name%%%%, en [mikrobloggingstjeneste]" "(http://no.wikipedia.org/wiki/Mikroblogg) basert på det frie " @@ -4227,7 +4219,8 @@ msgid "Beyond the page limit (%s)." msgstr "Over sidegrensen (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Kunne ikke hente offentlig strøm." #. TRANS: Title for all public timeline pages but the first. @@ -4243,19 +4236,22 @@ msgstr "Offentlig tidslinje" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Offentlig strømmating (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Offentlig strømmating (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Offentlig strømmating (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Offentlig strømmating (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4846,7 +4842,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5251,6 +5247,7 @@ msgstr "" "til å poste en!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Lisens" @@ -5270,19 +5267,19 @@ msgstr "Abonnenter" msgid "All subscribers" msgstr "Alle abonnenter" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "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: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5324,7 +5321,7 @@ msgstr "Notismating for %s (Atom)" msgid "FOAF for %s" msgstr "FOAF for %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Dette er tidslinjen for %1$s men %2$s har ikke postet noe ennå." @@ -5337,7 +5334,7 @@ msgstr "" "Sett noe interessant nylig? Du har ikke postet noen notiser ennå, så hvorfor " "ikke begynne nå? :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5347,7 +5344,7 @@ msgstr "" "Vær den første til å [poste om dette emnet](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5361,7 +5358,7 @@ msgstr "" "[StatusNet](http://status.net/). [Bli med nå](%%%%action.register%%%%) for å " "følge **%s** og mange flere sine notiser. ([Les mer](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8497,7 +8494,7 @@ msgstr "%s (@%s) sendte en notis for din oppmerksomhet" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -8973,11 +8970,6 @@ msgstr "Rediger" msgid "Edit %s list by you." msgstr "Rediger %s gruppe" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Tagger" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9968,141 +9960,13 @@ msgstr "Ugyldig e-postadresse." msgid "Could not find a valid profile for \"%s\"." msgstr "Kunne ikke lagre profil." -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "Du kan ikke liste en OMB 0.1-fjernprofil med denne handlingen." - -#~ msgid "Not expecting this response!" -#~ msgstr "Forventet ikke denne responsen!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "Brukeren som lyttes til finnes ikke." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Du kan bruke det lokale abonnementet!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Brukeren har blokkert deg fra å abonnere." - -#~ msgid "You are not authorized." -#~ msgstr "Du er ikke autorisert." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Fjerntjeneste bruker ukjent versjon av OMB-protokollen." - -#~ msgid "Error updating remote profile." -#~ msgstr "Feil ved oppdatering av fjernprofil." - -#~ msgid "Invalid notice content." -#~ msgstr "Ugyldig notisinnhold." - -#, fuzzy #~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "Notislisensen ‘%1$s’ er ikke kompatibel med nettstedslisensen ‘%2$s’." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "For å abonnere kan du [logge inn](%%action.login%%) eller [registrere](%%" -#~ "action.register%%) en ny konto. Om du allerede har en konto på et " -#~ "[kompatibelt mikrobloggingsnettsted](%%doc.openmublog%%), skriv inn " -#~ "profilnettadressen din nedenfor." - -#~ msgid "Remote subscribe" -#~ msgstr "Fjernabonner" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Abonner på en fjernbruker" - -#~ msgid "User nickname" -#~ msgstr "Brukerens kallenavn" +#~ "En viktig feil oppstod, sannsynligvis relatert til e-postoppsettet. Sjekk " +#~ "loggfilene for mer informasjon." #, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Kallenavn på brukeren du vil følge" - -#~ msgid "Profile URL" -#~ msgstr "Profilnettadresse" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "" -#~ "Nettadresse til profilen din på en annen kompatibel mikrobloggingstjeneste" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "Ugyldig profilnettadresse (dårlig format)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "Ikke en gyldig profilnettadresse (inget YADIS-dokument eller ugyldig XRDS " -#~ "definert)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Det er en lokal profil! Logg inn for å abonnere." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Kunne ikke sette inn melding." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "Du kan ikke tildele brukerroller på dette nettstedet." - -#, 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 "Authorize subscription" -#~ msgstr "Autoriser abonnementet" - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Avvis dette abonnementet" - -#, fuzzy -#~ msgid "Subscription authorized" -#~ msgstr "Abonnement" - -#, fuzzy -#~ msgid "Subscription rejected" -#~ msgstr "Abonnement" - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Kilde-URL er for lang." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "Profil-URL ‘%s’ er for en lokal bruker." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "Profil-URL ‘%s’ er for en lokal bruker." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "Avatar-URL ‘%s’ er ikke gyldig." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Kan ikke lese avatar-URL ‘%s’" - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Feil bildetype for avatar-URL ‘%s’." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Kunne ikke slette favoritt." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Kunne ikke sette inn bekreftelseskode." +#~ msgid "Tagged" +#~ msgstr "Tagger" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index c9aeb87940..ff5fd030c6 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:19+0000\n" +"Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -38,14 +38,6 @@ msgstr "" "probleem, maar u kunt contact met ze opnemen via %2$s. U kunt ook een paar " "minuten wachten en het dan nog een keer proberen." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Er is een grote fout opgetreden. Waarschijnlijk is deze gerelateerd aan de " -"instellingen voor e-mail. Controleer de logboeken voor meer gegevens." - #. TRANS: Error message. msgid "An error occurred." msgstr "Er is een fout opgetreden." @@ -258,9 +250,9 @@ msgstr "Startpaginatijdlijn van %s" #. TRANS: %s is user nickname. #. TRANS: Feed title. #. TRANS: %s is tagger's nickname. -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Activity Streams JSON)" -msgstr "Feed voor vrienden van %s (Atom)" +msgstr "Feed voor vrienden van %s (JSON-activiteitenstreams)" #. TRANS: %s is user nickname. #, php-format @@ -324,10 +316,9 @@ msgstr "" #. TRANS: Button text for inviting more users to the StatusNet instance. #. TRANS: Less business/enterprise-oriented language for public sites. -#, fuzzy msgctxt "BUTTON" msgid "Send invite" -msgstr "Uitnodigingen verzenden." +msgstr "Uitnodiging verzenden" #. TRANS: Message is used as link title. %s is a user nickname. #. TRANS: Title of API timeline for a user and friends. @@ -452,13 +443,12 @@ msgstr "Het blokkeren van de gebruiker is mislukt." msgid "Unblock user failed." msgstr "Het deblokkeren van de gebruiker is mislukt." -#, fuzzy msgid "no conversation id" -msgstr "Dialoog" +msgstr "geen gespreksnummer" #, php-format msgid "No conversation with id %d" -msgstr "" +msgstr "Geen gesprek met nummer %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. #. TRANS: Title for page with a conversion (multiple notices in context). @@ -1765,15 +1755,13 @@ msgstr "Het adres \"%s\" is voor uw gebruiker bevestigd." #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (Activity Streams JSON)" -msgstr "Mededelingenfeed voor %s (Atom)" +msgstr "Gespreksfeed (JSON-activiteitenstreams)" #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. -#, fuzzy msgid "Conversation feed (RSS 2.0)" -msgstr "Mededelingenfeed voor %s (RSS 2.0)" +msgstr "Gespreksfeed (RSS 2.0)" #. TRANS: Title for conversation page. #. TRANS: Title for page that shows a notice. @@ -3874,13 +3862,13 @@ msgstr "OK" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Dit zijn de lijsten die zijn gemaakt door **%s**. Via lijsten kunt u " "gelijksoortige mensen ordenen op %%%%site.name%%%%, a [microblogdienst]" @@ -3908,13 +3896,13 @@ msgstr "Lijsten waar %1$s in is opgenomen, pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Dit zijn lijsten van **%s**. U kunt lijsten gebruiken om soortgelijke mensen " "te ordenen op %%%%site.name%%%%, een [microblogdienst](http://en.wikipedia." @@ -4232,7 +4220,8 @@ msgid "Beyond the page limit (%s)." msgstr "Meer dan de paginalimiet (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Het was niet mogelijk de publieke stream op te halen." #. TRANS: Title for all public timeline pages but the first. @@ -4248,19 +4237,22 @@ msgstr "Openbare tijdlijn" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" -msgstr "Publieke streamfeed (Atom)" +msgid "Public Timeline Feed (Activity Streams JSON)" +msgstr "Publieke streamfeed (JSON-activiteitenstreams)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Publieke streamfeed (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Publieke streamfeed (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Publieke streamfeed (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4723,9 +4715,9 @@ msgstr "Antwoorden aan %1$s, pagina %2$d" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. -#, fuzzy, php-format +#, php-format msgid "Replies feed for %s (Activity Streams JSON)" -msgstr "Antwoordenfeed voor %s (Atom)" +msgstr "!Antwoordenfeed voor %s (JSON-activiteitenstreams)" #. TRANS: Link for feed with replies for a user. #. TRANS: %s is a user nickname. @@ -4849,8 +4841,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "De feed wordt teruggeplaatst. Een paar minuten geduld, alstublieft." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "U kunt een back-up van een tijdlijn uploaden in het formaat \n" -"Language-Team: Polish \n" +"Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "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.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -35,12 +35,6 @@ msgid "" "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 "Wystąpił błąd." @@ -3906,7 +3900,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " "[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " @@ -3940,7 +3934,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** jest grupą użytkowników na %%%%site.name%%%%, usłudze " "[mikroblogowania](http://pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym " @@ -4264,7 +4258,8 @@ msgid "Beyond the page limit (%s)." msgstr "Poza ograniczeniem strony (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Nie można pobrać publicznego strumienia." #. TRANS: Title for all public timeline pages but the first. @@ -4280,19 +4275,22 @@ msgstr "Publiczna oś czasu" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Kanał publicznego strumienia (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Kanał publicznego strumienia (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Kanał publicznego strumienia (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Kanał publicznego strumienia (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4883,8 +4881,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Kanał zostanie przywrócony. Proszę poczekać kilka minut na wyniki." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Można wysłać kopię zapasową strumienia w formacie \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:24+0000\n" +"Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -40,12 +40,6 @@ msgid "" "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 "Ocorreu um erro." @@ -3891,7 +3885,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de " "[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado no " @@ -3924,7 +3918,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de " "[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado no " @@ -4247,7 +4241,8 @@ msgid "Beyond the page limit (%s)." msgstr "Além do limite de página (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Não foi possível importar as notas públicas." #. TRANS: Title for all public timeline pages but the first. @@ -4263,19 +4258,22 @@ msgstr "Notas públicas" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Fonte de Notas Públicas (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Fonte de Notas Públicas (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Fonte de Notas Públicas (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Fonte de Notas Públicas (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4875,7 +4873,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5282,6 +5280,7 @@ msgstr "" "publicar uma!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "Licença" @@ -5302,19 +5301,19 @@ msgstr "Subscritores" msgid "All subscribers" msgstr "Todos os subscritores" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, 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: Page title showing tagged notices in one user's timeline. #. 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 "Notas categorizadas com %1$s, página %2$d" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5356,7 +5355,7 @@ msgstr "Fonte de notas para %s (Atom)" msgid "FOAF for %s" msgstr "FOAF para %s" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, fuzzy, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "Estas são as notas de %1$s, mas %2$s ainda não publicou nenhuma." @@ -5369,7 +5368,7 @@ msgstr "" "Viu algo de interessante ultimamente? Como ainda não publicou nenhuma nota, " "esta seria uma óptima altura para começar :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5379,7 +5378,7 @@ msgstr "" "Pode tentar dar um toque em %1$s ou [endereçar-lhe uma nota](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5394,7 +5393,7 @@ msgstr "" "action.register%%%%) para seguir as notas de **%s** e de muitos mais! " "([Saber mais](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8556,7 +8555,7 @@ msgstr "%s (@%s) enviou uma nota à sua atenção" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -9034,11 +9033,6 @@ msgstr "Editar" msgid "Edit %s list by you." msgstr "Editar grupo %s" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "Categoria" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -10025,194 +10019,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "Não foi possível gravar o perfil." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "Não pode subscrever um perfil remoto OMB 0.1 com esta operação." - -#~ msgid "Not expecting this response!" -#~ msgstr "Não esperava esta resposta!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "O utilizador que está a escutar não existe." - -#~ msgid "You can use the local subscription!" -#~ msgstr "Pode usar a subscrição local!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "Esse utilizador bloqueou-o, impedindo que o subscreva." - -#~ msgid "You are not authorized." -#~ msgstr "Não tem autorização." - -#~ msgid "Could not convert request token to access token." -#~ msgstr "Não foi possível converter a chave de pedido numa chave de acesso." - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "Serviço remoto usa uma versão desconhecida do protocolo OMB." - -#~ msgid "Error updating remote profile." -#~ msgstr "Erro ao actualizar o perfil remoto." - -#~ msgid "Invalid notice content." -#~ msgstr "Conteúdo da nota é inválido." - -#, fuzzy -#~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "" -#~ "A licença ‘%1$s’ da nota não é compatível com a licença ‘%2$s’ do site." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "Para subscrever, pode [iniciar sessão](%%action.login%%), ou [registar](%%" -#~ "action.register%%) uma conta nova. Se já tem conta num [serviço de " -#~ "microblogues compatível](%%doc.openmublog%%), introduza abaixo a URL do " -#~ "seu perfil lá." - -#~ msgid "Remote subscribe" -#~ msgstr "Subscrição remota" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "Subscrever um utilizador remoto" - -#~ msgid "User nickname" -#~ msgstr "Nome do utilizador" - -#, fuzzy -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "Nome do utilizador que pretende seguir" - -#~ msgid "Profile URL" -#~ msgstr "URL do perfil" - -#, fuzzy -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "URL do seu perfil noutro serviço de microblogues compatível" - -#, fuzzy -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "URL de perfil inválido (formato incorrecto)" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "" -#~ "URL do perfil não é válida (não há um documento Yadis, ou foi definido um " -#~ "XRDS inválido)." - -#, fuzzy -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "Esse perfil é local! Inicie uma sessão para o subscrever." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "Não foi possível obter uma chave de pedido." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "Não pode subscrever um perfil remoto OMB 0.1 com esta operação." - -#~ 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." - -#, fuzzy -#~ 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 "Authorize subscription" -#~ msgstr "Autorizar subscrição" - -#, fuzzy -#~ 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 "" -#~ "Por favor, verifique estes detalhes para se certificar de que deseja " -#~ "subscrever as notas deste utilizador. Se não fez um pedido para " -#~ "subscrever as notas de alguém, simplesmente clique \"Rejeitar\"." - -#, fuzzy -#~ msgid "Reject this subscription." -#~ msgstr "Rejeitar esta subscrição" - -#~ msgid "No authorization request!" -#~ msgstr "Não há pedido de autorização!" - -#~ msgid "Subscription authorized" -#~ msgstr "Subscrição autorizada" - -#, 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 "" -#~ "A subscrição foi autorizada, mas não foi enviada nenhuma URL de retorno. " -#~ "Verifique as instruções do site para saber como autorizar a subscrição. A " -#~ "sua chave de subscrição é:" - -#~ msgid "Subscription rejected" -#~ msgstr "Subscrição rejeitada" - -#, 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 "" -#~ "A subscrição foi rejeitada, mas não foi enviada nenhuma URL de retorno. " -#~ "Verifique as instruções do site para saber como rejeitar completamente a " -#~ "subscrição." - -#, fuzzy -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "A listener URI ‘%s’ não foi encontrada aqui." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "URI do escutado ‘%s’ é demasiado longo." - -#, fuzzy -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "URI do ouvido ‘%s’ é um utilizador local." - -#, fuzzy -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "A URL ‘%s’ do perfil é de um utilizador local." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "A URL ‘%s’ do avatar é inválida." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "Não é possível ler a URL do avatar ‘%s’." - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "Tipo de imagem incorrecto para o avatar da URL ‘%s’." - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "Não foi possível apagar a chave OMB da subscrição." - -#~ msgid "Error inserting new profile." -#~ msgstr "Erro ao inserir perfil novo." - -#~ msgid "Error inserting avatar." -#~ msgstr "Erro ao inserir avatar." - -#~ msgid "Error inserting remote profile." -#~ msgstr "Erro ao inserir perfil remoto." - -#~ msgid "Duplicate notice." -#~ msgstr "Nota duplicada." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "Não foi possível inserir nova subscrição." +#~ msgid "Tagged" +#~ msgstr "Categoria" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 9de9ecdf44..20aff03b72 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -16,18 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:26+0000\n" +"Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -42,14 +41,6 @@ msgstr "" "situação, mas caso queira se certificar disso, você pode contactá-los em %2" "$s. Ou então você pode aguardar alguns minutos e tentar novamente." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Ocorreu um erro grava, provavelmente relacionado à configuração de e-mail. " -"Por favor, verifique os arquivos de log para maiores informações." - #. TRANS: Error message. msgid "An error occurred." msgstr "Ocorreu um erro." @@ -3861,13 +3852,13 @@ msgstr "Ir" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Estas são as listas criadas por **%s**. Listas são uma forma de agrupar " "pessoas similares no %%%%site.name%%%%, um serviço de [microblog](http://pt." @@ -3895,13 +3886,13 @@ msgstr "Listas onde %1$s aparece, pág. %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Estas são as lista de **%s**. Listas são uma forma de agrupar pessoas " "similares no %%%%site.name%%%%, um serviço de [microblog](http://pt." @@ -4219,7 +4210,8 @@ msgid "Beyond the page limit (%s)." msgstr "Além do limite da página (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Não foi possível recuperar o fluxo público." #. TRANS: Title for all public timeline pages but the first. @@ -4235,19 +4227,22 @@ msgstr "Mensagens públicas" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Fonte de mensagens públicas (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Fonte de mensagens públicas (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Fonte de mensagens públicas (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Fonte de mensagens públicas (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4837,8 +4832,9 @@ msgstr "" "resultados." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Você pode enviar um backup de fluxo no formato \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:27+0000\n" +"Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -44,14 +44,6 @@ msgstr "" "вы можете связаться с ними по адресу %2$s, чтобы убедиться в этом. В " "противном случае, подождите несколько минут и попробуйте снова." -#. 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 "Произошла ошибка." @@ -3869,13 +3861,13 @@ msgstr "Перейти" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Здесь представлены списки, созданные **%s**. Списки — это способ " "сгруппировать похожих пользователей на %%%%site.name%%%%, сервисе " @@ -3904,13 +3896,13 @@ msgstr "Списки, в которые входит %1$s, страница %2$d #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Здесь представлены списки **%s**. Списки — это способ сгруппировать похожих " "пользователей на %%%%site.name%%%%, сервисе [микроблогов](http://ru." @@ -4230,7 +4222,8 @@ msgid "Beyond the page limit (%s)." msgstr "Превышен предел страницы (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Не удаётся вернуть публичный поток." #. TRANS: Title for all public timeline pages but the first. @@ -4246,19 +4239,22 @@ msgstr "Общая лента" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Лента публичного потока (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Лента публичного потока (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Лента публичного потока (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Лента публичного потока (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4839,8 +4835,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Лента будет восстановлена. Пожалуйста, подождите несколько минут." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Вы можете загрузить на сайт резервную копию в формате \n" "Language-Team: LANGUAGE \n" @@ -28,32 +28,25 @@ msgid "" 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 +#: index.php:129 msgid "An error occurred." msgstr "" #. TRANS: Error message displayed when there is no StatusNet configuration file. -#: index.php:264 +#: index.php:262 #, 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:295 +#: index.php:293 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:350 actions/recoverpassword.php:232 +#: index.php:348 actions/recoverpassword.php:232 msgid "Unknown action" msgstr "" @@ -963,7 +956,7 @@ msgstr "" #. TRANS: Server error displayed when group aliases could not be added. #. TRANS: Server exception thrown when creating group aliases failed. #: actions/apigroupprofileupdate.php:196 actions/editgroup.php:292 -#: classes/User_group.php:552 +#: classes/User_group.php:557 msgid "Could not create aliases." msgstr "" @@ -3802,7 +3795,7 @@ msgid "New group" msgstr "" #. TRANS: Client exception thrown when a user tries to create a group while banned. -#: actions/newgroup.php:73 classes/User_group.php:485 +#: actions/newgroup.php:73 classes/User_group.php:490 msgid "You are not allowed to create groups on this site." msgstr "" @@ -4601,7 +4594,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists by a user when there are none. @@ -4634,7 +4627,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" #. TRANS: Message displayed on page that displays lists a user was added to when there are none. @@ -4989,7 +4982,7 @@ msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. #: actions/public.php:98 -msgid "Could not retrieve public stream." +msgid "Could not retrieve public timeline." msgstr "" #. TRANS: Title for all public timeline pages but the first. @@ -5007,22 +5000,22 @@ msgstr "" #. TRANS: Link description for public timeline feed. #: actions/public.php:169 -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "" #. TRANS: Link description for public timeline feed. #: actions/public.php:172 -msgid "Public Stream Feed (RSS 1.0)" +msgid "Public Timeline Feed (RSS 1.0)" msgstr "" #. TRANS: Link description for public timeline feed. #: actions/public.php:177 -msgid "Public Stream Feed (RSS 2.0)" +msgid "Public Timeline Feed (RSS 2.0)" msgstr "" #. TRANS: Link description for public timeline feed. #: actions/public.php:182 -msgid "Public Stream Feed (Atom)" +msgid "Public Timeline Feed (Atom)" msgstr "" #. TRANS: Text displayed for public feed when there are no public notices. @@ -5649,7 +5642,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. #: actions/restoreaccount.php:342 msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -6091,7 +6084,8 @@ msgid "" msgstr "" #. TRANS: Header on show list page. -#: actions/showprofiletag.php:302 +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). +#: actions/showprofiletag.php:302 lib/peopletaglist.php:173 msgid "Listed" msgstr "" @@ -6113,21 +6107,21 @@ msgstr "" msgid "All subscribers" msgstr "" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #: actions/showstream.php:70 #, php-format msgid "Notices by %1$s tagged %2$s" msgstr "" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. 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 "Notices by %1$s tagged %2$s, page %3$d" msgstr "" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #: actions/showstream.php:82 #, php-format @@ -6176,7 +6170,7 @@ msgstr "" msgid "FOAF for %s" msgstr "" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #: actions/showstream.php:209 #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." @@ -6189,7 +6183,7 @@ msgid "" "would be a good time to start :)" msgstr "" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #: actions/showstream.php:219 #, php-format @@ -6198,7 +6192,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #: actions/showstream.php:262 #, php-format @@ -6209,7 +6203,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #: actions/showstream.php:269 #, php-format @@ -7276,20 +7270,20 @@ msgid "%1$s marked notice %2$s as a favorite." msgstr "" #. TRANS: Server exception thrown when a URL cannot be processed. -#: classes/File.php:162 +#: classes/File.php:145 #, php-format msgid "Cannot process URL '%s'" msgstr "" #. TRANS: Server exception thrown when... Robin thinks something is impossible! -#: classes/File.php:194 +#: classes/File.php:177 msgid "Robin thinks something is impossible." msgstr "" #. TRANS: Message given if an upload is larger than the configured maximum. #. TRANS: %1$d is the byte limit for uploads, %2$d is the byte count for the uploaded file. #. TRANS: %1$s is used for plural. -#: classes/File.php:210 +#: classes/File.php:193 #, php-format msgid "" "No file may be larger than %1$d byte and the file you sent was %2$d bytes. " @@ -7302,7 +7296,7 @@ msgstr[1] "" #. TRANS: Message given if an upload would exceed user quota. #. TRANS: %d (number) is the user quota in bytes and is used for plural. -#: classes/File.php:223 +#: classes/File.php:206 #, php-format msgid "A file this large would exceed your user quota of %d byte." msgid_plural "A file this large would exceed your user quota of %d bytes." @@ -7311,7 +7305,7 @@ msgstr[1] "" #. TRANS: Message given id an upload would exceed a user's monthly quota. #. TRANS: $d (number) is the monthly user quota in bytes and is used for plural. -#: classes/File.php:235 +#: classes/File.php:218 #, php-format msgid "A file this large would exceed your monthly quota of %d byte." msgid_plural "A file this large would exceed your monthly quota of %d bytes." @@ -7319,7 +7313,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Client exception thrown if a file upload does not have a valid name. -#: classes/File.php:282 classes/File.php:297 +#: classes/File.php:265 classes/File.php:280 msgid "Invalid filename." msgstr "" @@ -7376,12 +7370,12 @@ msgstr "" msgid "Could not create login token for %s" msgstr "" -#: classes/Memcached_DataObject.php:95 +#: classes/Memcached_DataObject.php:128 classes/Memcached_DataObject.php:178 msgid "Cannot instantiate class " msgstr "" #. TRANS: Exception thrown when database name or Data Source Name could not be found. -#: classes/Memcached_DataObject.php:645 +#: classes/Memcached_DataObject.php:708 msgid "No database name or DSN found anywhere." msgstr "" @@ -7408,97 +7402,97 @@ msgid "No such profile (%1$d) for notice (%2$d)." msgstr "" #. TRANS: Server exception. %s are the error details. -#: classes/Notice.php:216 +#: classes/Notice.php:221 #, php-format msgid "Database error inserting hashtag: %s." msgstr "" #. TRANS: Client exception thrown if a notice contains too many characters. -#: classes/Notice.php:299 +#: classes/Notice.php:304 msgid "Problem saving notice. Too long." msgstr "" #. TRANS: Client exception thrown when trying to save a notice for an unknown user. -#: classes/Notice.php:304 +#: classes/Notice.php:309 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:310 +#: classes/Notice.php:315 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:317 +#: classes/Notice.php:322 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:325 +#: classes/Notice.php:330 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:372 +#: classes/Notice.php:377 msgid "Cannot repeat; original notice is missing or deleted." msgstr "" #. TRANS: Client error displayed when trying to repeat an own notice. -#: classes/Notice.php:377 +#: classes/Notice.php:382 msgid "You cannot repeat your own notice." msgstr "" #. TRANS: Client error displayed when trying to repeat a non-public notice. -#: classes/Notice.php:383 +#: classes/Notice.php:388 msgid "Cannot repeat a private notice." msgstr "" #. TRANS: Client error displayed when trying to repeat a notice you cannot access. -#: classes/Notice.php:389 +#: classes/Notice.php:394 msgid "Cannot repeat a notice you cannot read." msgstr "" #. TRANS: Client error displayed when trying to repeat an already repeated notice. -#: classes/Notice.php:394 +#: classes/Notice.php:399 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:406 +#: classes/Notice.php:411 #, 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:495 classes/Notice.php:522 +#: classes/Notice.php:500 classes/Notice.php:527 msgid "Problem saving notice." msgstr "" #. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups(). -#: classes/Notice.php:1103 +#: classes/Notice.php:1079 msgid "Bad type provided to saveKnownGroups." msgstr "" #. TRANS: Server exception thrown when an update for a group inbox fails. -#: classes/Notice.php:1195 +#: classes/Notice.php:1171 msgid "Problem saving group inbox." 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:1840 +#: classes/Notice.php:1801 #, 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:186 classes/User_group.php:247 +#: classes/Profile.php:204 classes/User_group.php:252 #, php-format msgctxt "FANCYNAME" msgid "%1$s (%2$s)" @@ -7506,14 +7500,14 @@ msgstr "" #. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist. #. TRANS: %1$s is the role name, %2$s is the user ID (number). -#: classes/Profile.php:1005 +#: classes/Profile.php:1019 #, 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:1014 +#: classes/Profile.php:1028 #, php-format msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error." msgstr "" @@ -7665,22 +7659,22 @@ msgid "Error saving address confirmation." msgstr "" #. TRANS: Server exception thrown when creating a group failed. -#: classes/User_group.php:534 +#: classes/User_group.php:539 msgid "Could not create group." msgstr "" #. TRANS: Server exception thrown when updating a group URI failed. -#: classes/User_group.php:544 +#: classes/User_group.php:549 msgid "Could not set group URI." msgstr "" #. TRANS: Server exception thrown when setting group membership failed. -#: classes/User_group.php:567 +#: classes/User_group.php:572 msgid "Could not set group membership." msgstr "" #. TRANS: Server exception thrown when saving local group information failed. -#: classes/User_group.php:584 +#: classes/User_group.php:589 msgid "Could not save local group info." msgstr "" @@ -7794,7 +7788,7 @@ 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. -#: lib/action.php:358 lib/threadednoticelist.php:396 +#: lib/action.php:358 lib/threadednoticelist.php:398 msgid "Write a reply..." msgstr "" @@ -8483,7 +8477,7 @@ msgstr[1] "" #. TRANS: Separator for list of tags. #. TRANS: Separator in list of user names like "Jim, Bob, Mary". -#: lib/command.php:481 lib/command.php:534 lib/threadednoticelist.php:456 +#: lib/command.php:481 lib/command.php:534 lib/threadednoticelist.php:458 msgid ", " msgstr "" @@ -9664,7 +9658,7 @@ msgstr "" #. TRANS: Body of @-reply notification e-mail. #. TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename, #. 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: %5$s is the text "The full conversation can be read here:" and 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:755 #, php-format @@ -10166,11 +10160,6 @@ msgstr "" msgid "Edit %s list by you." msgstr "" -#. TRANS: Link description for link to list of users tagged with a tag. -#: lib/peopletaglist.php:173 -msgid "Tagged" -msgstr "" - #. TRANS: Title for link to edit list settings. #: lib/peopletaglist.php:196 msgid "Edit list settings." @@ -10944,7 +10933,7 @@ 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:355 +#: lib/threadednoticelist.php:357 #, php-format msgid "Show reply" msgid_plural "Show all %d replies" @@ -10952,21 +10941,21 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Reference to the logged in user in favourite list. -#: lib/threadednoticelist.php:421 +#: lib/threadednoticelist.php:423 msgctxt "FAVELIST" msgid "You" msgstr "" #. TRANS: For building a list such as "Jim, Bob, Mary and 5 others like this". #. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list. -#: lib/threadednoticelist.php:459 +#: lib/threadednoticelist.php:461 #, php-format msgctxt "FAVELIST" msgid "%1$s and %2$s" msgstr "" #. TRANS: List message for notice favoured by logged in user. -#: lib/threadednoticelist.php:493 +#: lib/threadednoticelist.php:495 msgctxt "FAVELIST" msgid "You like this." msgstr "" @@ -10974,7 +10963,7 @@ msgstr "" #. TRANS: List message for when more than 4 people like something. #. TRANS: %%s is a list of users liking a notice, %d is the number over 4 that like the notice. #. TRANS: Plural is decided on the total number of users liking the notice (count of %%s + %d). -#: lib/threadednoticelist.php:498 +#: lib/threadednoticelist.php:500 #, php-format msgid "%%s and %d others like this." msgid_plural "%%s and %d others like this." @@ -10984,7 +10973,7 @@ msgstr[1] "" #. TRANS: List message for favoured notices. #. TRANS: %%s is a list of users liking a notice. #. TRANS: Plural is based on the number of of users that have favoured a notice. -#: lib/threadednoticelist.php:506 +#: lib/threadednoticelist.php:508 #, php-format msgid "%%s likes this." msgid_plural "%%s like this." @@ -10992,14 +10981,14 @@ msgstr[0] "" msgstr[1] "" #. TRANS: List message for notice repeated by logged in user. -#: lib/threadednoticelist.php:559 +#: lib/threadednoticelist.php:561 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. -#: lib/threadednoticelist.php:563 +#: lib/threadednoticelist.php:565 #, php-format msgid "One person has repeated this notice." msgid_plural "%d people have repeated this notice." @@ -11140,17 +11129,17 @@ msgid "Not allowed to log in." msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1343 +#: lib/util.php:1346 msgid "a few seconds ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1346 +#: lib/util.php:1349 msgid "about a minute ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1350 +#: lib/util.php:1353 #, php-format msgid "about one minute ago" msgid_plural "about %d minutes ago" @@ -11158,12 +11147,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1353 +#: lib/util.php:1356 msgid "about an hour ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1357 +#: lib/util.php:1360 #, php-format msgid "about one hour ago" msgid_plural "about %d hours ago" @@ -11171,12 +11160,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1360 +#: lib/util.php:1363 msgid "about a day ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1364 +#: lib/util.php:1367 #, php-format msgid "about one day ago" msgid_plural "about %d days ago" @@ -11184,12 +11173,12 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1367 +#: lib/util.php:1370 msgid "about a month ago" msgstr "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1371 +#: lib/util.php:1374 #, php-format msgid "about one month ago" msgid_plural "about %d months ago" @@ -11197,7 +11186,7 @@ msgstr[0] "" msgstr[1] "" #. TRANS: Used in notices to indicate when the notice was made compared to now. -#: lib/util.php:1374 +#: lib/util.php:1377 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index a23abf6ae3..06975f165c 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:29+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -40,14 +40,6 @@ msgstr "" "men du kan kontakta dem på %2$s för försäkra dig. Annars vänta ett par " "minuter och försök igen." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Ett viktigt fel uppstod, förmodligen relaterat till e-postinställningar. " -"Kontrollera loggfiler för mer info." - #. TRANS: Error message. msgid "An error occurred." msgstr "Ett fel uppstod." @@ -3822,13 +3814,13 @@ msgstr "Gå" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Dessa är listor som skapats av **%s**. Listor är hur du sorterar liknande " "personer på %%site.name%%, en [mikroblogg](http://sv.wikipedia.org/wiki/" @@ -3856,13 +3848,13 @@ msgstr "Listor med %1$s, sida %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Dessa är listor för **%s**. Listor är hur du sorterar liknande personer på %%" "site.name%%, en [mikroblogg](http://sv.wikipedia.org/wiki/Mikroblogg)-tjänst " @@ -4180,7 +4172,8 @@ msgid "Beyond the page limit (%s)." msgstr "Bortom sidbegränsningen (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Kunde inte hämta publik ström." #. TRANS: Title for all public timeline pages but the first. @@ -4196,19 +4189,22 @@ msgstr "Publik tidslinje" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Publikt flöde av ström (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Publikt flöde av ström (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Publikt flöde av ström (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Publikt flöde av ström (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4787,8 +4783,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Flöde kommer att återställas. Vänta några minuter för resultat." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Du kan ladda upp ett säkerhetskopierat flöde i \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:30+0000\n" +"Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -31,12 +31,6 @@ msgid "" "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 "ఒక పొరపాటు దొర్లింది." @@ -3819,7 +3813,7 @@ msgid "" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** అనేది [స్టేటస్‌నెట్](http://status.net/) అనే స్వేచ్ఛా ఉపకరణ అధారిత [సూక్ష్మ-బ్లాగింగు]" "(http://en.wikipedia.org/wiki/Micro-blogging) సేవ అయిన %%%%site.name%%%%లో ఒక " @@ -3854,7 +3848,7 @@ msgid "" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "**%s** అనేది [స్టేటస్‌నెట్](http://status.net/) అనే స్వేచ్ఛా ఉపకరణ అధారిత [సూక్ష్మ-బ్లాగింగు]" "(http://en.wikipedia.org/wiki/Micro-blogging) సేవ అయిన %%%%site.name%%%%లో ఒక " @@ -4169,7 +4163,7 @@ msgstr "" #. TRANS: Server error displayed when a public timeline cannot be retrieved. #, fuzzy -msgid "Could not retrieve public stream." +msgid "Could not retrieve public timeline." msgstr "మారుపేర్లని సృష్టించలేకపోయాం." #. TRANS: Title for all public timeline pages but the first. @@ -4185,19 +4179,22 @@ msgstr "ప్రజా కాలరేఖ" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "ప్రజా వాహిని ఫీడు (ఆటమ్)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "ప్రజా వాహిని ఫీడు (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "ప్రజా వాహిని ఫీడు (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "ప్రజా వాహిని ఫీడు (ఆటమ్)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4764,7 +4761,7 @@ msgstr "" #. TRANS: Form instructions for feed restore. msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" @@ -5158,6 +5155,7 @@ msgid "" msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). #, fuzzy msgid "Listed" msgstr "లైసెన్సు" @@ -5177,19 +5175,19 @@ msgstr "చందాదార్లు" msgid "All subscribers" msgstr "అందరు చందాదార్లు" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, fuzzy, php-format 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: Page title showing tagged notices in one user's timeline. #. 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 "%2$sలో %1$s అనే ట్యాగుతో ఉన్న నోటీసులు!" -#. TRANS: Extended page title showing tagged notices in one user's stream. +#. TRANS: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, fuzzy, php-format msgid "Notices by %1$s, page %2$d" @@ -5231,7 +5229,7 @@ msgstr "%s కొరకు స్పందనల ఫీడు (ఆటమ్)" msgid "FOAF for %s" msgstr "%s గుంపు" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "ఇది %1$s యొక్క కాలరేఖ కానీ %1$s ఇంకా ఏమీ రాయలేదు." @@ -5243,7 +5241,7 @@ msgid "" msgstr "" "ఈమధ్యే ఏదైనా ఆసక్తికరమైనది చూసారా? మీరు ఇంకా నోటీసులేమీ వ్రాయలేదు, మొదలుపెట్టడానికి ఇదే మంచి సమయం :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, fuzzy, php-format msgid "" @@ -5252,7 +5250,7 @@ msgid "" msgstr "" "[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, fuzzy, php-format msgid "" @@ -5268,7 +5266,7 @@ msgstr "" "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" "doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, fuzzy, php-format msgid "" @@ -8302,7 +8300,7 @@ 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, #. 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: %5$s is the text "The full conversation can be read here:" and 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, #, php-format msgid "" @@ -8755,11 +8753,6 @@ msgstr "మార్చు" msgid "Edit %s list by you." msgstr "%s గుంపుని మార్చు" -#. TRANS: Link description for link to list of users tagged with a tag. -#, fuzzy -msgid "Tagged" -msgstr "ట్యాగు" - #. TRANS: Title for link to edit list settings. #, fuzzy msgid "Edit list settings." @@ -9694,94 +9687,5 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." #, fuzzy -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." - -#~ msgid "You can use the local subscription!" -#~ msgstr "మీరు స్థానిక చందాని ఉపయోగించవచ్చు!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "ఆ వాడుకరి మిమ్మల్ని చందాచేరకుండా నిరోధించారు." - -#~ msgid "You are not authorized." -#~ msgstr "మీకు అధీకరణ లేదు." - -#, fuzzy -#~ msgid "Error updating remote profile." -#~ msgstr "దూరపు ప్రొపైలుని తాజాకరించటంలో పొరపాటు" - -#~ msgid "Invalid notice content." -#~ msgstr "తప్పుడు దస్త్రపుపేరు.." - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." -#~ msgstr "" -#~ "చందా చేరడానికి, మీరు [ప్రవేశించవచ్చు](%%action.login%%), లేదా కొత్త ఖాతాని [నమోదుచేసుకోవచ్చు](%" -#~ "%action.register%%). ఒకవేళ మీకు ఇప్పటికే ఏదైనా [పొసగే మైక్రోబ్లాగింగు సైటులో](%%doc." -#~ "openmublog%%) ఖాతా ఉంటే, మీ ప్రొఫైలు చిరునామాని క్రింద ఇవ్వండి." - -#~ msgid "Remote subscribe" -#~ msgstr "సుదూర చందా" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "ఈ వాడుకరికి చందాచేరు" - -#~ msgid "User nickname" -#~ msgstr "వాడుకరి పేరు" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "మీరు అనుసరించాలనుకుంటున్న వాడుకరి యొక్క ముద్దుపేరు." - -#~ msgid "Profile URL" -#~ msgstr "ప్రొఫైలు URL" - -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "ప్రొపైల్ URL తప్పు (చెల్లని ఫార్మాట్)." - -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "అది స్థానిక ప్రొఫైలు! చందాచేరడానికి ప్రవేశించండి." - -#, fuzzy -#~ msgid "Could not get a request token." -#~ msgstr "ట్యాగులని భద్రపరచలేకపోయాం." - -#, fuzzy -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "ఈ సైటులో మీరు వాడుకరలకి పాత్రలను ఇవ్వలేరు." - -#~ msgid "Authorize subscription" -#~ msgstr "చందాని అధీకరించండి" - -#~ msgid "Reject this subscription." -#~ msgstr "ఈ చందాని తిరస్కరించండి." - -#~ msgid "No authorization request!" -#~ msgstr "అధీకరణ అభ్యర్థన లేదు!" - -#~ msgid "Subscription authorized" -#~ msgstr "చందాని అధీకరించారు" - -#~ msgid "Subscription rejected" -#~ msgstr "చందాని తిరస్కరించారు." - -#, fuzzy -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "హోమ్ పేజీ URL సరైనది కాదు." - -#, fuzzy -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "'%s' అనే అవతారపు URL తప్పు" - -#, fuzzy -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "కొత్త చందాని చేర్చలేకపోయాం." - -#, fuzzy -#~ msgid "Could not insert new subscription." -#~ msgstr "కొత్త చందాని చేర్చలేకపోయాం." +#~ msgid "Tagged" +#~ msgstr "ట్యాగు" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index ba30b6c3be..f672860136 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-07-01 11:17:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -36,15 +36,6 @@ msgstr "" "kanila sa %2$s upang makatiyak. Kung hindi, maghintay ng ilang mga minuto " "at subukan uli." -#. TRANS: Error message. -msgid "" -"An important error occured, probably related to email setup. Check logfiles " -"for more info." -msgstr "" -"Naganap ang isang mahalagang kamalian, maaaring may kaugnayan sa katakdaan " -"ng e-liham. Suriin ang mga talaksan ng talaan para sa mas marami pang " -"kabatiran." - #. TRANS: Error message. msgid "An error occurred." msgstr "Naganap ang isang kamalian." @@ -3920,13 +3911,13 @@ msgstr "Pumunta" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Ito ay mga talaang nilikha ni **%s**. Ang mga talaan ay kung paano mo " "pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %%site.name%%, " @@ -3957,13 +3948,13 @@ msgstr "Mga talaang may %1$s, pahina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Ito ay mga talaan para sa **%s**. Ang mga talaan ay kung paano mo " "pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %%site.name%%, " @@ -4292,7 +4283,8 @@ msgid "Beyond the page limit (%s)." msgstr "Lampas sa haggahan ng pahina (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Hindi makuhang muli ang pangmadlang batis." #. TRANS: Title for all public timeline pages but the first. @@ -4308,19 +4300,22 @@ msgstr "Pangmadlang guhit ng panahon" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Pasubo ng Pangmadlang Batis (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Pasubo ng Pangmadlang Batis (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Pasubo ng Pangmadlang Batis (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Pasubo ng Pangmadlang Batis (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4924,8 +4919,9 @@ msgstr "" "mga kinalabasan." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Makapagkakarga ka ng isang pamalit na kopya ng batis na nasa anyong \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:33+0000\n" +"Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -38,14 +38,6 @@ msgstr "" "можете зв’язатися з ними на %2$s, щоби в тому упевнитись. В іншому випадку, " "зачекайте декілька хвилин і спробуйте знову." -#. 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 "Сталася помилка." @@ -3867,13 +3859,13 @@ msgstr "Перейти" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Тут представлено списки, створені **%s**. Списки — це спосіб групувати " "схожих користувачів на %%%%site.name%%%%, сервісі [мікроблоґів](http://uk." @@ -3902,13 +3894,13 @@ msgstr "Списки, до яких входить %1$s, сторінка %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "Тут представлено списки для **%s**. Списки — це спосіб групувати схожих " "користувачів на %%%%site.name%%%%, сервісі [мікроблоґів](http://uk.wikipedia." @@ -4227,7 +4219,8 @@ msgid "Beyond the page limit (%s)." msgstr "Перевищено ліміт сторінки (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "Не вдається відновити загальну стрічку." #. TRANS: Title for all public timeline pages but the first. @@ -4243,19 +4236,22 @@ msgstr "Загальна стрічка" #. TRANS: Link description for public timeline feed. #, fuzzy -msgid "Public Stream Feed (Activity Streams JSON)" +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "Стрічка публічних дописів (Atom)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "Стрічка публічних дописів (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "Стрічка публічних дописів (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "Стрічка публічних дописів (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4837,8 +4833,9 @@ msgstr "" "Веб-стрічку невдовзі буде відновлено. Зачекайте, будь ласка, декілька хвилин." #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "Ви можете завантажити резервну копію у форматі \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:35+0000\n" +"Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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-07-01 11:17:02+0000\n" +"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" #. TRANS: Database error message. #, php-format @@ -42,12 +41,6 @@ msgstr "" "%1$s 的数据库响应不正确,所以该站点将无法正常工作。站点管理员可能知道该问题," "但是你可以通过 %2$s 联系他们确认。或几分钟后重试一下。" -#. 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 "出现了一个错误。" @@ -3736,13 +3729,13 @@ msgstr "转到" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "这些是由 **%s** 创建的名单。名单可以方便汇集相似的人在 %%%%site.name%%%%里," "一个 [微博客](http://en.wikipedia.org/wiki/Micro-blogging) 服务,基于自由软" @@ -3769,13 +3762,13 @@ msgstr "有 %1$s 的名单,第 %2$d 页" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, php-format +#, fuzzy, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" "blogging) service based on the Free Software [StatusNet](http://status.net/) " "tool. You can easily keep track of what they are doing by subscribing to the " -"tag's timeline." +"list's timeline." msgstr "" "这些是有 **%s** 的名单。名单可以方便汇集相似的人在 %%%%site.name%%%%里,一个 " "[微博客](http://en.wikipedia.org/wiki/Micro-blogging) 服务,基于自由软件 " @@ -4078,7 +4071,8 @@ msgid "Beyond the page limit (%s)." msgstr "超出页面限制(%s)。" #. TRANS: Server error displayed when a public timeline cannot be retrieved. -msgid "Could not retrieve public stream." +#, fuzzy +msgid "Could not retrieve public timeline." msgstr "无法获取到公共的时间线。" #. TRANS: Title for all public timeline pages but the first. @@ -4093,19 +4087,23 @@ msgid "Public timeline" msgstr "公共时间线" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Activity Streams JSON)" +#, fuzzy +msgid "Public Timeline Feed (Activity Streams JSON)" msgstr "公共流饲料 (活动流 JSON)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 1.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 1.0)" msgstr "公开的 RSS 聚合 (RSS 1.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (RSS 2.0)" +#, fuzzy +msgid "Public Timeline Feed (RSS 2.0)" msgstr "公开的 RSS 聚合 (RSS 2.0)" #. TRANS: Link description for public timeline feed. -msgid "Public Stream Feed (Atom)" +#, fuzzy +msgid "Public Timeline Feed (Atom)" msgstr "公开的 RSS 聚合 (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. @@ -4652,8 +4650,9 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "将还原订阅源。请等待几分钟。" #. TRANS: Form instructions for feed restore. +#, fuzzy msgid "" -"You can upload a backed-up stream in Activity Streams format." msgstr "" "你可以以Activity Streams格式上传一个" @@ -5039,6 +5038,7 @@ msgid "" msgstr "为何不[加入我们](%%action.register%%)开始关注这时间线呢!" #. TRANS: Header on show list page. +#. TRANS: Link description for link to list of users tagged with a tag (so part of a list). msgid "Listed" msgstr "已有名单" @@ -5057,19 +5057,19 @@ msgstr "关注者" msgid "All subscribers" msgstr "所有关注者" -#. TRANS: Page title showing tagged notices in one user's stream. +#. TRANS: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag. #, 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: Page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$s is the hash tag, %3$d is the page number. #, 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: Extended page title showing tagged notices in one user's timeline. #. TRANS: %1$s is the username, %2$d is the page number. #, php-format msgid "Notices by %1$s, page %2$d" @@ -5111,7 +5111,7 @@ msgstr "%s的消息聚合 (Atom)" msgid "FOAF for %s" msgstr "%s的FOAF" -#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname. +#. TRANS: First sentence of empty list message for a timeline. $1%s is a user nickname. #, php-format msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet." msgstr "这是%1$s的时间线,但是%1$s还没有发布任何内容。" @@ -5122,7 +5122,7 @@ msgid "" "would be a good time to start :)" msgstr "最近看到了什么有趣的消息了么?你还没有发布消息呢,现在开始吧 :)" -#. TRANS: Second sentence of empty list message for a non-self stream. %1$s is a user nickname, %2$s is a part of a URL. +#. TRANS: Second sentence of empty list message for a non-self timeline. %1$s is a user nickname, %2$s is a part of a URL. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5132,7 +5132,7 @@ msgstr "" "你可以试着呼叫%1$s或给他们 [发一些消息](%%%%action.newnotice%%%%?" "status_textarea=%2$s)。" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are open. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are open. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -5146,7 +5146,7 @@ msgstr "" "E5%BE%AE%E5%8D%9A%E5%AE%A2)服务。[现在加入](%%%%action.register%%%%)并关注**%" "s**的消息和享受更多乐趣! ([阅读更多](%%%%doc.help%%%%))" -#. TRANS: Announcement for anonymous users showing a stream if site registrations are closed or invite only. +#. TRANS: Announcement for anonymous users showing a timeline if site registrations are closed or invite only. #. TRANS: This message contains a Markdown link. Keep "](" together. #, php-format msgid "" @@ -8118,7 +8118,7 @@ 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, #. 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: %5$s is the text "The full conversation can be read here:" and 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 msgid "" @@ -8562,10 +8562,6 @@ msgstr "编辑" msgid "Edit %s list by you." msgstr "编辑 %s 由您的列表。" -#. TRANS: Link description for link to list of users tagged with a tag. -msgid "Tagged" -msgstr "标签" - #. TRANS: Title for link to edit list settings. msgid "Edit list settings." msgstr "编辑列表中的设置。" @@ -9465,163 +9461,11 @@ msgstr "不是有效的电子邮件。" msgid "Could not find a valid profile for \"%s\"." msgstr "无法保存个人信息。" -#~ msgid "You cannot list an OMB 0.1 remote profile with this action." -#~ msgstr "你无法这样操作一个OMB 0.1的远程用户" - -#~ msgid "Not expecting this response!" -#~ msgstr "未预料的响应!" - -#~ msgid "User being listened to does not exist." -#~ msgstr "要查看的用户不存在。" - -#~ msgid "You can use the local subscription!" -#~ msgstr "你可以使用本地关注!" - -#~ msgid "That user has blocked you from subscribing." -#~ msgstr "该用户屏蔽了你,无法关注。" - -#~ msgid "You are not authorized." -#~ msgstr "你没有被授权。" - -#~ msgid "Could not convert request token to access token." -#~ msgstr "无法将 request token 转换为 access token。" - -#~ msgid "Remote service uses unknown version of OMB protocol." -#~ msgstr "远程服务使用了未知版本的 OMB 协议。" - -#~ msgid "Error updating remote profile." -#~ msgstr "更新远程的个人信息时出错。" - -#~ msgid "Invalid notice content." -#~ msgstr "无效的消息内容。" - #~ msgid "" -#~ "Notice license \"%1$s\" is not compatible with site license \"%2$s\"." -#~ msgstr "消息的许可协议 “%1$s” 与这个站点的许可协议 “%2$s” 不兼容。" - -#~ msgid "" -#~ "To subscribe, you can [login](%%action.login%%), or [register](%%action." -#~ "register%%) a new account. If you already have an account on a " -#~ "[compatible microblogging site](%%doc.openmublog%%), enter your profile " -#~ "URL below." +#~ "An important error occured, probably related to email setup. Check " +#~ "logfiles for more info." #~ msgstr "" -#~ "要关注用户或小组,你需要[登录](%%action.login%%),或[注册](%%action." -#~ "register%%) 一个新账户。如果你已经在另一个[兼容的微博客](%%doc.openmublog%" -#~ "%)有账户,请填入你的资料页 URL。" +#~ "出现了一个重要错误,可能与电子邮件设置有关。详细信息请检查日志文件。" -#~ msgid "Remote subscribe" -#~ msgstr "远程关注" - -#~ msgid "Subscribe to a remote user" -#~ msgstr "关注一个远程用户" - -#~ msgid "User nickname" -#~ msgstr "昵称" - -#~ msgid "Nickname of the user you want to follow." -#~ msgstr "您要执行的用户的别名。" - -#~ msgid "Profile URL" -#~ msgstr "资料页 URL" - -#~ msgid "URL of your profile on another compatible microblogging service." -#~ msgstr "另一种兼容的微博客服务配置文件的 URL。" - -#~ msgid "Invalid profile URL (bad format)." -#~ msgstr "无效的用户 URL (格式错误)。" - -#~ msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." -#~ msgstr "不是有效的资料页 URL (没有YADIS 文档或定义了无效的 XRDS)。" - -#~ msgid "That is a local profile! Login to subscribe." -#~ msgstr "这是一个本地用户!请登录以关注。" - -#~ msgid "Could not get a request token." -#~ msgstr "无法获得一个 request token。" - -#~ msgid "You cannot (un)list an OMB 0.1 remote profile with this action." -#~ msgstr "你不能用这个操作(取消)纳入一个 OMB 0.1 远程用户。" - -#~ msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." -#~ msgstr "你不能用这个操作关注一个 OMB 0.1 远程用户。" - -#~ msgid "" -#~ "Listenee stream license \"%1$s\" is not compatible with site license \"%2" -#~ "$s\"." -#~ msgstr "消息的许可协议 “%1$s” 与这个站点的许可协议 “%2$s” 不兼容。" - -#~ msgid "Authorize subscription" -#~ msgstr "授权关注" - -#~ 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 "" -#~ "请检查这些详细信息,请确保您要订阅此用户的通知。如果您不只是要求某人的通知" -#~ "订阅,请单击\"拒绝\"。" - -#~ msgid "Reject this subscription." -#~ msgstr "拒绝此订阅。" - -#~ msgid "No authorization request!" -#~ msgstr "没有授权请求!" - -#~ msgid "Subscription authorized" -#~ msgstr "已授权关注" - -#~ 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 "" -#~ "已授权关注,但是没有回传 URL。请到网站查看如何授权关注。你的 subscription " -#~ "token 是:" - -#~ msgid "Subscription rejected" -#~ msgstr "关注已拒绝" - -#~ 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 "关注已拒绝,但是没有回传 URL。请到网站查看如何完全拒绝关注。" - -#~ msgid "Listener URI \"%s\" not found here." -#~ msgstr "Listener URI ‘%s’ 没有找到。" - -#~ msgid "Listenee URI \"%s\" is too long." -#~ msgstr "Listenee URI ‘%s’ 过长。" - -#~ msgid "Listenee URI \"%s\" is a local user." -#~ msgstr "Listenee URI ‘%s’ 是一个本地用户。" - -#~ msgid "Profile URL \"%s\" is for a local user." -#~ msgstr "个人信息 URL “%s” 是为本地用户的。" - -#~ msgid "Avatar URL \"%s\" is not valid." -#~ msgstr "头像地址‘%s’无效。" - -#~ msgid "Cannot read avatar URL \"%s\"." -#~ msgstr "无法读取头像 URL '%s'。" - -#~ msgid "Wrong image type for avatar URL \"%s\"." -#~ msgstr "头像 URL ‘%s’ 图像格式错误。" - -#~ msgid "Could not delete subscription OMB token." -#~ msgstr "无法删除关注 OMB token。" - -#~ msgid "Error inserting new profile." -#~ msgstr "添加新个人信息出错。" - -#~ msgid "Error inserting avatar." -#~ msgstr "添加头像出错。" - -#~ msgid "Error inserting remote profile." -#~ msgstr "添加远程个人信息时出错。" - -#~ msgid "Duplicate notice." -#~ msgstr "复制消息。" - -#~ msgid "Could not insert new subscription." -#~ msgstr "无法插入新的订阅。" +#~ msgid "Tagged" +#~ msgstr "标签" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index 70715320dd..ed57d068d9 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ast/LC_MESSAGES/APC.po b/plugins/APC/locale/ast/LC_MESSAGES/APC.po index e87defa663..a9d9d3cb60 100644 --- a/plugins/APC/locale/ast/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ast/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Asturian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:50+0000\n" +"Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po index c11cb8da07..399dcca711 100644 --- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po index 03c17497d2..2dfc2b7f1c 100644 --- a/plugins/APC/locale/br/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po index cbb5adf861..dcd34feabf 100644 --- a/plugins/APC/locale/de/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po index 24a04958ba..8dbd5aed0f 100644 --- a/plugins/APC/locale/es/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po index 396ea9eb34..69091ef6b3 100644 --- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po index 0b55901cb6..84e78bca33 100644 --- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/gl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po index ce01e93b83..4b24c4df63 100644 --- a/plugins/APC/locale/he/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po index 8b886108d3..fbb390a7df 100644 --- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po index 15cd853c61..73da16f5f8 100644 --- a/plugins/APC/locale/id/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po index 4e6dbd431d..685884e35e 100644 --- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/APC/locale/ms/LC_MESSAGES/APC.po b/plugins/APC/locale/ms/LC_MESSAGES/APC.po index 1a11645b21..073781bc14 100644 --- a/plugins/APC/locale/ms/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ms/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:51+0000\n" +"Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po index 76c60546bc..3b3ab8d5de 100644 --- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po index 4895f851d4..96fb234c36 100644 --- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po index 60b71b64fb..c851ff33e8 100644 --- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Polish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po index ec50dbf146..4ca95638f9 100644 --- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po index c17334efb6..c72cabdae2 100644 --- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po index c96aa083fd..f1d2255707 100644 --- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po index 6ee1134e7d..e0d0c88af3 100644 --- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po index dccb284823..4593a69823 100644 --- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:40+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po index 80f3380e10..743d71478b 100644 --- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po +++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - APC\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-apc\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/AccountManager/locale/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 3873e52e90..455f4be251 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 eca7f65bde..9513c6d04d 100644 --- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Afrikaans \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:43+0000\n" +"Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po index 92e92e2bd1..db0fe3ffe6 100644 --- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Asturian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:44+0000\n" +"Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po index e6e7fec971..6ba7e6ca5d 100644 --- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po index 67597c5dad..0729db0f0d 100644 --- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po index 741068e41a..4ecfc53b76 100644 --- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po index 27023696b4..3bd25b5ad6 100644 --- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po index 91e4fd493d..343630ebcb 100644 --- a/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/he/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po index a23a5b2ba0..704b5e9e33 100644 --- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po index 7dda3f6848..516b023995 100644 --- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po index d12b8c3775..8403835991 100644 --- a/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ms/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:32+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:44+0000\n" +"Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po index cb07a04797..e7a1bb78be 100644 --- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:33+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po index 59d363b566..b0e500175f 100644 --- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:33+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po index 736074bd7c..65dc11877e 100644 --- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:33+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po index 1fbd2812cf..6c062a832a 100644 --- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:33+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po index 759098f591..e79c79ed23 100644 --- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po +++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AccountManager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:33+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-accountmanager\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Adsense/locale/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index c12d03485c..cf4e1c0e65 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 1072da47af..b2b4263683 100644 --- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:34+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po index 77b98ff8d8..97f308d2d7 100644 --- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:34+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po index b948913799..5561b5a96c 100644 --- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:34+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:46+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po index 09ddc7d686..27d6301485 100644 --- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:34+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po index 8b48a800cb..37324cb9f8 100644 --- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:34+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po index c41d128952..e920f61a63 100644 --- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po index ca238b136a..776ec41540 100644 --- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:46+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po index 9b081b5f75..30350051d1 100644 --- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po index 9cf0ab835d..9efec23f66 100644 --- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Italian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:46+0000\n" +"Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po index 4b7367289b..71dee9e575 100644 --- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Georgian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:46+0000\n" +"Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po index db0232fb34..428e997531 100644 --- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po index 985f3e1419..bb4ab7e4d8 100644 --- a/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ms/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:46+0000\n" +"Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po index 14b241fc74..91949d5639 100644 --- a/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nb/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po index d65cb7b3ec..3363e685a1 100644 --- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po index d7c0512dd2..3d7db9ed72 100644 --- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po index 6a548c102d..dbd0c5b9fe 100644 --- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po index 0cb7a25695..6a69509eff 100644 --- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po index 8a316cf76e..7537866338 100644 --- a/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/sv/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:35+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po index 80c3d9f293..2a0d1d3259 100644 --- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po index 23156e8fb2..6b704f94d9 100644 --- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po index e68a07b8f4..1d31f0079a 100644 --- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po +++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Adsense\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-adsense\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Aim/locale/Aim.pot b/plugins/Aim/locale/Aim.pot index 34ad61cad3..68092ec1ea 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 1c958e05ee..49fa5093a4 100644 --- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: Afrikaans \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:47+0000\n" +"Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po index e48c0e8e2c..91a93d45c5 100644 --- a/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ca/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:47+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po index 99502494ce..eb721d081a 100644 --- a/plugins/Aim/locale/de/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/de/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po index 2528fa5278..c4da081704 100644 --- a/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fi/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po index 7ac71d4bd8..53ecc0c5f3 100644 --- a/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/fr/LC_MESSAGES/Aim.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:36+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po index 8100f2f35b..35b78326df 100644 --- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po index b7fd9e4617..8325654b09 100644 --- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po index 3ed4b4db83..296b37857d 100644 --- a/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/ms/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:48+0000\n" +"Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po index 5df2612cc2..0ddc293e84 100644 --- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po index 63ce872110..1b8c2f7cee 100644 --- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po index 7b3b63759f..6f86f4268d 100644 --- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po index 03088e60c1..5c98b9b69c 100644 --- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po index 4129967e22..24bfa623ca 100644 --- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po +++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Aim\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:37+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-aim\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index 5f18eca462..344e159520 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 971db0cf01..c810b1ae51 100644 --- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:38+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po index 808c3bed7e..b31307f649 100644 --- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:38+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po index 56c26bc2d7..be6a164a43 100644 --- a/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ca/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:38+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:49+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po index 18365cf647..cfd08fc0c2 100644 --- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:38+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index ccfd19ef5e..171d1ff468 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:38+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po index e291b25083..3edd018429 100644 --- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:38+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po index c57a3704d7..5f21e500b7 100644 --- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index 398cd94423..6e85ce6597 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index 368d37691b..64cbe859a2 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index 524985631d..72f018848f 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po index 622a05d27a..e465742667 100644 --- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po index 3477d81bcc..b7099ab20a 100644 --- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index d13bed83c4..2409048606 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:39+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ApiLogger/locale/ApiLogger.pot b/plugins/ApiLogger/locale/ApiLogger.pot index d3a8ce1cc9..d201951d07 100644 --- a/plugins/ApiLogger/locale/ApiLogger.pot +++ b/plugins/ApiLogger/locale/ApiLogger.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po index bad0c0510a..150c61afe0 100644 --- a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Asturian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:52+0000\n" +"Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po index 3be90ca16b..f540b5f307 100644 --- a/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/de/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po index 7a44a58996..19962fd264 100644 --- a/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/fr/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po index 840e3bd5df..34bc2532d9 100644 --- a/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/he/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po index 2ae46e27a7..a064e10ed4 100644 --- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po index c0916d3393..1c2d8c4701 100644 --- a/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ksh/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Colognian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:52+0000\n" +"Language-Team: Colognian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ksh\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po index 0c64438edb..fc40e014f2 100644 --- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po index 94e6b4de42..87f7368925 100644 --- a/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/ms/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:52+0000\n" +"Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po index 10cdda7a34..63d443a15d 100644 --- a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po index a385f2fb7f..deaa3fd251 100644 --- a/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/pt/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po index e58cb70664..1ed1d84d9b 100644 --- a/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/tl/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po index 5cfeddbfd3..88f6888436 100644 --- a/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po +++ b/plugins/ApiLogger/locale/uk/LC_MESSAGES/ApiLogger.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ApiLogger\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:41+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-18 16:18:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-apilogger\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AutoSandbox/locale/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 857cad98d7..1d94f3f2de 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 f2ee15ebbe..12d46bba04 100644 --- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po index c5708a35c9..9a51ebbb0a 100644 --- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/br/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:54+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po index b93cb5f2b1..fbd7c063a7 100644 --- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po index a6e841d2b5..43205dfc49 100644 --- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po index 9c56403bba..e9fcabc12f 100644 --- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po index 808cf5b2f6..584e89f2f3 100644 --- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po index 94630b9e78..580e69ae88 100644 --- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po index 9e016f9213..eed8e5f773 100644 --- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po index e773c56fcf..6c93125b9d 100644 --- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po index d0b50db5e7..f052109ac4 100644 --- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po index f6ab1e8500..fda51e47c5 100644 --- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po index d0556c3f22..3f03a4dd22 100644 --- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po +++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AutoSandbox\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-autosandbox\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Autocomplete/locale/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 187555d3ff..8ab4dab32c 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po index 77a9baeea1..d25680938a 100644 --- a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ast/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Asturian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:53+0000\n" +"Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po index cff1193159..3771bd1af9 100644 --- a/plugins/Autocomplete/locale/ca/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:53+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po index ebf2fc772d..24b2afc1ce 100644 --- a/plugins/Autocomplete/locale/de/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po index 60da9cc3cb..dba8ec83a6 100644 --- a/plugins/Autocomplete/locale/es/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po index 25d087e76e..4b9dcadc7d 100644 --- a/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/fr/LC_MESSAGES/Autocomplete.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Autocomplete\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po index d131520dbc..12c5e6bc96 100644 --- a/plugins/Autocomplete/locale/he/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po index 932c2b1665..0c3edb1de1 100644 --- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po index de868a264f..16008eb93c 100644 --- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po index b00b2d2e00..2a86c2014c 100644 --- a/plugins/Autocomplete/locale/ms/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/ms/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po index 3880864d7e..946cc02447 100644 --- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po index b233c47dfb..c18d99ea94 100644 --- a/plugins/Autocomplete/locale/sv/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:42+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:53+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po index fac969851e..2aead4ef45 100644 --- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po index 46a7db5e57..cc04d1146c 100644 --- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po +++ b/plugins/Autocomplete/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:43+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-autocomplete\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index 12e350945a..8b72a298a1 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 39f4495e7a..0ac887947f 100644 --- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po index 4f49cda50a..122622de05 100644 --- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po index c683a77278..d77db9953f 100644 --- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Awesomeness\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:55+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po index d8e8873b02..33f1b0b482 100644 --- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po index 037645c11e..80bc5eaf2c 100644 --- a/plugins/Awesomeness/locale/he/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po index d0aa89c8bd..d76efc1a96 100644 --- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po index 3061ad3713..6b51d80f33 100644 --- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:44+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po index 3a0080361c..b847f30f5a 100644 --- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:45+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po index 95dd7da9ea..e36b949712 100644 --- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:45+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po index 676e74b3da..c2e72e3c6c 100644 --- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:45+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po index 007a98cb89..aef36f530d 100644 --- a/plugins/Awesomeness/locale/tl/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:45+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po index 50b9c63a6c..e3f9825244 100644 --- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po +++ b/plugins/Awesomeness/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:45+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-awesomeness\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BitlyUrl/locale/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 7e1dec106a..4b29dcadd6 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 575a34157d..a64f603b80 100644 --- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:56+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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po index cb441d16c2..ad852f1923 100644 --- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po index ccf0181161..e6bfb9b96f 100644 --- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po index 67c5cb9853..49ce54821f 100644 --- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po index cbf81fd3a5..12d85c419c 100644 --- a/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/fur/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: Friulian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:56+0000\n" +"Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po index 486e835872..eccd56732a 100644 --- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po index 3362542fb1..e238cdd6ba 100644 --- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 9f9c37f6f6..718bee7768 100644 --- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:47+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:57+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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po index ddebc17f3c..9b32199c1c 100644 --- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:46+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po index e3510c2a7a..4cdf088523 100644 --- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:47+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po index cae9723419..a6fab611d0 100644 --- a/plugins/BitlyUrl/locale/sv/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:47+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:57+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po index d88b20d5c5..cb5d8f93b2 100644 --- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:47+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po index d90179d295..55ee87f37f 100644 --- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po +++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BitlyUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:47+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index b05cd2ff2f..5ee8eadf24 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 5acc07a519..ffe48ddfa1 100644 --- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:48+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po index 8205ce9642..b4d4678496 100644 --- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:48+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po index 9d3bd1ed36..764855d1da 100644 --- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po index 6f64e51b44..cfb09e58c1 100644 --- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po index 57793539ef..cfa3ab7505 100644 --- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po index 63e8362ec4..a56f642adf 100644 --- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po index 06e3ff0254..c065745fe3 100644 --- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po index 06c6c8ee22..b89c2a6c92 100644 --- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po index 4be797f6a1..e39a13c239 100644 --- a/plugins/Blacklist/locale/sv/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19:59+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po index 0765259cd0..da396d2e7d 100644 --- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po index f67e1386fb..4c09423cf1 100644 --- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po index 715565a58c..810d51f856 100644 --- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po +++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blacklist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:49+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:48+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blacklist\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/BlankAd/locale/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index 3f38088158..bb522be448 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 2513fe61f3..e881b7936a 100644 --- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po index 2de819a50e..67c87fa6eb 100644 --- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/br/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:19: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po index 6316570aeb..63e060e6b8 100644 --- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po index 9dffac4e52..8805d6136b 100644 --- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po index 8b7a3bcad7..446210d0a0 100644 --- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po index 1618096ff5..ecb5164d8e 100644 --- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po index d2590963fd..1bc2900127 100644 --- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po index 5d90e300fb..e56dcf7bb8 100644 --- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po index 34e2e13608..b06745bb27 100644 --- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po index 3fd1a6e524..8bd26d3832 100644 --- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po index eee002e353..05391233a8 100644 --- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po index 97cea7f439..cfb31ba523 100644 --- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po index 34204bf38a..6167f1d43e 100644 --- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po index f46836e36b..722147fbbb 100644 --- a/plugins/BlankAd/locale/sv/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:00+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po index 9d0559dd3b..7a5b488b69 100644 --- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po index 4140e1298a..fbc9a2e9b6 100644 --- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:50+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po index 28c8fc7931..462ada0a9c 100644 --- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po +++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlankAd\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:51+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:49+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-blankad\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Blog/locale/Blog.pot b/plugins/Blog/locale/Blog.pot index d21a019c1f..8dbe2ba52b 100644 --- a/plugins/Blog/locale/Blog.pot +++ b/plugins/Blog/locale/Blog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/Blog/locale/ca/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po index f0be30dfa2..25b3e9fcf6 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index 18fd8640ca..277eee74ca 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index 0aacc6f74a..de226ce026 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po index bcf5acee73..ba617e8484 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po index 5f2ca9710f..cd11c1eac0 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -2,6 +2,7 @@ # Exported from translatewiki.net # # Author: SPQRobin +# Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. # @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,26 +39,26 @@ msgid "Blog entry saved" msgstr "Blogbericht is opgeslagen" msgid "Let users write and share long-form texts." -msgstr "" +msgstr "Laat gebruikers langere teksten schrijven en delen." msgid "Blog" msgstr "Blog" #. TRANS: Exception thrown when there are too many activity objects. msgid "Too many activity objects." -msgstr "" +msgstr "Te veel activiteitobjecten." #. TRANS: Exception thrown when blog plugin comes across a non-event type object. msgid "Wrong type for object." -msgstr "" +msgstr "Verkeerde type voor object." #. TRANS: Exception thrown when blog plugin comes across a undefined verb. msgid "Unknown verb for blog entries." -msgstr "" +msgstr "Onbekende werkwoord voor blogberichten." #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." -msgstr "" +msgstr "Geen dergelijke vermelding." msgid "Untitled" msgstr "Zonder titel" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index c8a7cc1dc2..333dc0b554 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po index fbb9093e05..6d4047c5b3 100644 --- a/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/de/LC_MESSAGES/BlogspamNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po index fd53cd9fe1..35eef0e848 100644 --- a/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/fr/LC_MESSAGES/BlogspamNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - BlogspamNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po index 90b08babb5..74a702d0c1 100644 --- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:52+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po index 0c39150f26..84f760badc 100644 --- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:53+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po index 8ce8780322..198a5f8a05 100644 --- a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:53+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po index c5c0003af5..1a9f4a0186 100644 --- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:53+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po index d6cab4d1aa..72defc6b60 100644 --- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:53+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po index c2de6681a7..325f3e4fe9 100644 --- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:53+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-blogspamnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po index d98149c4b7..e3644f8a4b 100644 --- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po +++ b/plugins/BlogspamNet/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:53+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 68acf97bac..0b01354048 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po index 6b6511f44c..b1f15d3239 100644 --- a/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ar/LC_MESSAGES/Bookmark.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:56+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:06+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -26,7 +26,7 @@ msgstr "" #. TRANS: Client exception thrown when a file upload is incorrect. msgid "Bad import file." -msgstr "ملف الاستيراد غير صحيح." +msgstr "ملف الاستيراد فاسد." #. TRANS: Client exception thrown when a bookmark in an import file is incorrectly formatted. msgid "No tag in a
." @@ -38,13 +38,13 @@ 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\"" #. TRANS: Plugin description. msgid "Simple extension for supporting bookmarks." @@ -53,7 +53,7 @@ msgstr "" #. TRANS: Link text in proile leading to import form. #. TRANS: Title for page to import del.icio.us bookmark backups on. msgid "Import del.icio.us bookmarks" -msgstr "إستيراد علامات القراءة من del.icio.us" +msgstr "استورد علامات من del.icio.us" #. TRANS: Client exception thrown when a bookmark is formatted incorrectly. msgid "Expected exactly 1 link rel=related in a Bookmark." @@ -66,7 +66,7 @@ msgstr "" #. TRANS: Application title. msgctxt "TITLE" msgid "Bookmark" -msgstr "علامة القراءة" +msgstr "علامة" #. TRANS: Exception thrown when a bookmark has no attachments. #. TRANS: %1$s is a bookmark ID, %2$s is a notice ID (number). @@ -78,18 +78,18 @@ msgstr "" #. TRANS: %s is the StatusNet site name. #, php-format msgid "Bookmark on %s" -msgstr "ضع علامة قراءة على %s" +msgstr "ضع علامة في %s" #. TRANS: Client exception thrown when trying to save a new bookmark that already exists. msgid "Bookmark already exists." -msgstr "علامة القراءة موجودة سابقاّ" +msgstr "العلامة موجودة سابقاّ" #. TRANS: Bookmark content. #. TRANS: %1$s is a title, %2$s is a short URL, %3$s is the bookmark 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" #. TRANS: Rendered bookmark content. #. TRANS: %1$s is a URL, %2$s the bookmark title, %3$s is the bookmark description, @@ -100,11 +100,14 @@ msgid "" "%3$s %4$s" msgstr "" +"%2$s " +"%3$s %4$s" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "المسار" #. TRANS: Button text for action to save a new bookmark. msgctxt "BUTTON" @@ -119,13 +122,13 @@ msgstr "" #. TRANS: %s is the URL. #, php-format msgid "Notices linking to %s" -msgstr "" +msgstr "الإشعار التي تصل ب%s" #. TRANS: Title of notice stream of notices with a given attachment (all but first page). #. TRANS: %1$s is the URL, %2$s is the page number. #, php-format msgid "Notices linking to %1$s, page %2$d" -msgstr "" +msgstr "الإشعار التي تصل ب%1$s، الصفحة %2$d" #. TRANS: Client exception thrown when trying to import bookmarks without being logged in. msgid "Only logged-in users can import del.icio.us backups." @@ -133,7 +136,7 @@ msgstr "" #. TRANS: Client exception thrown when trying to import bookmarks without having the rights to do so. msgid "You may not restore your account." -msgstr "لن يسمح لك بإستعادة حسابك." +msgstr "لا يسمح لك باستعادة حسابك." #. TRANS: Client exception thrown when trying to import bookmarks and upload fails. #. TRANS: Client exception thrown when a file upload has failed. @@ -152,7 +155,7 @@ msgstr "" #. TRANS: Client exception thrown when a file was only partially uploaded. 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." @@ -199,10 +202,11 @@ msgid "" "Bookmarks have been imported. Your bookmarks should now appear in search and " "your profile page." msgstr "" +"تم استيراد العلامات. ينبغي أن تظهر علاماتك الآن عند البحث وفي صفحتك الشخصية." #. TRANS: Busy message for importing bookmarks. msgid "Bookmarks are being imported. Please wait a few minutes for results." -msgstr "" +msgstr "يتم استيراد العلامات. الرجاء الانتظار دقائق معدودة لتظهر النتيجة." #. TRANS: Form instructions for importing bookmarks. msgid "You can upload a backed-up delicious.com bookmarks file." @@ -220,7 +224,7 @@ msgstr "حمّل الملف." #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" msgid "Title" -msgstr "الإسم" +msgstr "العنوان" #. TRANS: Field label on form for adding a new bookmark. msgctxt "LABEL" @@ -234,7 +238,7 @@ msgstr "الوسوم" #. TRANS: Field title on form for adding a new bookmark. msgid "Comma- or space-separated list of tags." -msgstr "لائحة وسومات منفصلة بفاصلة أو بفراغ." +msgstr "قائمة بوسوم مفصولة بفاصلة أو بفراغ." #. TRANS: Button text for action to save a new bookmark. msgctxt "BUTTON" @@ -243,11 +247,11 @@ msgstr "احفظ" #. TRANS: Title for action to create a new bookmark. msgid "New bookmark" -msgstr "علامة قراءة جديدة" +msgstr "علامة جديدة" #. TRANS: Client exception thrown when trying to create a new bookmark while not logged in. msgid "Must be logged in to post a bookmark." -msgstr "يجب أن تكون مسجل الدخول كي تعلن عن علامة قراءة." +msgstr "يجب أن تكون والجا لتنشر العلامات." #. TRANS: Client exception thrown when trying to create a new bookmark without a title. msgid "Bookmark must have a title." @@ -255,13 +259,13 @@ msgstr "يجب تسمية علامة القراءة." #. TRANS: Client exception thrown when trying to create a new bookmark without a URL. msgid "Bookmark must have an URL." -msgstr "" +msgstr "يجب أن تحتوي العلامة على مسار." #. TRANS: Page title after posting a bookmark. msgid "Bookmark 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/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po index ea37d9edce..0feb49be6c 100644 --- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:56+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:06+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po index 2807c08889..be8b566f56 100644 --- a/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/de/LC_MESSAGES/Bookmark.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:56+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po index 8817348e7b..b6543ff4d4 100644 --- a/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/fr/LC_MESSAGES/Bookmark.po @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:56+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po index 6bb17c4835..e01e4db2be 100644 --- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:56+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po index d11e73810c..75965839e5 100644 --- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:56+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po index 5732173d83..78484ba5d0 100644 --- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:56+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po index 6ec77e9a9f..99ed18a862 100644 --- a/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/sv/LC_MESSAGES/Bookmark.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:06+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po index b2e338f332..98fc70cc5c 100644 --- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-bookmark\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po index f8c1ba6734..f5d3d40660 100644 --- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Bookmark\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/CacheLog/locale/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index c6e5d45631..6d2e69113c 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 512ee62832..9e0c84452c 100644 --- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po index 13ae0c7242..b3ae5ac116 100644 --- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/br/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po index 57df27e1ef..68e1978599 100644 --- a/plugins/CacheLog/locale/de/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po index fc683cff48..5d436bd0e1 100644 --- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po index df11e86a67..3958aa29c5 100644 --- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:57+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po index 726d581f6c..2310db82a2 100644 --- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:07+0000\n" +"Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po index e1ca833a1c..0fc963a404 100644 --- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po index fcc455346c..b7809cc2a3 100644 --- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po index 9aa8c330a6..726e163675 100644 --- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:07+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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po index bdb506f600..b0255dace5 100644 --- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po index eb378f8ad9..d617495913 100644 --- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:07+0000\n" +"Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po index 4961f42171..68d93cd81d 100644 --- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po index 68a0ebf745..267940df5f 100644 --- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po index 2fb8679592..7365d12727 100644 --- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po index 7913831c58..9f96537326 100644 --- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po +++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CacheLog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:58+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-cachelog\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/CasAuthentication/locale/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index a46d37be8e..efa5355cf1 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 b05dfa0d8b..ebb8a2f644 100644 --- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:59+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:08+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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po index 7c9636c988..9159a83258 100644 --- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:59+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po index c6380586dd..271d7e556d 100644 --- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:59+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po index e60535d189..0cd209b3e2 100644 --- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:59+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po index ace89817f6..f702734d75 100644 --- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:59+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po index 81de86af3c..11528a9d80 100644 --- a/plugins/CasAuthentication/locale/hu/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/hu/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:59+0000\n" -"Language-Team: Hungarian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:09+0000\n" +"Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po index 32fe5f6108..d987d674b3 100644 --- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:19:59+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po index bb14beb016..47b512e37b 100644 --- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po index 7dc90a7ac2..b1ad0f200a 100644 --- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po index 32d0e9d22a..b3a47f8d26 100644 --- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:09+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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po index 71205e5cfd..96cba18b51 100644 --- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po index 67eb42f011..7f7ebece52 100644 --- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po index a264f8dcaf..ed9d82cc14 100644 --- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po index 1cc72c2fec..a8db41a53c 100644 --- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po +++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - CasAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-casauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ClientSideShorten/locale/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 9fa056c6ca..3b90996cb3 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 e6b33dbc9a..c2cb8ac350 100644 --- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:00+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po index 3cfeccbbce..a5a4d3b018 100644 --- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po index 951a5c9ad0..931f7f0eaf 100644 --- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po index c67fd4f0cf..b79dff7a90 100644 --- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po index 1727662da6..95f6004d38 100644 --- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po index 861db41e11..d86656f9bf 100644 --- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po index fc4bface97..4d43a1ea4d 100644 --- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po index b04509742e..3ba3b28a12 100644 --- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index 4303d8de9d..79dad3e2b5 100644 --- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po index 84157da9b6..5569e456c9 100644 --- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po index 1dd0fd5015..7f62a2887d 100644 --- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po index dca73f7935..444d6cb79b 100644 --- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:01+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po index 638752905e..a4064043c1 100644 --- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po index 7feab6fe3f..ff8fbc21e6 100644 --- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po +++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ClientSideShorten\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index ea020940f1..948a8b4395 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/Comet.po b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po index 449c9c6841..d744f7ba5a 100644 --- a/plugins/Comet/locale/de/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/de/LC_MESSAGES/Comet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po index 0f08255969..9ba3844900 100644 --- a/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/fr/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po index dc8a1f743d..3b6ba42119 100644 --- a/plugins/Comet/locale/he/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/he/LC_MESSAGES/Comet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po index 600978e9a5..2b07a61ba3 100644 --- a/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ia/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po index b3ebb2d4d9..73150dda94 100644 --- a/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/mk/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po index 92aa621d25..3e6d821f42 100644 --- a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po index bacc616048..8c48ec1f9d 100644 --- a/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/nl/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po index 93c8d8f581..9e1c3eff7c 100644 --- a/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/ru/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:02+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po index 733ad72666..031bd0a213 100644 --- a/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/tl/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-comet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po index cbc5fc64d2..072508a581 100644 --- a/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po +++ b/plugins/Comet/locale/uk/LC_MESSAGES/Comet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Comet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index 07d871302c..f9d740a141 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 1cc2f55c77..6dac06654f 100644 --- a/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/be-tarask/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po index a4c43e5078..d6705d729e 100644 --- a/plugins/DirectionDetector/locale/br/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/br/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po index 59a4d48f9c..8127f801c7 100644 --- a/plugins/DirectionDetector/locale/de/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 79dabc8200..ea79cc15bd 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po index fd17bce0af..77180bfbd5 100644 --- a/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fi/LC_MESSAGES/DirectionDetector.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index b1525fe078..59c31b09d8 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po index a0ec69c81f..18570a29b6 100644 --- a/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/he/LC_MESSAGES/DirectionDetector.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index da7375c898..f591337ed9 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:03+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po index 97fa71450b..2cf2f7dbbd 100644 --- a/plugins/DirectionDetector/locale/id/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:12+0000\n" +"Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index 82d8dd1227..536f5528b5 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:12+0000\n" +"Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index 1c8c1e0986..e68f295223 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Luxembourgish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:12+0000\n" +"Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 93d53189d9..9a8f42cd67 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 58049aa3ba..b7bda2d7b5 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index a9052ca404..d84c0c489d 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:12+0000\n" "Last-Translator: Siebrand Mazeland \n" -"Language-Team: Dutch \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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 af6a74f7c9..7bd52482e2 100644 --- a/plugins/DirectionDetector/locale/pt/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 9599b02cc8..3f1b147ecc 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 4575908b29..3c44610d79 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index 008c888a93..85805f8ede 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index 0ecb3d019b..58b13554f8 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:04+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Directory/locale/Directory.pot b/plugins/Directory/locale/Directory.pot index af5b4d77da..596468b472 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po index 86061f1235..39f01aa4a9 100644 --- a/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ar/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:06+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -40,9 +40,9 @@ msgstr "دليل المستخدمين - %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" -msgstr "دليل المستخدمين - %s، الصفحة %d" +msgstr "دليل المستخدمين - %1$s، الصفحة %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format @@ -87,8 +87,8 @@ msgid "" "* Try fewer keywords." msgstr "" "* تأكد من أن كل الكلمات صحيحة التهجئة.\n" -"*حاول بكلمات متعددة.\n" -"* حاول بكلمات أكثر عموماّ.\n" +"*حاول بكلمات أخرى.\n" +"* حاول بكلمات أكثر عمومًا.\n" "* حاول بكلمات أقل." #. TRANS: Title for group directory page. %d is a page number. @@ -154,15 +154,15 @@ msgstr "الاسم المستعار" #. TRANS: Column header in table for timestamp when user was created. msgid "Created" -msgstr "تم إنشاءه" +msgstr "أنشئ في" #. TRANS: Column header for number of subscriptions. msgid "Subscriptions" -msgstr "" +msgstr "الاشتراكات" #. TRANS: Column header for number of notices. msgid "Notices" -msgstr "" +msgstr "الإشعارات" #. TRANS: Column header in table for members of a group. msgid "Members" diff --git a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po index ede32a0224..ecaecadc24 100644 --- a/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ca/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:06+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:14+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,9 +38,9 @@ msgstr "Directori d'usuari — %s" #. TRANS: Page title for user directory. #. TRANS: %1$s is the applied filter, %2$d is a page number. -#, fuzzy, php-format +#, php-format msgid "User directory - %1$s, page %2$d" -msgstr "Directori d'usuari — %s, pàgina %d" +msgstr "Directori d'usuari — %1$s, pàgina %2$d" #. TRANS: %%site.name%% is the name of the StatusNet site. #, php-format diff --git a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po index ce2fb2065f..368a01b5be 100644 --- a/plugins/Directory/locale/de/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/de/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:06+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po index 231861e674..cd27487665 100644 --- a/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fi/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:14+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po index 529f1952dd..11979b241d 100644 --- a/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/fr/LC_MESSAGES/Directory.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po index 4b5ee8d44f..46ac584351 100644 --- a/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/ia/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po index 0a7b7678b6..924c298a84 100644 --- a/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/mk/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po index 650629aaff..76273a943c 100644 --- a/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/nl/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po index da67612e65..6bf2f14fc9 100644 --- a/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/sv/LC_MESSAGES/Directory.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:15+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po index 5caef4807e..1198794427 100644 --- a/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/tl/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po index e1d1a8a0a5..100c0a9310 100644 --- a/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po +++ b/plugins/Directory/locale/uk/LC_MESSAGES/Directory.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Directory\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:07+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directory\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DiskCache/locale/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index e7ef04b6af..dfa579ebf9 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 ad11f6d963..3af5825955 100644 --- a/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/be-tarask/LC_MESSAGES/DiskCache.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:15+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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po index ca9bcf3b99..571d301880 100644 --- a/plugins/DiskCache/locale/br/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:15+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po index fc74236a52..6dfd4cc451 100644 --- a/plugins/DiskCache/locale/ca/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:15+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po index 49e02219e4..0e51f53714 100644 --- a/plugins/DiskCache/locale/de/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po index 9e430db180..be5d02a52c 100644 --- a/plugins/DiskCache/locale/es/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po index 3f1157691c..5b9baf510c 100644 --- a/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fi/LC_MESSAGES/DiskCache.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po index b8ad4045f9..90707fba71 100644 --- a/plugins/DiskCache/locale/fr/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po index a1ea618d5c..c87ca4c8ca 100644 --- a/plugins/DiskCache/locale/he/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po index 2aa392e263..8901bf3a8e 100644 --- a/plugins/DiskCache/locale/ia/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po index d5980ad3a0..58e0280514 100644 --- a/plugins/DiskCache/locale/id/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po index 3c8a1e3f7b..0ee7048f4f 100644 --- a/plugins/DiskCache/locale/mk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po index 634f9ba00c..330d56b926 100644 --- a/plugins/DiskCache/locale/nb/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:16+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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po index 65aab4ce17..b682875f23 100644 --- a/plugins/DiskCache/locale/nl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po index be518db30e..253d59f8f2 100644 --- a/plugins/DiskCache/locale/pt/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:08+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:16+0000\n" +"Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po index a68e0efaf5..eb99a42733 100644 --- a/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/pt_BR/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:16+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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po index e4d24c4908..8d6e6af855 100644 --- a/plugins/DiskCache/locale/ru/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po index cf99774ea0..c2cf22bfed 100644 --- a/plugins/DiskCache/locale/sv/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po index fe3c2a2340..a06dfb98f0 100644 --- a/plugins/DiskCache/locale/tl/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po index 92af7deaa8..addeb68d8f 100644 --- a/plugins/DiskCache/locale/uk/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po index ca732e22d4..7bb874cf89 100644 --- a/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po +++ b/plugins/DiskCache/locale/zh_CN/LC_MESSAGES/DiskCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DiskCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:58+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-diskcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Disqus/locale/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 1871ec20ae..580ec7da5b 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 61a2109c0c..6f20a84f45 100644 --- a/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/be-tarask/LC_MESSAGES/Disqus.po @@ -10,15 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:17+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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po index 1fbf180a98..c61ee20e48 100644 --- a/plugins/Disqus/locale/br/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/br/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po index db9aa56170..28d5efebc8 100644 --- a/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/de/LC_MESSAGES/Disqus.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:09+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po index ccfc1c5679..8943d1e0eb 100644 --- a/plugins/Disqus/locale/es/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po index 08aae372a7..91b2a853ba 100644 --- a/plugins/Disqus/locale/fr/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po index eab9ae44dd..8e853e54f3 100644 --- a/plugins/Disqus/locale/ia/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po index baff453a84..27f1b1fc0d 100644 --- a/plugins/Disqus/locale/mk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po index a2bed54b95..dbf729861b 100644 --- a/plugins/Disqus/locale/nb/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po index f8e833e30a..8ba94a6cab 100644 --- a/plugins/Disqus/locale/nl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po index 1aaf23b821..50a3ae93c3 100644 --- a/plugins/Disqus/locale/pt/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po index 5c65458fea..a98eddfd25 100644 --- a/plugins/Disqus/locale/ru/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po index 1d5b47de9a..e668a588dc 100644 --- a/plugins/Disqus/locale/tl/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po index c7f67c5de9..e86de474a8 100644 --- a/plugins/Disqus/locale/uk/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po index f98a3259c8..9b9ba9bf12 100644 --- a/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po +++ b/plugins/Disqus/locale/zh_CN/LC_MESSAGES/Disqus.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Disqus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:49:59+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-disqus\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index ea237b90cc..7b2136962c 100644 --- a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot +++ b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po index b2e27654bf..8237101d79 100644 --- a/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/de/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:10+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po index c4474d65d0..c0c380d823 100644 --- a/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/fr/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:11+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po index 1f357b5b96..e2aba0fd2b 100644 --- a/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/he/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:11+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po index 643b971873..d775d12d7b 100644 --- a/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/ia/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:11+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po index 302aeb4167..9e8aaec0ba 100644 --- a/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/mk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:11+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po index a9bce823c8..6b297021e7 100644 --- a/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/nl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:11+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po index 131adc9975..1c1719fed8 100644 --- a/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/tl/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:11+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po index bac9595bba..c89f0dbbf6 100644 --- a/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po +++ b/plugins/DomainStatusNetwork/locale/uk/LC_MESSAGES/DomainStatusNetwork.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainStatusNetwork\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:11+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:16+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/DomainWhitelist/locale/DomainWhitelist.pot b/plugins/DomainWhitelist/locale/DomainWhitelist.pot index 7734a96e39..e78741e1d5 100644 --- a/plugins/DomainWhitelist/locale/DomainWhitelist.pot +++ b/plugins/DomainWhitelist/locale/DomainWhitelist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po new file mode 100644 index 0000000000..7a30ea3d80 --- /dev/null +++ b/plugins/DomainWhitelist/locale/ar/LC_MESSAGES/DomainWhitelist.po @@ -0,0 +1,82 @@ +# Translation of StatusNet - DomainWhitelist 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 - DomainWhitelist\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Client exception thrown when a given e-mailaddress is not in the domain whitelist. +#. TRANS: %s is a whitelisted e-mail domain. +#, php-format +msgid "Email address must be in this domain: %s." +msgstr "" + +#. TRANS: Client exception thrown when a given e-mailaddress is not in the domain whitelist. +#. TRANS: %s are whitelisted e-mail domains separated by comma's (localisable). +#, php-format +msgid "Email address must be in one of these domains: %s." +msgstr "" + +#. TRANS: Separator for whitelisted domains. +msgctxt "SEPARATOR" +msgid ", " +msgstr "و " + +#. TRANS: Exception thrown when an e-mail address does not match the site's domain whitelist. +msgid "That email address is not allowed on this site." +msgstr "" + +#. TRANS: Title for invitiation deletion dialog. +msgid "Confirmation Required" +msgstr "" + +#. TRANS: Confirmation text for invitation deletion dialog. +msgid "Really delete this invitation?" +msgstr "أأحذف هذه الدعوة حقا؟" + +#. TRANS: Plugin description. +msgid "Restrict domains for email users." +msgstr "" + +#. TRANS: Form legend. +msgid "Invite collegues" +msgstr "دعوة أصدقاء" + +#. TRANS: Field label for a personal message to send to invitees. +msgid "Personal message" +msgstr "رسالة شخصية" + +#. TRANS: Field title for a personal message to send to invitees. +msgid "Optionally add a personal message to the invitation." +msgstr "أضف إن شئت رسالة شخصية للدعوة." + +#. TRANS: Link description to action to add another item to a list. +msgid "Add another item" +msgstr "أرسل" + +#. TRANS: Send button for inviting friends. +msgctxt "BUTTON" +msgid "Send" +msgstr "أرسل" + +#. TRANS: Submit button title. +msgid "Send invitations." +msgstr "أرسل الدعوات." diff --git a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po index 2d210fb241..1243f62bba 100644 --- a/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/de/LC_MESSAGES/DomainWhitelist.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:12+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po index 9b75a114b6..f410240bd9 100644 --- a/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/ia/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:12+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po index 4458f0ada6..b38fe1bb59 100644 --- a/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/mk/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:12+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po index d903c111e5..38939271cd 100644 --- a/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/nl/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:12+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po index 47fbd81161..948da974d2 100644 --- a/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/tl/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:12+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po index a23e42ecee..b9cb3dbd6f 100644 --- a/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po +++ b/plugins/DomainWhitelist/locale/uk/LC_MESSAGES/DomainWhitelist.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DomainWhitelist\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:12+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-domainwhitelist\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Echo/locale/Echo.pot b/plugins/Echo/locale/Echo.pot index ff1264f289..a5f3606302 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 9410546627..a90ccca39b 100644 --- a/plugins/Echo/locale/ar/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ar/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po index 6d9d13e6d1..9a86afe8c3 100644 --- a/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/be-tarask/LC_MESSAGES/Echo.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:20+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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po b/plugins/Echo/locale/br/LC_MESSAGES/Echo.po index 16e2b6b685..068b1d2565 100644 --- a/plugins/Echo/locale/br/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po b/plugins/Echo/locale/de/LC_MESSAGES/Echo.po index 814a2384d1..deee66280b 100644 --- a/plugins/Echo/locale/de/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po b/plugins/Echo/locale/es/LC_MESSAGES/Echo.po index 1f7d06040f..73ad9cebb5 100644 --- a/plugins/Echo/locale/es/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po index 044c6d7ff4..e507a74e35 100644 --- a/plugins/Echo/locale/fi/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po b/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po index 49e90f0c62..3eb7e9e0fb 100644 --- a/plugins/Echo/locale/fr/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po index 20f80b801a..3287d12202 100644 --- a/plugins/Echo/locale/he/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/he/LC_MESSAGES/Echo.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po index 9ea2f0ed9b..eed4820c57 100644 --- a/plugins/Echo/locale/ia/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po b/plugins/Echo/locale/id/LC_MESSAGES/Echo.po index 39c6ce3786..5d2c1e6a71 100644 --- a/plugins/Echo/locale/id/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po index 69bc43dc5a..6934e095e2 100644 --- a/plugins/Echo/locale/lb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/lb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Luxembourgish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:21+0000\n" +"Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po index 1165b42b9b..f5925f4600 100644 --- a/plugins/Echo/locale/mk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po index 749c6e4e8c..99e2e1315e 100644 --- a/plugins/Echo/locale/nb/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po index 30b8a411a7..6651104cdd 100644 --- a/plugins/Echo/locale/nl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:13+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po index 8daae83868..e8a6383413 100644 --- a/plugins/Echo/locale/pt/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po index 4f4619c488..c1e877a977 100644 --- a/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/pt_BR/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:21+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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po b/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po index 1003e962eb..7507b96f19 100644 --- a/plugins/Echo/locale/ru/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po b/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po index 9ac2523899..ddbe08f97b 100644 --- a/plugins/Echo/locale/tl/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po b/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po index 1421d4469c..ef9273bdf9 100644 --- a/plugins/Echo/locale/uk/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po index 3d658cc18d..3d1017b1a9 100644 --- a/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po +++ b/plugins/Echo/locale/zh_CN/LC_MESSAGES/Echo.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Echo\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-echo\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailAuthentication/locale/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index e12c92354f..04609d1404 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 c5834acc95..15cf6c7489 100644 --- a/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/be-tarask/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Belarusian (Taraškievica orthography) \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:22+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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po index 80a7276e0f..dcc8e166ff 100644 --- a/plugins/EmailAuthentication/locale/br/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:22+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po index b5c5f6c938..d766a26311 100644 --- a/plugins/EmailAuthentication/locale/ca/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:22+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po index f506125c81..e5ee23b3d8 100644 --- a/plugins/EmailAuthentication/locale/de/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po index 5b05db70de..ada3ca4e06 100644 --- a/plugins/EmailAuthentication/locale/es/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po index e5305fb17a..4964d3250d 100644 --- a/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fi/LC_MESSAGES/EmailAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:14+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po index a174fbd178..569abba21e 100644 --- a/plugins/EmailAuthentication/locale/fr/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po index ae1e23697f..6e2dba3bd5 100644 --- a/plugins/EmailAuthentication/locale/he/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po index 0b591c84e2..055ae54d72 100644 --- a/plugins/EmailAuthentication/locale/ia/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po index 4b23451bb0..7336933fff 100644 --- a/plugins/EmailAuthentication/locale/id/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po index fdd29b1625..a730f123b9 100644 --- a/plugins/EmailAuthentication/locale/ja/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:22+0000\n" +"Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po index 24e56b9ef2..e130d2913c 100644 --- a/plugins/EmailAuthentication/locale/mk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po index f9558ab5fd..8fc5efa885 100644 --- a/plugins/EmailAuthentication/locale/nb/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:23+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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po index fa275a17a5..391d85e6d1 100644 --- a/plugins/EmailAuthentication/locale/nl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po index c47895e71b..56afcbabb6 100644 --- a/plugins/EmailAuthentication/locale/pt/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po index 552993add7..b5b7821d79 100644 --- a/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/pt_BR/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:23+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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po index 0abf6ad2ba..296037e334 100644 --- a/plugins/EmailAuthentication/locale/ru/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po index 5e18ccc8cd..2631f3dc0c 100644 --- a/plugins/EmailAuthentication/locale/tl/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po index 1c7d5ba396..4905547d6a 100644 --- a/plugins/EmailAuthentication/locale/uk/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po index 5d351f25b1..cc1ab264cc 100644 --- a/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po +++ b/plugins/EmailAuthentication/locale/zh_CN/LC_MESSAGES/EmailAuthentication.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:15+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-emailauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/EmailRegistration/locale/EmailRegistration.pot b/plugins/EmailRegistration/locale/EmailRegistration.pot index e09ad4bcb1..b584b4d8d8 100644 --- a/plugins/EmailRegistration/locale/EmailRegistration.pot +++ b/plugins/EmailRegistration/locale/EmailRegistration.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po index cca7e66ffd..5d4978a700 100644 --- a/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ar/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:17+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:25+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -86,7 +86,7 @@ msgstr "كلمتا السر غير متطابقتين." #. TRANS: Exception trown when using an invitation multiple times. msgid "Failed to register user." -msgstr "" +msgstr "فشل تسجيل المستخدم." #. TRANS: Subject for confirmation e-mail. #. TRANS: %s is the StatusNet sitename. @@ -178,7 +178,7 @@ msgstr "ليس عنوان بريد صالح." #. TRANS: %s is the StatusNet sitename. #, php-format msgid "Welcome to %s" -msgstr "" +msgstr "مرحبا بكم في %s" #. TRANS: Plugin description. msgid "Use email only for registration." diff --git a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po index 0dccfa3f1d..0f3274351d 100644 --- a/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ca/LC_MESSAGES/EmailRegistration.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:17+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po index 0fe214554c..71621011dc 100644 --- a/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/de/LC_MESSAGES/EmailRegistration.po @@ -1,6 +1,7 @@ # Translation of StatusNet - EmailRegistration to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: DaSch # Author: Giftpflanze # Author: Inkowik @@ -11,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:17+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -64,7 +65,6 @@ msgstr "" "deinem Postfach nach weiteren Instruktionen." #. TRANS: Client exception trown when trying to set password with an invalid confirmation code. -#, fuzzy msgid "No confirmation thing." msgstr "Kein Bestätigungscode." diff --git a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po index 44b60a8cfb..554a0c57cb 100644 --- a/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/fr/LC_MESSAGES/EmailRegistration.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -65,9 +65,8 @@ msgstr "" "boîte de courriel pour les instructions." #. TRANS: Client exception trown when trying to set password with an invalid confirmation code. -#, fuzzy msgid "No confirmation thing." -msgstr "Aucun code de confirmation." +msgstr "Aucun élément de confirmation." #. TRANS: Error text when trying to register without agreeing to the terms. msgid "You must accept the terms of service and privacy policy to register." diff --git a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po index d1563f43d6..1348d660db 100644 --- a/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/hu/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: Hungarian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:25+0000\n" +"Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po index af0a350774..e7a3b3acb1 100644 --- a/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/ia/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po index 874e7b9740..8f013c5571 100644 --- a/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/mk/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po index bfaaffaddb..1fbbecd6b9 100644 --- a/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/nl/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po index 85a34e93f8..de63b8c2d3 100644 --- a/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/sv/LC_MESSAGES/EmailRegistration.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:25+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po index b5647f59f2..414350f7b2 100644 --- a/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/tl/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po index 07b743533a..4067ed70ae 100644 --- a/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po +++ b/plugins/EmailRegistration/locale/uk/LC_MESSAGES/EmailRegistration.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailRegistration\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:18+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:42+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-emailregistration\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/EmailReminder/locale/EmailReminder.pot b/plugins/EmailReminder/locale/EmailReminder.pot index e43fff91c0..3c86d208dd 100644 --- a/plugins/EmailReminder/locale/EmailReminder.pot +++ b/plugins/EmailReminder/locale/EmailReminder.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po index a07c17c2f1..b49ac0ab22 100644 --- a/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/de/LC_MESSAGES/EmailReminder.po @@ -1,6 +1,7 @@ # Translation of StatusNet - EmailReminder to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Inkowik # -- # This file is distributed under the same license as the StatusNet package. @@ -9,25 +10,25 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:19+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Plugin description. msgid "Send email reminders for various things." -msgstr "" +msgstr "E-Mail-Erinnerungen für verschiedene Sachen schicken." #. TRANS: Server exception thrown when a reminder record could not be inserted into the database. msgid "Database error inserting reminder record." -msgstr "" +msgstr "Datenbankfehler beim Einfügen des Erinnerungsdatensatzes." #. TRANS: Subject for reminder e-mail. msgid "Reminder - please confirm your registration!" diff --git a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po index 5db525d91f..2c1a812f19 100644 --- a/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/ia/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:19+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po index f622e081cc..a020db55aa 100644 --- a/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/mk/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:19+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po index dac56abe8b..69909e2afd 100644 --- a/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/nl/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:19+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po index aad9c82b3f..70bcb98821 100644 --- a/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po +++ b/plugins/EmailReminder/locale/pt/LC_MESSAGES/EmailReminder.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailReminder\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:19+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-19 11:23:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-emailreminder\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index 055f215316..a848f6e48f 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po index 64f75920be..50adf58716 100644 --- a/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ca/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:20+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:27+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po index 817a245459..13eb8ff98e 100644 --- a/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/de/LC_MESSAGES/EmailSummary.po @@ -1,6 +1,7 @@ # Translation of StatusNet - EmailSummary to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Fujnky # Author: Giftpflanze # Author: MF-Warburg @@ -11,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:20+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -26,7 +27,7 @@ msgstr "" #. TRANS: Subject for e-mail. #, php-format msgid "Your latest updates from %s" -msgstr "" +msgstr "Deine neuesten Updates von %s" #. TRANS: Text in e-mail summary. #. TRANS: %1$s is the StatusNet sitename, %2$s is the recipient's profile name. diff --git a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po index e1bdaf40c1..6d7dab84c8 100644 --- a/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/ia/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:20+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po index b04bba20bc..86fa9b6700 100644 --- a/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/mk/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:20+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po index 95549c6a30..8d405415e9 100644 --- a/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/nl/LC_MESSAGES/EmailSummary.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:20+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po index e064e520bb..e05afb8f62 100644 --- a/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/tl/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:20+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-emailsummary\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po index 742731f277..4a7844c737 100644 --- a/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po +++ b/plugins/EmailSummary/locale/uk/LC_MESSAGES/EmailSummary.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - EmailSummary\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:20+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-07-01 11:18:46+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index 46232e08da..f54989d1c3 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,18 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +#: eventtimelist.php:90 +msgid "hour" +msgstr "" + +#: eventtimelist.php:91 +msgid "hrs" +msgstr "" + +#: eventtimelist.php:92 +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. #: Happening.php:125 msgid "Event already exists." @@ -40,6 +52,14 @@ msgid "" "$s " msgstr "" +#: timelist.php:73 +msgid "Unexpected form submission." +msgstr "" + +#: timelist.php:81 +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -102,7 +122,7 @@ msgstr "" #. TRANS: Page title after creating an event. #. TRANS: Page title after sending a notice. -#: newrsvp.php:163 cancelrsvp.php:158 newevent.php:234 +#: newrsvp.php:163 cancelrsvp.php:158 newevent.php:249 msgid "Event saved" msgstr "" @@ -141,137 +161,137 @@ msgid "Maybe" msgstr "" #. TRANS: Field label on event form. -#: eventform.php:92 +#: eventform.php:103 msgctxt "LABEL" msgid "Title" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:95 +#: eventform.php:106 msgid "Title of the event." msgstr "" #. TRANS: Field label on event form. -#: eventform.php:102 +#: eventform.php:117 msgctxt "LABEL" msgid "Start date" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:105 +#: eventform.php:120 msgid "Date the event starts." msgstr "" #. TRANS: Field label on event form. -#: eventform.php:112 +#: eventform.php:131 msgctxt "LABEL" msgid "Start time" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:115 +#: eventform.php:134 msgid "Time the event starts." msgstr "" #. TRANS: Field label on event form. -#: eventform.php:122 +#: eventform.php:144 msgctxt "LABEL" msgid "End date" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:125 +#: eventform.php:147 msgid "Date the event ends." msgstr "" #. TRANS: Field label on event form. -#: eventform.php:132 +#: eventform.php:163 msgctxt "LABEL" msgid "End time" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:135 +#: eventform.php:166 msgid "Time the event ends." msgstr "" #. TRANS: Field label on event form. -#: eventform.php:142 +#: eventform.php:175 msgctxt "LABEL" -msgid "Location" +msgid "Where?" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:145 +#: eventform.php:178 msgid "Event location." msgstr "" #. TRANS: Field label on event form. -#: eventform.php:152 +#: eventform.php:185 msgctxt "LABEL" msgid "URL" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:155 +#: eventform.php:188 msgid "URL for more information." msgstr "" #. TRANS: Field label on event form. -#: eventform.php:162 +#: eventform.php:195 msgctxt "LABEL" msgid "Description" msgstr "" #. TRANS: Field title on event form. -#: eventform.php:165 +#: eventform.php:198 msgid "Description of the event." msgstr "" #. TRANS: Button text to save an event.. -#: eventform.php:187 +#: eventform.php:220 msgctxt "BUTTON" msgid "Save" msgstr "" #. TRANS: Plugin description. -#: EventPlugin.php:135 +#: EventPlugin.php:139 msgid "Event invitations and RSVPs." msgstr "" #. TRANS: Title for event application. -#: EventPlugin.php:141 +#: EventPlugin.php:145 msgctxt "TITLE" msgid "Event" msgstr "" #. TRANS: Exception thrown when there are too many activity objects. -#: EventPlugin.php:169 +#: EventPlugin.php:173 msgid "Too many activity objects." msgstr "" #. TRANS: Exception thrown when event plugin comes across a non-event type object. -#: EventPlugin.php:176 +#: EventPlugin.php:180 msgid "Wrong type for object." msgstr "" #. TRANS: Exception thrown when trying to RSVP for an unknown event. -#: EventPlugin.php:200 +#: EventPlugin.php:204 msgid "RSVP for unknown event." msgstr "" #. TRANS: Exception thrown when event plugin comes across a undefined verb. -#: EventPlugin.php:206 +#: EventPlugin.php:210 msgid "Unknown verb for events." msgstr "" #. TRANS: Exception thrown when event plugin comes across a unknown object type. -#: EventPlugin.php:237 +#: EventPlugin.php:241 msgid "Unknown object type." msgstr "" #. TRANS: Exception thrown when referring to a notice that is not an event an in event context. -#: EventPlugin.php:244 +#: EventPlugin.php:248 msgid "Unknown event notice." msgstr "" @@ -389,65 +409,65 @@ msgid "Must be logged in to post a event." msgstr "" #. TRANS: Client exception thrown when trying to post an event without providing a title. -#: newevent.php:96 +#: newevent.php:98 msgid "Title required." msgstr "" #. TRANS: Client exception thrown when trying to post an event without providing a start date. -#: newevent.php:107 +#: newevent.php:109 msgid "Start date required." msgstr "" #. TRANS: Client exception thrown when trying to post an event without providing an end date. -#: newevent.php:120 +#: newevent.php:122 msgid "End date required." msgstr "" #. TRANS: Client exception thrown when trying to post an event with a date that cannot be processed. #. TRANS: %s is the data that could not be processed. -#: newevent.php:143 newevent.php:151 +#: newevent.php:145 newevent.php:152 #, php-format msgid "Could not parse date \"%s\"." msgstr "" #. TRANS: Client exception thrown when trying to post an event without providing a title. -#: newevent.php:188 +#: newevent.php:199 msgid "Event must have a title." msgstr "" #. TRANS: Client exception thrown when trying to post an event without providing a start time. -#: newevent.php:193 +#: newevent.php:204 msgid "Event must have a start time." msgstr "" #. TRANS: Client exception thrown when trying to post an event without providing an end time. -#: newevent.php:198 +#: newevent.php:209 msgid "Event must have an end time." msgstr "" #. TRANS: Field label for event description. -#: eventlistitem.php:97 +#: eventlistitem.php:117 msgid "Time:" msgstr "" #. TRANS: Field label for event description. -#: eventlistitem.php:118 +#: eventlistitem.php:138 msgid "Location:" msgstr "" #. TRANS: Field label for event description. -#: eventlistitem.php:126 +#: eventlistitem.php:146 msgid "Description:" msgstr "" #. TRANS: Field label for event description. -#: eventlistitem.php:135 +#: eventlistitem.php:155 msgid "Attending:" msgstr "" #. TRANS: RSVP counts. #. TRANS: %1$d, %2$d and %3$d are numbers of RSVPs. -#: eventlistitem.php:139 +#: eventlistitem.php:159 #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "" diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index 2e45d2907d..494fda2725 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/LC_MESSAGES/Event.po @@ -9,20 +9,30 @@ 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" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:32+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-POT-Import-Date: 2011-06-05 21:50:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + +#. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "" @@ -30,8 +40,11 @@ msgstr "" #. 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" +#. TRANS: Rendered event description. %1$s is a title, %2$s is start time, %3$s is start time, +#. TRANS: %4$s is end time, %5$s is end time, %6$s is location, %7$s is description. +#. TRANS: Class names should not be translated. #, php-format msgid "" "%1$s (%6$s): %7" "$s " msgstr "" +"%1$s %3$s - %5" +"$s (%6$s): %7" +"$s " + +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". +#. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. msgid "No such RSVP." msgstr "" #. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such Event." +#. TRANS: Client exception thrown when requesting a non-exsting event. +#. TRANS: Client exception thrown when referring to a non-existing event. +msgid "No such event." msgstr "" #. TRANS: Title for event. @@ -55,196 +81,335 @@ msgstr "" msgid "%1$s's RSVP for \"%2$s\"" msgstr "" +#. TRANS: Possible status for RSVP ("please respond") item. msgid "You will attend this event." -msgstr "" +msgstr "سوف تحضر هذا الحدث." +#. TRANS: Possible status for RSVP ("please respond") item. msgid "You will not attend this event." -msgstr "" +msgstr "لن تحضر هذا الحدث." +#. TRANS: Possible status for RSVP ("please respond") item. msgid "You might attend this event." -msgstr "" +msgstr "قد تحضر هذا الحدث." +#. TRANS: Button text to cancel responding to an RSVP ("please respond") item. msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" +#. TRANS: Title for RSVP ("please respond") action. +msgctxt "TITLE" msgid "New RSVP" msgstr "" -#. TRANS: Client exception thrown when referring to a non-existing event. -msgid "No such event." -msgstr "" - +#. TRANS: Client exception thrown when trying to RSVP ("please respond") while not logged in. +#. TRANS: Client exception thrown when trying tp RSVP ("please respond") while not logged in. msgid "You must be logged in to RSVP for an event." msgstr "" -#. TRANS: Page title after sending a notice. -msgid "Event saved" +#. TRANS: Client exception thrown when using an invalid value for RSVP ("please respond"). +msgid "Unknown submit value." msgstr "" -#, fuzzy -msgid "Cancel RSVP" -msgstr "ألغِ" +#. TRANS: Page title after creating an event. +#. TRANS: Page title after sending a notice. +msgid "Event saved" +msgstr "حُفظ الحدث" +#. TRANS: Title for RSVP ("please respond") action. +msgctxt "TITLE" +msgid "Cancel RSVP" +msgstr "" + +#. TRANS: Content for a deleted RSVP list item (RSVP stands for "please respond"). +msgid "Deleted." +msgstr "" + +#. TRANS: Field label on form to RSVP ("please respond") for an event. msgid "RSVP:" msgstr "" +#. TRANS: Button text for RSVP ("please respond") reply to confirm attendence. msgctxt "BUTTON" msgid "Yes" msgstr "نعم" +#. TRANS: Button text for RSVP ("please respond") reply to deny attendence. msgctxt "BUTTON" msgid "No" msgstr "لا" +#. TRANS: Button text for RSVP ("please respond") reply to indicate one might attend. msgctxt "BUTTON" msgid "Maybe" -msgstr "" +msgstr "ربما" +#. TRANS: Field label on event form. msgctxt "LABEL" msgid "Title" -msgstr "" +msgstr "العنوان" -msgid "Title of the event" -msgstr "" +#. TRANS: Field title on event form. +msgid "Title of the event." +msgstr "عنوان الحدث." +#. TRANS: Field label on event form. msgctxt "LABEL" msgid "Start date" -msgstr "" +msgstr "تاريخ البدء" -msgid "Date the event starts" -msgstr "" +#. TRANS: Field title on event form. +msgid "Date the event starts." +msgstr "تاريخ بدء الحدث." +#. TRANS: Field label on event form. msgctxt "LABEL" msgid "Start time" -msgstr "" +msgstr "وقت البدء" -msgid "Time the event starts" -msgstr "" +#. TRANS: Field title on event form. +msgid "Time the event starts." +msgstr "وقت بدء الحدث." +#. TRANS: Field label on event form. msgctxt "LABEL" msgid "End date" -msgstr "" +msgstr "تاريخ الانتهاء" -msgid "Date the event ends" -msgstr "" +#. TRANS: Field title on event form. +msgid "Date the event ends." +msgstr "تاريخ انتهاء الحدث." +#. TRANS: Field label on event form. msgctxt "LABEL" msgid "End time" -msgstr "" +msgstr "وقت الانتهاء" -msgid "Time the event ends" -msgstr "" +#. TRANS: Field title on event form. +msgid "Time the event ends." +msgstr "وقت نهاية الحدث." +#. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" +msgid "Where?" msgstr "" -msgid "Event location" -msgstr "" +#. TRANS: Field title on event form. +msgid "Event location." +msgstr "موقع الحدث." +#. TRANS: Field label on event form. msgctxt "LABEL" msgid "URL" -msgstr "" +msgstr "المسار" -msgid "URL for more information" -msgstr "" +#. TRANS: Field title on event form. +msgid "URL for more information." +msgstr "مسار مزيد من المعلومات" +#. TRANS: Field label on event form. msgctxt "LABEL" msgid "Description" -msgstr "" +msgstr "الوصف" -msgid "Description of the event" -msgstr "" +#. TRANS: Field title on event form. +msgid "Description of the event." +msgstr "وصف الحدث." +#. TRANS: Button text to save an event.. msgctxt "BUTTON" msgid "Save" msgstr "احفظ" +#. TRANS: Plugin description. msgid "Event invitations and RSVPs." msgstr "" +#. TRANS: Title for event application. +msgctxt "TITLE" msgid "Event" +msgstr "حدث" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." msgstr "" +#. TRANS: Exception thrown when event plugin comes across a non-event type object. +msgid "Wrong type for object." +msgstr "" + +#. TRANS: Exception thrown when trying to RSVP for an unknown event. +msgid "RSVP for unknown event." +msgstr "" + +#. TRANS: Exception thrown when event plugin comes across a undefined verb. +msgid "Unknown verb for events." +msgstr "" + +#. TRANS: Exception thrown when event plugin comes across a unknown object type. +msgid "Unknown object type." +msgstr "" + +#. TRANS: Exception thrown when referring to a notice that is not an event an in event context. +msgid "Unknown event notice." +msgstr "" + +#. TRANS: Client exception thrown when trying to save an already existing RSVP ("please respond"). +msgid "RSVP already exists." +msgstr "" + +#. TRANS: Exception thrown when requesting an undefined verb for RSVP. +#, php-format +msgid "Unknown verb \"%s\"." +msgstr "" + +#. TRANS: Exception thrown when requesting an undefined code for RSVP. +#, php-format +msgid "Unknown code \"%s\"." +msgstr "" + +#. TRANS: Server exception thrown when requesting a non-exsting notice for an RSVP ("please respond"). +#. TRANS: %s is the RSVP with the missing notice. +#, php-format +msgid "RSVP %s does not correspond to a notice in the database." +msgstr "" + +#. TRANS: Exception thrown when requesting a non-existing profile. +#. TRANS: %s is the ID of the non-existing profile. +#, php-format +msgid "No profile with ID %s." +msgstr "" + +#. TRANS: Exception thrown when requesting a non-existing event. +#. TRANS: %s is the ID of the non-existing event. +#, php-format +msgid "No event with ID %s." +msgstr "" + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s is attending %4$s." +msgstr "" +"%2$s سيحضر %4$s." + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s is not attending " +"%4$s." +msgstr "" +"%2$s لن يحضر %4$s." + +#. TRANS: HTML version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile URL, %2$s a profile name, +#. TRANS: %3$s is an event URL, %4$s an event title. +#, php-format +msgid "" +"%2$s might attend %4$s." +msgstr "" +"%2$s قد يحضر %4$s." + +#. TRANS: Exception thrown when requesting a user's RSVP status for a non-existing response code. +#. TRANS: %s is the non-existing response code. +#, php-format +msgid "Unknown response code %s." +msgstr "" + +#. TRANS: Used as event title when not event title is available. +#. TRANS: Used as: Username [is [not ] attending|might attend] an unknown event. +msgid "an unknown event" +msgstr "" + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s is attending %2$s." +msgstr "%1$s سوف يحضر %2$s" + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s is not attending %2$s." +msgstr "%1$s لن يحضر %2$s" + +#. TRANS: Plain text version of an RSVP ("please respond") status for a user. +#. TRANS: %1$s is a profile name, %2$s is an event title. +#, php-format +msgid "%1$s might attend %2$s." +msgstr "%1$s قد يحضر %2$s" + +#. TRANS: Title for new event form. +msgctxt "TITLE" +msgid "New event" +msgstr "حدث جديد" + +#. TRANS: Client exception thrown when trying to post an event while not logged in. +msgid "Must be logged in to post a event." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Title required." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing a start date. +msgid "Start date required." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing an end date. +msgid "End date required." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event with a date that cannot be processed. +#. TRANS: %s is the data that could not be processed. +#, php-format +msgid "Could not parse date \"%s\"." +msgstr "" + +#. TRANS: Client exception thrown when trying to post an event without providing a title. +msgid "Event must have a title." +msgstr "يجب أن يكون للحدث عنوانًا." + +#. TRANS: Client exception thrown when trying to post an event without providing a start time. +msgid "Event must have a start time." +msgstr "يجب أن يكون للحدث وقت بدء." + +#. TRANS: Client exception thrown when trying to post an event without providing an end time. +msgid "Event must have an end time." +msgstr "يجب أن يكون للحدث وقت انتهاء." + +#. TRANS: Field label for event description. msgid "Time:" -msgstr "" +msgstr "الوقت:" +#. TRANS: Field label for event description. msgid "Location:" -msgstr "" +msgstr "المكان:" +#. TRANS: Field label for event description. msgid "Description:" -msgstr "" +msgstr "الوصف:" +#. TRANS: Field label for event description. 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 "" - -#, 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 "" +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "المكان" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index e6565ab055..1a56a26f06 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:24+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "An darvoud zo anezhañ dija." @@ -42,6 +51,12 @@ msgid "" "$s " msgstr "" +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -173,8 +188,8 @@ msgstr "" #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Lec'hiadur" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -387,3 +402,7 @@ msgstr "" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ya : %1$d Nann : %2$d Marteze : %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Lec'hiadur" diff --git a/plugins/Event/locale/ca/LC_MESSAGES/Event.po b/plugins/Event/locale/ca/LC_MESSAGES/Event.po index f6a0a0e306..a458e7a16e 100644 --- a/plugins/Event/locale/ca/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ca/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:24+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "L'esdeveniment ja existeix." @@ -42,6 +51,12 @@ msgid "" "$s " msgstr "" +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -171,8 +186,8 @@ msgstr "" #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Ubicació" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -382,3 +397,7 @@ msgstr "Assistents:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Sí: %1$d No: %2$d Potser: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Ubicació" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index bf933c8ac3..41d5152d56 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:24+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Ereignis existiert bereits." @@ -46,6 +55,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -175,8 +190,8 @@ msgstr "Zeit, zu der das Ereignis zu Ende ist." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Örtlichkeit" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -392,3 +407,7 @@ msgstr "Teilnehmende:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ja: %1$d Nein: %2$d Vielleicht: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Örtlichkeit" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index e86bf6a6e4..2ac87cf9dc 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -13,18 +13,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Cet événement existe déjà." @@ -50,6 +59,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -179,8 +194,8 @@ msgstr "Heure de fin de l'événement." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Emplacement" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -396,3 +411,7 @@ msgstr "Participants :" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Oui : %1$d Non : %2$d Peut-être : %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Emplacement" diff --git a/plugins/Event/locale/hu/LC_MESSAGES/Event.po b/plugins/Event/locale/hu/LC_MESSAGES/Event.po index bb13e58523..77af4d6fd9 100644 --- a/plugins/Event/locale/hu/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/hu/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Hungarian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "" @@ -42,6 +51,12 @@ msgid "" "$s " msgstr "" +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -171,8 +186,8 @@ msgstr "Az esemény befejezésének ideje." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Helyszín" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -382,3 +397,7 @@ msgstr "" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Helyszín" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index b1b79467ba..e67f14d98d 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Le evento ja existe." @@ -46,6 +55,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -175,8 +190,8 @@ msgstr "Le hora a que le evento fini." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Loco" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -392,3 +407,7 @@ msgstr "Presente:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Si: %1$d No: %2$d Forsan: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Loco" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 37b2cd13b9..91df5a4527 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Настанот веќе постои." @@ -46,6 +55,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -175,8 +190,8 @@ msgstr "Во колку часот завршува настанот." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Место" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -392,3 +407,7 @@ msgstr "Присуство:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Да: %1$d Не: %2$d Можеби: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Место" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index e0649552e9..d4d839fde9 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=1; plural=0;\n" +msgid "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Acara sudah wujud." @@ -46,6 +55,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -175,8 +190,8 @@ msgstr "Waktu acara berakhir." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Lokasi" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -392,3 +407,7 @@ msgstr "Hadir:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ya: %1$d Tidak: %2$d Mungkin: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Lokasi" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index e791e0b457..08f19cedd6 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,18 +10,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Evenement bestaat al." @@ -47,6 +56,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -177,8 +192,8 @@ msgstr "Tijd waarop het evenement eindigt." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Locatie" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -396,3 +411,7 @@ msgstr "Aanwezig:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ja: %1$d Nee: %2$d Misschien: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Locatie" diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index a4c1fb6f2c..1aecf44461 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +msgid "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "O evento já existe." @@ -42,6 +51,12 @@ msgid "" "$s " msgstr "" +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -171,8 +186,8 @@ msgstr "Hora a que o evento termina." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Local" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -382,3 +397,7 @@ msgstr "" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Local" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index e4e29a31f7..ff20c2a5c8 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,18 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Umiiral na ang kaganapan." @@ -46,6 +55,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -176,8 +191,8 @@ msgstr "Oras ng pagwawakas ng kaganapan." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Kinalalagyan" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -395,3 +410,7 @@ msgstr "Dadalo:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Oo: %1$d Hindi: %2$d Baka: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Kinalalagyan" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index 72ebe1f569..c949f1475b 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,19 +9,28 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:25+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 "hour" +msgstr "" + +msgid "hrs" +msgstr "" + +msgid "mins" +msgstr "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Подія вже існує." @@ -47,6 +56,12 @@ msgstr "" "$s (%6$s): %7" "$s " +msgid "Unexpected form submission." +msgstr "" + +msgid "This action is AJAX only." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". #. TRANS: Client exception thrown when referring to a non-existing RSVP ("please respond") item. @@ -178,8 +193,8 @@ msgstr "Час закінчення заходу." #. TRANS: Field label on event form. msgctxt "LABEL" -msgid "Location" -msgstr "Розташування" +msgid "Where?" +msgstr "" #. TRANS: Field title on event form. msgid "Event location." @@ -395,3 +410,7 @@ msgstr "Присутні:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Так: %1$d Ні: %2$d Можливо: %3$d" + +#~ msgctxt "LABEL" +#~ msgid "Location" +#~ msgstr "Розташування" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index 9817b28a52..cba9b51536 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po new file mode 100644 index 0000000000..3fe7ec8e83 --- /dev/null +++ b/plugins/ExtendedProfile/locale/ar/LC_MESSAGES/ExtendedProfile.po @@ -0,0 +1,233 @@ +# Translation of StatusNet - ExtendedProfile 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 - ExtendedProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-extendedprofile\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Title for extended profile settings. +msgid "Extended profile settings" +msgstr "" + +#. TRANS: Usage instructions for profile settings. +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" + +#. 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 "" + +#. TRANS: Message given submitting a form with an unknown action. +msgid "Unexpected form submission." +msgstr "" + +#. TRANS: Success message after saving extended profile details. +msgid "Details saved." +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 "" + +#. 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 "" + +#. TRANS: Exception thrown when entering an invalid URL. +#. TRANS: %s is the invalid URL. +#, php-format +msgid "Invalid URL: %s." +msgstr "" + +#. TRANS: Server error displayed when a field could not be saved in the database. +msgid "Could not save profile details." +msgstr "" + +#. TRANS: Validation error in form for profile settings. +#. TRANS: %s is an invalid tag. +#, php-format +msgid "Invalid tag: \"%s\"." +msgstr "" + +#. TRANS: Server error thrown when user profile settings could not be saved. +msgid "Could not save profile." +msgstr "" + +#. TRANS: Server error thrown when user profile settings tags could not be saved. +msgid "Could not save tags." +msgstr "" + +#. TRANS: Link title for link on user profile. +msgid "Edit extended profile settings" +msgstr "" + +#. TRANS: Link text for link on user profile. +msgid "Edit" +msgstr "عدل" + +#. TRANS: Plugin description. +msgid "UI extensions for additional profile fields." +msgstr "" + +#. TRANS: Link text on user profile page leading to extended profile page. +msgid "More details..." +msgstr "مزيد من التفاصيل..." + +#. TRANS: Title for extended profile entry deletion dialog. +msgid "Confirmation Required" +msgstr "" + +#. TRANS: Confirmation text for extended profile entry deletion dialog. +msgid "Really delete this entry?" +msgstr "أأحذف هذه المدخلة حقا؟" + +#. TRANS: Value between parentheses (phone number, website, or IM address). +#, php-format +msgid "(%s)" +msgstr "(%s)" + +#. TRANS: Field label in experience area of extended profile. +#. TRANS: Field label in experience edit area of extended profile (which company does one work for). +msgid "Company" +msgstr "الشركة" + +#. TRANS: Field label in extended profile (when did one start a position or education). +msgid "Start" +msgstr "" + +#. TRANS: Field label in extended profile (when did one end a position or education). +msgid "End" +msgstr "" + +#. TRANS: Field value in experience area of extended profile (one still holds a position). +msgid "(Current)" +msgstr "" + +#. TRANS: Checkbox label in experience edit area of extended profile (one still works at a company). +msgid "Current" +msgstr "" + +#. TRANS: Field label in education area of extended profile. +#. TRANS: Field label in education edit area of extended profile. +#. TRANS: Field label for extended profile properties. +msgid "Institution" +msgstr "المنشأة" + +#. TRANS: Field label in extended profile for specifying an academic degree. +msgid "Degree" +msgstr "" + +#. TRANS: Field label in education area of extended profile. +#. TRANS: Field label in education edit area of extended profile. +msgid "Description" +msgstr "الوصف" + +#. TRANS: Link description in extended profile page to add another profile element. +msgid "Add another item" +msgstr "" + +#. TRANS: Field label for undefined field in extended profile. +#, php-format +msgid "TYPE: %s" +msgstr "" + +#. TRANS: Button text for saving extended profile properties. +msgctxt "BUTTON" +msgid "Save" +msgstr "احفظ" + +#. TRANS: . +#. TRANS: Button title for saving extended profile properties. +msgid "Save details" +msgstr "احفظ التفاصيل" + +#. TRANS: Field label for extended profile properties. +msgid "Phone" +msgstr "" + +#. TRANS: Field label for extended profile properties (Instant Messaging). +msgid "IM" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Website" +msgstr "موقع الوب" + +#. TRANS: Field label for extended profile properties. +msgid "Employer" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Personal" +msgstr "معلومات شخصية" + +#. TRANS: Field label for extended profile properties. +msgid "Full name" +msgstr "الاسم الكامل" + +#. TRANS: Field label for extended profile properties. +msgid "Title" +msgstr "المُسمى" + +#. TRANS: Field label for extended profile properties. +msgid "Manager" +msgstr "" + +#. TRANS: Field label for extended profile properties. +msgid "Location" +msgstr "المكان" + +#. TRANS: Field label for extended profile properties. +msgid "Bio" +msgstr "السيرة" + +#. TRANS: Field label for extended profile properties. +msgid "Tags" +msgstr "الوسوم" + +#. TRANS: Field label for extended profile properties. +msgid "Contact" +msgstr "معلومات الاتصال" + +#. TRANS: Field label for extended profile properties. +msgid "Birthday" +msgstr "عيد الميلاد" + +#. TRANS: Field label for extended profile properties. +msgid "Spouse's name" +msgstr "اسم الزوج" + +#. TRANS: Field label for extended profile properties. +msgid "Kids' names" +msgstr "أسماء الأطفال" + +#. TRANS: Field label for extended profile properties. +msgid "Work experience" +msgstr "الخبرات المهنية" + +#. TRANS: Field label for extended profile properties. +msgid "Education" +msgstr "التعليم" diff --git a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po index af1cde80e4..0699410b30 100644 --- a/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/br/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:28+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po index d42832833d..5fa387d156 100644 --- a/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ca/LC_MESSAGES/ExtendedProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:28+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:36+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po index ec6531c794..39196e507c 100644 --- a/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/de/LC_MESSAGES/ExtendedProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:28+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po index 64fe9e3d6f..acea534c26 100644 --- a/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/fr/LC_MESSAGES/ExtendedProfile.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po index e9fcfa8812..10cec73cd2 100644 --- a/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/ia/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po index 3406a9b232..9f85871876 100644 --- a/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/mk/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po index 66f9e54ce9..f81382b5f3 100644 --- a/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/nl/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po index 752d407e2d..a27c196f95 100644 --- a/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/sv/LC_MESSAGES/ExtendedProfile.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:36+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po index ec3ae62a6f..212c4bb1e6 100644 --- a/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/te/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: Telugu \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po index 29eb9016ff..a1b5e9088e 100644 --- a/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/tl/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po index e7fcfb4e3b..d63312e81a 100644 --- a/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po +++ b/plugins/ExtendedProfile/locale/uk/LC_MESSAGES/ExtendedProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ExtendedProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:29+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-extendedprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index 2209800df3..90df3bfd03 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po index c1ac1011e9..82fcbc7c5d 100644 --- a/plugins/FacebookBridge/locale/ar/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ar/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:33+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -25,31 +25,29 @@ msgstr "" #. TRANS: Client error displayed when trying to login while already logged in. msgid "Already logged in." -msgstr "" +msgstr "والج بالفعل." #. TRANS: Form instructions. msgid "Login with your Facebook Account" -msgstr "" +msgstr "لُج بحسابك على فيسبك" #. TRANS: Page title. #. TRANS: Alt text for "Login with Facebook" image. msgid "Login with Facebook" -msgstr "" +msgstr "لُج بفيسبك" #. TRANS: Title for "Login with Facebook" image. -#, fuzzy msgid "Login with Facebook." -msgstr "لُج أو سجّل باستخدام فيسبك" +msgstr "لُج بفيسبك." #. TRANS: Title for Facebook administration panel. -#, fuzzy msgctxt "TITLE" msgid "Facebook integration settings" -msgstr "ضبط تكامل فيسبك" +msgstr "إعدادات تكامل فيسبك" #. TRANS: Instruction for Facebook administration panel. msgid "Facebook integration settings" -msgstr "" +msgstr "إعدادات تكامل فيسبك" #. TRANS: Client error displayed when providing too long a Facebook application ID. msgid "Invalid Facebook ID. Maximum length is 255 characters." @@ -86,16 +84,14 @@ msgid "Save" msgstr "احفظ" #. TRANS: Button title to save Facebook integration settings. -#, fuzzy msgid "Save Facebook settings." -msgstr "احفظ إعدادات فيسبك" +msgstr "احفظ إعدادات فيسبك." #. 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 "" #. TRANS: Page title for Facebook settings. -#, fuzzy msgctxt "TITLE" msgid "Facebook settings" msgstr "إعدادات فيسبك" @@ -126,7 +122,7 @@ msgid "" "Disconnecting your Faceboook would make it impossible to log in! Please [set " "a password](%s) first." msgstr "" -"قطع اتصال حسابك بفيسبك سيجعل دخولك مستحيلا! الرجاء [ضبط كلمة سر](%s) أولا." +"قطع اتصال حسابك بفيسبك سيجعل دخولك مستحيلا! الرجاء [تعيين كلمة سر](%s) أولا." #. TRANS: Message displayed when initiating disconnect of a StatusNet user #. TRANS: from a Facebook account. %1$s is the StatusNet site name. @@ -152,9 +148,8 @@ msgid "Sync preferences saved." msgstr "حُفظت تفضيلات المزامنة." #. TRANS: Server error displayed when deleting the link to a Facebook account fails. -#, fuzzy msgid "Could not delete link to Facebook." -msgstr "تعذر حذف وصلة فيسبك." +msgstr "تعذر حذف ارتباط فيسبك." #. TRANS: Confirmation message. StatusNet account was unlinked from Facebook. msgid "You have disconnected from Facebook." @@ -237,7 +232,7 @@ msgstr "" #. TRANS: Field label. msgid "Existing nickname" -msgstr "" +msgstr "الاسم المستعار الموجود" #. TRANS: Field label. msgid "Password" @@ -280,19 +275,16 @@ msgid "Facebook" msgstr "فيسبك" #. TRANS: Menu title for "Facebook" login. -#, fuzzy msgid "Login or register using Facebook." -msgstr "لُج أو سجّل باستخدام فيسبك" +msgstr "لُج أو سجّل باستخدام فيسبك." #. TRANS: Menu title for "Facebook" in administration panel. -#, fuzzy msgid "Facebook integration configuration." -msgstr "ضبط تكامل فيسبك" +msgstr "ضبط تكامل فيسبك." #. TRANS: Menu title for "Facebook" in user settings. -#, fuzzy msgid "Facebook settings." -msgstr "إعدادات فيسبك" +msgstr "إعدادات فيسبك." #. TRANS: Plugin description. msgid "A plugin for integrating StatusNet with Facebook." diff --git a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po index 4d811b707b..f809ce28a6 100644 --- a/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/br/LC_MESSAGES/FacebookBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:33+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po index 5a8ce4747e..ee303292cb 100644 --- a/plugins/FacebookBridge/locale/ca/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po index d4a5a27f45..18b7412ca9 100644 --- a/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/de/LC_MESSAGES/FacebookBridge.po @@ -1,6 +1,7 @@ # Translation of StatusNet - FacebookBridge to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Fujnky # Author: Giftpflanze # Author: Kghbln @@ -12,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -75,9 +76,8 @@ msgid "Secret" msgstr "Geheimnis" #. TRANS: Field title for Facebook secret key. -#, fuzzy msgid "Application secret." -msgstr "Anwendungs-Geheimnis." +msgstr "Geheimer Schlüssel der Anwendung" #. TRANS: Button text to save Facebook integration settings. #. TRANS: Submit button to save synchronisation settings. diff --git a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po index f2e2f4fcd5..3fc2faca63 100644 --- a/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fr/LC_MESSAGES/FacebookBridge.po @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po index 910a520419..cbd73ce1d0 100644 --- a/plugins/FacebookBridge/locale/fur/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/fur/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: Friulian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po index b10c18597a..ff748630dd 100644 --- a/plugins/FacebookBridge/locale/ia/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po index 5d2c04fb91..7bb1589a47 100644 --- a/plugins/FacebookBridge/locale/mg/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mg/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: Malagasy \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:41+0000\n" +"Language-Team: Malagasy \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mg\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po index 83310cc735..5b599d477d 100644 --- a/plugins/FacebookBridge/locale/mk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po index d52ee978ac..447f812a7a 100644 --- a/plugins/FacebookBridge/locale/nl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:34+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po index e29577290a..fd3035ceb8 100644 --- a/plugins/FacebookBridge/locale/tl/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po index 0f01f6a7ce..22f3a3ef54 100644 --- a/plugins/FacebookBridge/locale/uk/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po index 299ac24cd1..41204283ec 100644 --- a/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po +++ b/plugins/FacebookBridge/locale/zh_CN/LC_MESSAGES/FacebookBridge.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FacebookBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebookbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FirePHP/locale/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index 90247eb03f..bab0456f6b 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po index e7c2f3eb23..3878d280b4 100644 --- a/plugins/FirePHP/locale/ca/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po index e1b4e9cfc4..f51287b563 100644 --- a/plugins/FirePHP/locale/de/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po index fcd289ad35..2b22f687c8 100644 --- a/plugins/FirePHP/locale/es/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po index 323030f91d..0b4c886946 100644 --- a/plugins/FirePHP/locale/fi/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po index ada4eddacf..707ec04465 100644 --- a/plugins/FirePHP/locale/fr/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po index fed6564ccf..883f0c9d00 100644 --- a/plugins/FirePHP/locale/he/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po index b9fb8ddafa..b54a4dda91 100644 --- a/plugins/FirePHP/locale/ia/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po index 9a0d52be5c..cc90ce0f37 100644 --- a/plugins/FirePHP/locale/id/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:35+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po index bd55e5a739..71e6a58e19 100644 --- a/plugins/FirePHP/locale/ja/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po index c05bc61145..778e078f42 100644 --- a/plugins/FirePHP/locale/mk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po index 1071343f58..e8f402c92c 100644 --- a/plugins/FirePHP/locale/nb/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po index c8b4c78c34..2a6b3c3edd 100644 --- a/plugins/FirePHP/locale/nl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po index 8685d3f9cc..c14e69efb2 100644 --- a/plugins/FirePHP/locale/pt/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po index 856c691e66..eace6245f0 100644 --- a/plugins/FirePHP/locale/ru/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po index 9af40c96ff..9f8ad0014c 100644 --- a/plugins/FirePHP/locale/tl/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po index de453a1636..32788b0851 100644 --- a/plugins/FirePHP/locale/uk/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po index b3f2e30b17..719b1cf447 100644 --- a/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po +++ b/plugins/FirePHP/locale/zh_CN/LC_MESSAGES/FirePHP.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FirePHP\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-firephp\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/FollowEveryone/locale/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index 1ad2f842f7..603ecb0d35 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 d3633e836c..3c07f3db41 100644 --- a/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/de/LC_MESSAGES/FollowEveryone.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:36+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po index 927640df08..1a5008d7f0 100644 --- a/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fi/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po index 9076aa29ec..3b530eeb3b 100644 --- a/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/fr/LC_MESSAGES/FollowEveryone.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po index e16f44fcb4..6ab62c999d 100644 --- a/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/he/LC_MESSAGES/FollowEveryone.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po index c3f33615c4..0986e680a4 100644 --- a/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ia/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po index d25b71f5df..4de3b6fe31 100644 --- a/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/mk/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po index 1321e0fdad..a2e91bdff7 100644 --- a/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/nl/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po index a3819ee773..a80f3d8015 100644 --- a/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/pt/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po index ecabdc576a..d610acdde8 100644 --- a/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/ru/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po index 3a65b50066..186d7f792b 100644 --- a/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/tl/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-followeveryone\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po index 9903458fd6..ba6f46d960 100644 --- a/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po +++ b/plugins/FollowEveryone/locale/uk/LC_MESSAGES/FollowEveryone.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - FollowEveryone\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/ForceGroup/locale/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index 69c0198135..df6c9a75d5 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 ab7e1ae482..7ce25d059e 100644 --- a/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/br/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:37+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po index ff83d0378a..ac683643e0 100644 --- a/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/de/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po index 0a4e95489f..617a875679 100644 --- a/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/es/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po index ae9fa8792b..ebc766ca80 100644 --- a/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/fr/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po index 0eab6b27f1..4e8ce5a7c9 100644 --- a/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/he/LC_MESSAGES/ForceGroup.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po index 51c18e734d..a522797c71 100644 --- a/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/ia/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po index 46e013365e..107377d33d 100644 --- a/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/id/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po index 995bc09816..d1779602c1 100644 --- a/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/mk/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po index a6329c828a..8a1a35d6b5 100644 --- a/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/nl/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po index a7050bbce3..4d0e65538c 100644 --- a/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/pt/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po index f5db1a800f..90d8a8d71d 100644 --- a/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/te/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Telugu \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:44+0000\n" +"Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po index b513fdbb64..d30e06429b 100644 --- a/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/tl/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po index 0ead92db9f..8cc52dbab6 100644 --- a/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po +++ b/plugins/ForceGroup/locale/uk/LC_MESSAGES/ForceGroup.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ForceGroup\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:38+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-forcegroup\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GeoURL/locale/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 5384ef180d..83cf135aa2 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 5673c7e1ec..05f291104d 100644 --- a/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ca/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:46+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po index 33b93ead00..17349a7f92 100644 --- a/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/de/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po index b4f340e32f..d19ea6c704 100644 --- a/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/eo/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Esperanto \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:46+0000\n" +"Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po index c07e446f56..c1ae7d8a77 100644 --- a/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/es/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po index a169293dc0..f8a9d890db 100644 --- a/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fi/LC_MESSAGES/GeoURL.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:46+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po index e816444163..9d634e84f1 100644 --- a/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/fr/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po index 6261d6864b..fd6a680f14 100644 --- a/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/he/LC_MESSAGES/GeoURL.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po index 982bde6909..67e53c33a0 100644 --- a/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ia/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po index 54a0f4972e..6b7bea32a5 100644 --- a/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/id/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po index 388d132bd7..a7cedcb9ce 100644 --- a/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/mk/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po index c4dc898983..a40171f5bd 100644 --- a/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nb/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po index f400327de1..0d5b2af0ab 100644 --- a/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/nl/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po index b0366e3de7..50485a828b 100644 --- a/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pl/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Polish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:46+0000\n" +"Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po index cb0aa5fe96..255a3eade4 100644 --- a/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/pt/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po index fc1d258455..518a793fe7 100644 --- a/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/ru/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po index 69f366deba..0a071e6e7f 100644 --- a/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/sv/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po index c992a014a7..d224ee4b17 100644 --- a/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/tl/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po index cfb4b27649..8bf62cec34 100644 --- a/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po +++ b/plugins/GeoURL/locale/uk/LC_MESSAGES/GeoURL.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GeoURL\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geourl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Geonames/locale/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 07b5499c59..410ba41148 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po index 77521c3a03..c6c4ab0d76 100644 --- a/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/de/LC_MESSAGES/Geonames.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po index dadd267cc8..03d2238f4b 100644 --- a/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fi/LC_MESSAGES/Geonames.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po index 418203aaf5..83e5b17e5f 100644 --- a/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/fr/LC_MESSAGES/Geonames.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Geonames\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po index 6d1086cdae..b17aa446be 100644 --- a/plugins/Geonames/locale/ia/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po index bf09c8a2ba..48d41f7019 100644 --- a/plugins/Geonames/locale/mk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po index a014e8aae5..e8aebccd3b 100644 --- a/plugins/Geonames/locale/nl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po index 56577af97f..14f24a5e83 100644 --- a/plugins/Geonames/locale/sv/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:45+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po index acdeabe2b9..daa1e1ea92 100644 --- a/plugins/Geonames/locale/tl/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:39+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po b/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po index 30fc43b9d6..fd5f3f2eaa 100644 --- a/plugins/Geonames/locale/uk/LC_MESSAGES/Geonames.po +++ b/plugins/Geonames/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:40+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-geonames\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index c5db8a8773..07863e23d9 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 bf398b6b8f..82dec919ed 100644 --- a/plugins/GoogleAnalytics/locale/br/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po index 35d06a440e..232f27b9ae 100644 --- a/plugins/GoogleAnalytics/locale/de/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po index d9a965c830..5f02dcc2ab 100644 --- a/plugins/GoogleAnalytics/locale/es/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po index 9526d1bf67..cb1480a43b 100644 --- a/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fi/LC_MESSAGES/GoogleAnalytics.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po index 5078e5954a..e5eb12d480 100644 --- a/plugins/GoogleAnalytics/locale/fr/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:41+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po index f399b7b281..66256db192 100644 --- a/plugins/GoogleAnalytics/locale/he/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po index 2a78a44fb4..00852d0a59 100644 --- a/plugins/GoogleAnalytics/locale/ia/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po index 2a05cc76a6..232c279eb2 100644 --- a/plugins/GoogleAnalytics/locale/id/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po index e98819bfb7..605d6e2111 100644 --- a/plugins/GoogleAnalytics/locale/mk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po index 26c4750a51..aa8f0ae7e0 100644 --- a/plugins/GoogleAnalytics/locale/nb/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po index 687cae144a..63b9a9bed2 100644 --- a/plugins/GoogleAnalytics/locale/nl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po index 55aa7adeef..d3e5b2be1c 100644 --- a/plugins/GoogleAnalytics/locale/pt/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po index 72ffea3525..17661fda7c 100644 --- a/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/pt_BR/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:48+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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po index d6f725488c..c51d183fe9 100644 --- a/plugins/GoogleAnalytics/locale/ru/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po index 4b7df04851..5ab0396742 100644 --- a/plugins/GoogleAnalytics/locale/sv/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po index f46d5280a1..ecc75e69ac 100644 --- a/plugins/GoogleAnalytics/locale/tl/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po index 386c8b868d..72a758fa49 100644 --- a/plugins/GoogleAnalytics/locale/uk/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po index fc3c253141..d0fbdff689 100644 --- a/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po +++ b/plugins/GoogleAnalytics/locale/zh_CN/LC_MESSAGES/GoogleAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GoogleAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:42+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-18 16:19:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-googleanalytics\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Gravatar/locale/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index 167df2d403..bcaa49679b 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 4052bbe13f..6b57db5f8e 100644 --- a/plugins/Gravatar/locale/ca/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po index 31776b8ff0..eb40cb87e9 100644 --- a/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/de/LC_MESSAGES/Gravatar.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po index 627fac7d19..ff574b850f 100644 --- a/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/es/LC_MESSAGES/Gravatar.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po index 20560ba7b5..94ea92f6da 100644 --- a/plugins/Gravatar/locale/fr/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po index 410750ed00..46be36610d 100644 --- a/plugins/Gravatar/locale/he/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po index 32ebaa5162..5449eba463 100644 --- a/plugins/Gravatar/locale/ia/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po index 8be8181f7c..2122ff9ab4 100644 --- a/plugins/Gravatar/locale/mk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po index b834d43292..43dcbc4658 100644 --- a/plugins/Gravatar/locale/nl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po index 0d384ffeeb..5083d3675c 100644 --- a/plugins/Gravatar/locale/pl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Polish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:48+0000\n" +"Language-Team: Polish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " diff --git a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po index 7049857c93..0e9a07e949 100644 --- a/plugins/Gravatar/locale/pt/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po index 362cb93d89..2d58338d1d 100644 --- a/plugins/Gravatar/locale/tl/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po index 7839dcd262..75b8402767 100644 --- a/plugins/Gravatar/locale/uk/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:43+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po index 19c3e4bf79..1be63ca251 100644 --- a/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po +++ b/plugins/Gravatar/locale/zh_CN/LC_MESSAGES/Gravatar.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Gravatar\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-gravatar\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/GroupFavorited/locale/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index c62acc09c2..e501714931 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..d977a095b3 --- /dev/null +++ b/plugins/GroupFavorited/locale/ar/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,50 @@ +# Translation of StatusNet - GroupFavorited 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 - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:49+0000\n" +"Language-Team: Arabic \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Menu item in the group navigation page. +msgctxt "MENU" +msgid "Popular" +msgstr "محبوبة" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "إشعارات محبوبة في مجموعة %s" + +#. TRANS: Plugin description. +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" + +#. TRANS: %s is a group name. +#, php-format +msgid "Popular posts in %s group" +msgstr "" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "" diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po index 0a113c1f74..9db652a923 100644 --- a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po index a4ce3818a6..5dad972785 100644 --- a/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ca/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:49+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po index fae431cdf1..a4cfe2c5f6 100644 --- a/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/de/LC_MESSAGES/GroupFavorited.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po index ba9bb3ff6d..debd2f2d38 100644 --- a/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/es/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po index d8a8544593..a791e93383 100644 --- a/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/fr/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po index afdfedc9e7..571a82fe64 100644 --- a/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ia/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po index d4d884e856..ca983aac15 100644 --- a/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/mk/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po index 98fb30de79..7e3a9952f2 100644 --- a/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/nl/LC_MESSAGES/GroupFavorited.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:44+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po index f6c141bca2..26e8299e59 100644 --- a/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/ru/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:45+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po index aa5c1a9e00..073c8718bd 100644 --- a/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/te/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:45+0000\n" -"Language-Team: Telugu \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:50+0000\n" +"Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po index a854157d5a..b360f96e34 100644 --- a/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/tl/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:45+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po index 38e797d727..24ea6a6bd0 100644 --- a/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po +++ b/plugins/GroupFavorited/locale/uk/LC_MESSAGES/GroupFavorited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupFavorited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:45+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:17+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-groupfavorited\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index a0aa6b6cda..6ad3aab603 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po new file mode 100644 index 0000000000..91e97e8d4f --- /dev/null +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -0,0 +1,294 @@ +# Translation of StatusNet - GroupPrivateMessage 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 - GroupPrivateMessage\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:18+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Client exception thrown when trying to send a private group message while not logged in. +msgid "Must be logged in." +msgstr "" + +#. TRANS: Exception thrown when user %s is not allowed to send a private group message. +#. TRANS: Exception thrown when trying to send group private message without having the right to do that. +#. TRANS: %s is a user nickname. +#, php-format +msgid "User %s is not allowed to send private messages." +msgstr "" + +#. TRANS: Client exception thrown when trying to send a private group message to a non-existing group. +#. TRANS: Client exception thrown when trying to view group inbox for non-existing group. +msgid "No such group." +msgstr "لا مجموعة كهذه." + +#. TRANS: Title after sending a private group message. +msgid "Message sent" +msgstr "أُرسلت الرسالة" + +#. TRANS: Succes text after sending a direct message to group %s. +#, php-format +msgid "Direct message to %s sent." +msgstr "تم إرسال رسالة مباشرة إلى %s." + +#. TRANS: Title of form for new private group message. +#, php-format +msgid "New message to group %s" +msgstr "رسالة جديدة لمجموعة %s" + +#. TRANS: Subject for direct-message notification email. +#. 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 "رسالة جديدة من %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, +#. 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 "" +"أرسل %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" + +#. TRANS: Menu item in group page. +msgctxt "MENU" +msgid "Inbox" +msgstr "صندوق الوارد" + +#. TRANS: Menu title in group page. +msgid "Private messages for this group." +msgstr "الرسائل الخاصة بهذه المجموعة." + +#. TRANS: Dropdown label in group settings page for if group allows private messages. +msgid "Private messages" +msgstr "الرسائل الخاصة" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Sometimes" +msgstr "أحيانًا" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Always" +msgstr "دائمًا" + +#. TRANS: Dropdown option in group settings page for allowing private messages. +msgid "Never" +msgstr "مطلقا" + +#. TRANS: Dropdown title in group settings page for if group allows private messages. +msgid "Whether to allow private messages to this group." +msgstr "السماح بالرسائل الخاصة لهذه المجموعة." + +#. TRANS: Dropdown label in group settings page for who can send private messages to the group. +msgid "Private senders" +msgstr "" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Everyone" +msgstr "الجميع" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Member" +msgstr "الأعضاء" + +#. TRANS: Dropdown option in group settings page for who can send private messages. +msgid "Admin" +msgstr "الإداريون" + +#. TRANS: Dropdown title in group settings page for who can send private messages to the group. +msgid "Who can send private messages to the group." +msgstr "من يستطيع إرسال رسائل خاصة للمجموعة." + +#. TRANS: Title for action in group actions list. +msgid "Send a direct message to this group." +msgstr "" + +#. TRANS: Link text for action in group actions list to send a private message to a group. +msgctxt "LINKTEXT" +msgid "Message" +msgstr "راسل" + +#. TRANS: Client exception thrown when a private group message has to be forced. +msgid "Forced notice to private group message." +msgstr "" + +#. TRANS: Indicator on the group page that the group is (essentially) private. +msgid "Private" +msgstr "خاص" + +#. TRANS: Plugin description. +msgid "Allow posting private messages to groups." +msgstr "" + +#. TRANS: Client exception thrown when trying to view group inbox while not logged in. +msgid "Only for logged-in users." +msgstr "" + +#. TRANS: Client exception thrown when trying to view group inbox while not a member. +msgid "Only for members." +msgstr "فقط للأعضاء." + +#. TRANS: Text of group inbox if no private messages were sent to it. +msgid "This group has not received any private messages." +msgstr "" + +#. TRANS: Title of inbox for group %s. +#, 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 "" + +#. TRANS: Form legend for sending private message to group %s. +#, php-format +msgid "Message to %s" +msgstr "رسالة إلى %s." + +#. TRANS: Field label for private group message to group %s. +#, php-format +msgid "Direct message to %s" +msgstr "رسالة مباشرة ل%s" + +#. TRANS: Indicator for number of chatacters still available for notice. +msgid "Available characters" +msgstr "الأحرف المتاحة" + +#. TRANS: Send button text for sending private group notice. +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "أرسل" + +#. TRANS: Exception thrown when trying to set group privacy setting if group %s does not allow private messages. +#, php-format +msgid "Group %s does not allow private messages." +msgstr "لا تمسح المجموعة %s بالرسائل الخاصة." + +#. TRANS: Exception thrown when trying to send group private message while blocked from that group. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "User %1$s is blocked from group %2$s." +msgstr "المستخدم %1$s ممنوع من القائمة %2$s." + +#. TRANS: Exception thrown when trying to send group private message while not a member. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "User %1$s is not a member of group %2$s." +msgstr "المستخدم %1$s ليس عضوا في المجموعة %2$s." + +#. TRANS: Exception thrown when trying to send group private message while not a group administrator. +#. TRANS: %1$s is a user nickname, %2$s is a group nickname. +#, php-format +msgid "User %1$s is not an administrator of group %2$s." +msgstr "المستخدم %1$s ليس إداريا للمجموعة %2$s." + +#. TRANS: Exception thrown when encountering undefined group privacy settings. +#. TRANS: %s is a group nickname. +#, php-format +msgid "Unknown privacy settings for group %s." +msgstr "إعدادات الخصوصية للمجموعة %s غير معروفة." + +#. TRANS: Exception thrown when trying to send group private message that is too long. +#. TRANS: %d is the maximum meggage length. +#, 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] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. TRANS: Exception thrown when trying to send group private message to a non-existing group. +msgid "No group for group message." +msgstr "" + +#. TRANS: Exception thrown when trying to send group private message without having a sender. +msgid "No sender for group message." +msgstr "" + +#. TRANS: Client exception thrown when trying to view group private messages without being logged in. +msgid "Only logged-in users can view private messages." +msgstr "" + +#. TRANS: Client exception thrown when trying to view a non-existing group private message. +msgid "No such message." +msgstr "" + +#. TRANS: Server exception thrown when trying to view group private messages for a non-exsting group. +msgid "Group not found." +msgstr "المجموعة غير موجودة." + +#. TRANS: Client exception thrown when trying to view a group private message without being a group member. +msgid "Cannot read message." +msgstr "تعذرت قراءة الرسالة." + +#. TRANS: Server exception thrown when trying to view a group private message without a sender. +msgid "No sender found." +msgstr "" + +#. TRANS: Title for private group message. +#. TRANS: %1$s is the sender name, %2$s is the group name, %3$s is a timestamp. +#, php-format +msgid "Message from %1$s to group %2$s on %3$s" +msgstr "رسالة من %1$s إلى مجموعة %2$s في %3$s" + +#. TRANS: Succes message after sending private group message to group %s. +#, php-format +msgid "Direct message to group %s sent." +msgstr "أرسلت رسالة مبشارة إلى مجموعة %s." diff --git a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po index 099f37077f..e71e726fd5 100644 --- a/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ca/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:53+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po index 02c47d1df1..fd29ab86b9 100644 --- a/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/de/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po index 5e190926ed..2d06172646 100644 --- a/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/fr/LC_MESSAGES/GroupPrivateMessage.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po index 3b51df60ee..9355e708b5 100644 --- a/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ia/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po index b889c665fe..7b73672618 100644 --- a/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/mk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po index a165bcd43e..c455916622 100644 --- a/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/nl/LC_MESSAGES/GroupPrivateMessage.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po index f60cae54cf..f5f00bdb1d 100644 --- a/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/sv/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:53+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po index a3aec41f1a..f20ebf3a78 100644 --- a/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/tl/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po index 88d14862c2..a059f71e07 100644 --- a/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/uk/LC_MESSAGES/GroupPrivateMessage.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:48+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index 39f2b28af4..fcb2d25f02 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 66e07cd932..473dbd2b35 100644 --- a/plugins/Imap/locale/br/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/br/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:49+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:54+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po index 6c3fb08704..e40f3174c8 100644 --- a/plugins/Imap/locale/de/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/de/LC_MESSAGES/Imap.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:49+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po index 6bfa07c7d1..b142a14fef 100644 --- a/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/fr/LC_MESSAGES/Imap.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:49+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po index 04f1b51af1..a2ff15e5a8 100644 --- a/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ia/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:49+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po index 710156d61b..4b22f98cab 100644 --- a/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/mk/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:49+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index dd30a66e5a..0a2cb64321 100644 --- a/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:49+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po index fcbf4e5bd9..077ad7d26d 100644 --- a/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/nl/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:49+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po b/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po index 9fad3a7117..73b50988dd 100644 --- a/plugins/Imap/locale/ru/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po b/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po index 751b2ae823..0c4650953a 100644 --- a/plugins/Imap/locale/sv/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:54+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po index 1bd7148730..b32b32a95f 100644 --- a/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/tl/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po index 64d28a32d8..37215d47f9 100644 --- a/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/uk/LC_MESSAGES/Imap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po index eeb63ec58b..de9ffddadf 100644 --- a/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po +++ b/plugins/Imap/locale/zh_CN/LC_MESSAGES/Imap.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Imap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:55+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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-imap\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index e569f02244..6eb0d3930f 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 7767ef9762..274f631d7c 100644 --- a/plugins/InProcessCache/locale/de/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po index 4d10cffe8e..e6f4a18af9 100644 --- a/plugins/InProcessCache/locale/fr/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po index 972596efbb..b30e3f1d9d 100644 --- a/plugins/InProcessCache/locale/he/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:56+0000\n" +"Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po index 2f15fda27f..e851d07d81 100644 --- a/plugins/InProcessCache/locale/ia/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po index 191e077458..3815007c1e 100644 --- a/plugins/InProcessCache/locale/mk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po index eaab4169ff..bd4c2b67f2 100644 --- a/plugins/InProcessCache/locale/nl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:56+0000\n" +"Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po index fc48e901e9..f649b4a5d5 100644 --- a/plugins/InProcessCache/locale/pt/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:56+0000\n" +"Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po index d789b26896..5aa8303881 100644 --- a/plugins/InProcessCache/locale/ru/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:56+0000\n" +"Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po index cc89379122..5d0049e6b6 100644 --- a/plugins/InProcessCache/locale/tl/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po index c88805bc2d..cb95525d35 100644 --- a/plugins/InProcessCache/locale/uk/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po index 64b57a458a..bddd7b9e32 100644 --- a/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po +++ b/plugins/InProcessCache/locale/zh_CN/LC_MESSAGES/InProcessCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InProcessCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:52+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:22+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-inprocesscache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InfiniteScroll/locale/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index c96c1c33e4..4a98faef8e 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 0a2b9a86b7..0da75b365a 100644 --- a/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/de/LC_MESSAGES/InfiniteScroll.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po index 837d39b2bc..f9480b6ad0 100644 --- a/plugins/InfiniteScroll/locale/es/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po index f5b0201171..30e1459dac 100644 --- a/plugins/InfiniteScroll/locale/fr/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po index d826e5fa06..15be2fdc89 100644 --- a/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/he/LC_MESSAGES/InfiniteScroll.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po index 5ca5b150da..b05ee3095b 100644 --- a/plugins/InfiniteScroll/locale/ia/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po index b5467b52c3..a02041e881 100644 --- a/plugins/InfiniteScroll/locale/id/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:50+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po index 1b83229745..786b6b4d4f 100644 --- a/plugins/InfiniteScroll/locale/ja/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:55+0000\n" +"Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po index 317b5d2e2f..2c565591ef 100644 --- a/plugins/InfiniteScroll/locale/mk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po index 068c7f0bc9..a75da04233 100644 --- a/plugins/InfiniteScroll/locale/nb/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po index 9b74d51f47..ccb2bbb25e 100644 --- a/plugins/InfiniteScroll/locale/nl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po index 809ca82da7..cc34bb656f 100644 --- a/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/pt_BR/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po index 9539f377e8..a5f776b9b8 100644 --- a/plugins/InfiniteScroll/locale/ru/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:56+0000\n" +"Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po index 5c10794f8d..8f751fabd7 100644 --- a/plugins/InfiniteScroll/locale/tl/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po index 18e0695c4d..44d8a359b2 100644 --- a/plugins/InfiniteScroll/locale/uk/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po index 02a3429186..bf3fda7abd 100644 --- a/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po +++ b/plugins/InfiniteScroll/locale/zh_CN/LC_MESSAGES/InfiniteScroll.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - InfiniteScroll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:51+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:21+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-infinitescroll\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Irc/locale/Irc.pot b/plugins/Irc/locale/Irc.pot index bdbbcd319d..31aaf17092 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/Irc.po b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po index a98681de7c..9159d47ff2 100644 --- a/plugins/Irc/locale/de/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/de/LC_MESSAGES/Irc.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po index 75ce2a7ea9..b6af001800 100644 --- a/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/fr/LC_MESSAGES/Irc.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po index 78b71e4708..3f381c4cf9 100644 --- a/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/ia/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po index 6debe51854..2a2c7cfd7d 100644 --- a/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/mk/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po index 6d6f2459a0..df0e2c2441 100644 --- a/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/nl/LC_MESSAGES/Irc.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po index 5e39b1a12e..38085e121a 100644 --- a/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/sv/LC_MESSAGES/Irc.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20:58+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po index c7ecd69403..83db6e9dfc 100644 --- a/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/tl/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po index 1b360578a0..5f08b5ca1d 100644 --- a/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po +++ b/plugins/Irc/locale/uk/LC_MESSAGES/Irc.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Irc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:53+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-irc\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LdapAuthentication/locale/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index b194ba8127..198029a06c 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 b73bda67db..a2c9c62993 100644 --- a/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/de/LC_MESSAGES/LdapAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:54+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po index cd141b71dc..fb9ee75bda 100644 --- a/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/fr/LC_MESSAGES/LdapAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:54+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po index 8513affe80..aedbe637b1 100644 --- a/plugins/LdapAuthentication/locale/ia/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:54+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po index 981d4f1ceb..68708d9c40 100644 --- a/plugins/LdapAuthentication/locale/mk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:54+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po index f09d398bad..1bf4b373ca 100644 --- a/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/nl/LC_MESSAGES/LdapAuthentication.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:54+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po index 08965e06ea..2a34af3eea 100644 --- a/plugins/LdapAuthentication/locale/tl/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:54+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po b/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po index 9e6a66c0fe..dca2c7f8e3 100644 --- a/plugins/LdapAuthentication/locale/uk/LC_MESSAGES/LdapAuthentication.po +++ b/plugins/LdapAuthentication/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:54+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LdapAuthorization/locale/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 279ab76f38..02da4c2704 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 75895c2da7..556e37722f 100644 --- a/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/de/LC_MESSAGES/LdapAuthorization.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapAuthorization\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:55+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po index 324007752e..0958a25f30 100644 --- a/plugins/LdapAuthorization/locale/ia/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:55+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po index 8101d3c985..55be391ceb 100644 --- a/plugins/LdapAuthorization/locale/mk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:55+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po index b3c8267d75..b5f2c372df 100644 --- a/plugins/LdapAuthorization/locale/nl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:55+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:20: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po index 85786ce99f..9960523297 100644 --- a/plugins/LdapAuthorization/locale/tl/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:55+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po b/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po index 2cf6325e70..78c6f78ce9 100644 --- a/plugins/LdapAuthorization/locale/uk/LC_MESSAGES/LdapAuthorization.po +++ b/plugins/LdapAuthorization/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:55+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapauthorization\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LdapCommon/locale/LdapCommon.pot b/plugins/LdapCommon/locale/LdapCommon.pot index 54d66914dd..c823eace75 100644 --- a/plugins/LdapCommon/locale/LdapCommon.pot +++ b/plugins/LdapCommon/locale/LdapCommon.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po index 8bf7301f86..e8ad8b48fe 100644 --- a/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/de/LC_MESSAGES/LdapCommon.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po index 9d15908526..c268eefd19 100644 --- a/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/fr/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po index 77eb4304a6..955095c15e 100644 --- a/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/ia/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po index a311bcacaf..2540a5cfa6 100644 --- a/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/mk/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po index 1e88bb176a..aa7653693c 100644 --- a/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/nl/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po index fccffc2770..980fc31b7f 100644 --- a/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/tl/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po index 5eda5f0195..dc53f2cfb3 100644 --- a/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po +++ b/plugins/LdapCommon/locale/uk/LC_MESSAGES/LdapCommon.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LdapCommon\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ldapcommon\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LilUrl/locale/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 6764dee27c..2f37e727f9 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po index 3c59f938db..da72cc15aa 100644 --- a/plugins/LilUrl/locale/ca/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po index 7c66a68297..3f063ce9fa 100644 --- a/plugins/LilUrl/locale/de/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:56+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po index 510cd2ffba..c793ab7014 100644 --- a/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/fr/LC_MESSAGES/LilUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po index 584981edf6..e0fb7e52a8 100644 --- a/plugins/LilUrl/locale/he/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po index 2da2343a2d..73f16471ed 100644 --- a/plugins/LilUrl/locale/ia/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po index 240be3c2d1..01c61c4197 100644 --- a/plugins/LilUrl/locale/id/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:01+0000\n" +"Language-Team: Indonesian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po index 1cefcaf334..b230818b7b 100644 --- a/plugins/LilUrl/locale/ja/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po index 968c1532fb..e619abcb53 100644 --- a/plugins/LilUrl/locale/mk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po index 6f9b3e938b..bee3bf5290 100644 --- a/plugins/LilUrl/locale/nb/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po index 71925131e1..8d9c03d23f 100644 --- a/plugins/LilUrl/locale/nl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po index 9875b5c552..223a403edc 100644 --- a/plugins/LilUrl/locale/ru/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po index a99350c7b6..9530d9162f 100644 --- a/plugins/LilUrl/locale/sv/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:02+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po index 3dcbeedcaf..7dd807a253 100644 --- a/plugins/LilUrl/locale/tl/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po index 8c26a98ba4..7962171bec 100644 --- a/plugins/LilUrl/locale/uk/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po index cb869d847a..0cbb55e325 100644 --- a/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po +++ b/plugins/LilUrl/locale/zh_CN/LC_MESSAGES/LilUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LilUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:57+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-lilurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LinkPreview/locale/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 95f903cfed..22f1d376a1 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 0af65cb7f3..c62d883174 100644 --- a/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/de/LC_MESSAGES/LinkPreview.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po index 92a75c74d3..d5c6a8ac12 100644 --- a/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/fr/LC_MESSAGES/LinkPreview.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po index bd7450a5bf..0f1c4bf69d 100644 --- a/plugins/LinkPreview/locale/ia/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po index 8970b849a9..d4a3047ecf 100644 --- a/plugins/LinkPreview/locale/mk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po index 93495859ad..527d3ea6ff 100644 --- a/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/nl/LC_MESSAGES/LinkPreview.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LinkPreview\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po index 9941403b21..41dba09eb3 100644 --- a/plugins/LinkPreview/locale/sv/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:04+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po index ac362e4ea0..e1bbdaa921 100644 --- a/plugins/LinkPreview/locale/tl/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po b/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po index ac4604327e..5a6395233e 100644 --- a/plugins/LinkPreview/locale/uk/LC_MESSAGES/LinkPreview.po +++ b/plugins/LinkPreview/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-linkpreview\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Linkback/locale/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 7053bfdeb3..2b3422d062 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po new file mode 100644 index 0000000000..ba8609c1fe --- /dev/null +++ b/plugins/Linkback/locale/ar/LC_MESSAGES/Linkback.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Linkback 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 - Linkback\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:02+0000\n" +"Language-Team: Arabic \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-linkback\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Trackback title. +#. TRANS: %1$s is a profile nickname, %2$s is a timestamp. +#, php-format +msgid "%1$s's status on %2$s" +msgstr "حالة %1$s في %2$s" + +#. TRANS: Plugin description. +msgid "" +"Notify blog authors when their posts have been linked in microblog notices " +"using Pingback " +"or Trackback protocols." +msgstr "" diff --git a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po index b11d57e521..9ba3f0b401 100644 --- a/plugins/Linkback/locale/ca/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po index 1e846c3726..2a28a6c15b 100644 --- a/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/de/LC_MESSAGES/Linkback.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po index d36bcaf340..dd86e4161f 100644 --- a/plugins/Linkback/locale/es/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po index 88c7fd0628..b3c5cba48d 100644 --- a/plugins/Linkback/locale/fi/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:02+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po index 6d091bb07f..d0b4988125 100644 --- a/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/fr/LC_MESSAGES/Linkback.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po index d6c676400e..b4094015d1 100644 --- a/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/he/LC_MESSAGES/Linkback.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po index 26eb7c0ced..23d3a89ed0 100644 --- a/plugins/Linkback/locale/ia/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po index 33da3009a0..c8e55955ae 100644 --- a/plugins/Linkback/locale/id/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po index f397d08f7a..17197405bf 100644 --- a/plugins/Linkback/locale/mk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po index 222f115feb..2d2dc9291f 100644 --- a/plugins/Linkback/locale/nb/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po index f041d4e085..8c0d3042a1 100644 --- a/plugins/Linkback/locale/nl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po index 534b52bab0..4385467102 100644 --- a/plugins/Linkback/locale/pt/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po index e93e234292..ebac3a8619 100644 --- a/plugins/Linkback/locale/ru/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:58+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po index 49a73a86da..95c63df05b 100644 --- a/plugins/Linkback/locale/tl/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po index e9187af741..7c23ef42b3 100644 --- a/plugins/Linkback/locale/uk/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po index 7bd637a755..356c335f3c 100644 --- a/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po +++ b/plugins/Linkback/locale/zh_CN/LC_MESSAGES/Linkback.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Linkback\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:20:59+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-linkback\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/LogFilter/locale/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index 41c539d1d7..52699bcc0b 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 420c6d431d..24fd2c565b 100644 --- a/plugins/LogFilter/locale/de/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po index 5be48c385c..dfe5a871aa 100644 --- a/plugins/LogFilter/locale/fi/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po index 1408f205b1..64fdb8331e 100644 --- a/plugins/LogFilter/locale/fr/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po index f78e08c589..9665236f40 100644 --- a/plugins/LogFilter/locale/he/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po index e2ee682a75..478ed386d5 100644 --- a/plugins/LogFilter/locale/ia/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po index 8903457cbd..dc64f01b4f 100644 --- a/plugins/LogFilter/locale/mk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po index 4cdc6d2ade..285b3c13dd 100644 --- a/plugins/LogFilter/locale/nl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po index 22b2c45c80..28db55a384 100644 --- a/plugins/LogFilter/locale/pt/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po index cfc64480e6..0ba38107e2 100644 --- a/plugins/LogFilter/locale/ru/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po index 95d584f6fb..ce2cbb67cd 100644 --- a/plugins/LogFilter/locale/tl/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po index d66dacb019..4d0a368df3 100644 --- a/plugins/LogFilter/locale/uk/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po index be57b89c51..072d009d76 100644 --- a/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po +++ b/plugins/LogFilter/locale/zh_CN/LC_MESSAGES/LogFilter.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - LogFilter\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:00+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:29+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-logfilter\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index b491abcf4f..5614d44415 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 cf3fb92324..295de4f172 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:01+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po index e469a0e6c7..7d7381db12 100644 --- a/plugins/Mapstraction/locale/ca/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:01+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index c131888209..e6aa508966 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:01+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index 314426fdd4..4c7f1f6a6a 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:01+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index ceb5d1939e..51428b0217 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:01+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po index edd103ab90..51730e32b0 100644 --- a/plugins/Mapstraction/locale/fur/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fur/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Friulian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index a53a5c1c70..c41304b412 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po index 0802f5269b..fb9edf6576 100644 --- a/plugins/Mapstraction/locale/hu/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/hu/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Hungarian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index fb44e2832b..c26abf4264 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po index b046976f2a..6f58079931 100644 --- a/plugins/Mapstraction/locale/lb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/lb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Luxembourgish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 22d79165a2..cbabcc5bae 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index fd8f573751..85db4464c9 100644 --- a/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index 1b1ba1110c..72695e6bf9 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index b65cc4c11a..cf8eb47eba 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po index 7190d1fed2..48a062380a 100644 --- a/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/sv/LC_MESSAGES/Mapstraction.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po index 5450a80f37..5e8a62f973 100644 --- a/plugins/Mapstraction/locale/ta/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ta/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Tamil \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"Language-Team: Tamil \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ta\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po index 8bd1c95088..81b1c0d756 100644 --- a/plugins/Mapstraction/locale/te/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/te/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:02+0000\n" -"Language-Team: Telugu \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 082fad7c14..dd5cd5dc9a 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index ccc6e44ebf..a2f20aead2 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po index db5870e616..20e8a66698 100644 --- a/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/zh_CN/LC_MESSAGES/Mapstraction.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index 1f057758fc..d11dc05b96 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 958cc65d18..2a2043a0db 100644 --- a/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/de/LC_MESSAGES/Memcache.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po index e277affae1..000047d3ce 100644 --- a/plugins/Memcache/locale/es/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po index e7e0faf289..c665259440 100644 --- a/plugins/Memcache/locale/fi/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:07+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po index 029a94e9be..4a375966f2 100644 --- a/plugins/Memcache/locale/fr/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po index 8fd5ba0743..64e78ad8d0 100644 --- a/plugins/Memcache/locale/he/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:07+0000\n" +"Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po index 0b962fdedb..4dc83d2a09 100644 --- a/plugins/Memcache/locale/ia/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po index a72605db6b..763fd3c91b 100644 --- a/plugins/Memcache/locale/mk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po index 8266ccbc22..ef4c047c6c 100644 --- a/plugins/Memcache/locale/nb/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:07+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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po index 3554fbad85..d80cd3a20f 100644 --- a/plugins/Memcache/locale/nl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:03+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po index 3939a1001a..d243f09313 100644 --- a/plugins/Memcache/locale/pt/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:07+0000\n" +"Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po index 70513d2920..4af858ffa5 100644 --- a/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/pt_BR/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po index 42d6101d38..e46c7d0878 100644 --- a/plugins/Memcache/locale/ru/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po index 2415161ea0..e0f567419f 100644 --- a/plugins/Memcache/locale/sv/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:08+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po index 030c7592cf..a014800c26 100644 --- a/plugins/Memcache/locale/tl/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po index 3f6bc0a7ad..18681f845d 100644 --- a/plugins/Memcache/locale/uk/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po index efd8fb3382..3f89a1cfaa 100644 --- a/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po +++ b/plugins/Memcache/locale/zh_CN/LC_MESSAGES/Memcache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:31+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcached/locale/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 283bc09d2c..7e93c3fab8 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 dccda6f766..25fdd28644 100644 --- a/plugins/Memcached/locale/de/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po index e283ca3e46..3822f0b539 100644 --- a/plugins/Memcached/locale/es/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po index 4d926fa1c9..cf844d4ce6 100644 --- a/plugins/Memcached/locale/fi/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po index edf14ddea9..74ab28eb51 100644 --- a/plugins/Memcached/locale/fr/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po index 61868319e9..972da06cc4 100644 --- a/plugins/Memcached/locale/he/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:04+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po index ed41bb75ce..664d83b6bd 100644 --- a/plugins/Memcached/locale/ia/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po index dd5e94a765..66fbdb5967 100644 --- a/plugins/Memcached/locale/id/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po index 29982e87a7..6efe69be76 100644 --- a/plugins/Memcached/locale/ja/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:08+0000\n" +"Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po index 5b74e837a3..059bf7259c 100644 --- a/plugins/Memcached/locale/mk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po index 447565b32f..fc2fd727b5 100644 --- a/plugins/Memcached/locale/nb/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po index 49bb3c79ed..ef5d269271 100644 --- a/plugins/Memcached/locale/nl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po index 7cdf6186a0..35d7b3870f 100644 --- a/plugins/Memcached/locale/pt/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po index 864a587c40..0ef760d3ea 100644 --- a/plugins/Memcached/locale/ru/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po index 753a530924..0608b8ef36 100644 --- a/plugins/Memcached/locale/sv/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:09+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po index 06bd0353e9..87dd9fe6b1 100644 --- a/plugins/Memcached/locale/tl/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po index c0df48bc99..919b9df88c 100644 --- a/plugins/Memcached/locale/uk/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po index 7eef59121e..b8a7e6b615 100644 --- a/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po +++ b/plugins/Memcached/locale/zh_CN/LC_MESSAGES/Memcached.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Memcached\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:05+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:50:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-memcached\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Meteor/locale/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index 147a2a7170..64df185713 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,18 +17,18 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. TRANS: Exception. %1$s is the control server, %2$s is the control port. -#: MeteorPlugin.php:122 +#: MeteorPlugin.php:126 #, php-format msgid "Could not connect to %1$s on %2$s." msgstr "" #. TRANS: Exception. %s is the Meteor message that could not be added. -#: MeteorPlugin.php:135 +#: MeteorPlugin.php:139 #, php-format msgid "Error adding meteor message \"%s\"." msgstr "" #. TRANS: Plugin description. -#: MeteorPlugin.php:166 +#: MeteorPlugin.php:170 msgid "Plugin to do \"real time\" updates using Meteor." msgstr "" diff --git a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po index aaf1dad27c..0f26243ff3 100644 --- a/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/de/LC_MESSAGES/Meteor.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Meteor to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: MF-Warburg # Author: The Evil IP address # -- @@ -10,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:06+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -33,6 +34,5 @@ msgid "Error adding meteor message \"%s\"." msgstr "Fehler beim Hinzufügen der Meteor-Nachricht „%s“." #. TRANS: Plugin description. -#, fuzzy msgid "Plugin to do \"real time\" updates using Meteor." -msgstr "Plugin für Echtzeit-Aktualisierungen mit Comet/Bayeux." +msgstr "Plugin für Echtzeit-Aktualisierungen mit Meteor." diff --git a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 4ae5517523..955962da49 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:06+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po index 2959e6c855..a444d89654 100644 --- a/plugins/Meteor/locale/ia/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:06+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -32,6 +32,5 @@ msgid "Error adding meteor message \"%s\"." msgstr "Error durante le addition del message Meteor \"%s\"." #. TRANS: Plugin description. -#, fuzzy msgid "Plugin to do \"real time\" updates using Meteor." -msgstr "Plug-in pro facer actualisationes \"in directo\" usante Comet/Bayeux." +msgstr "Plug-in pro facer actualisationes \"in directo\" usante Meteor." diff --git a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po index 500bbef020..94967b4281 100644 --- a/plugins/Meteor/locale/mk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:06+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" @@ -32,6 +32,5 @@ msgid "Error adding meteor message \"%s\"." msgstr "Грешка при додавање на Meteor-овата порака „%s“." #. TRANS: Plugin description. -#, fuzzy msgid "Plugin to do \"real time\" updates using Meteor." -msgstr "Приклучок за вршење на поднови „во живо“ со Comet/Bayeux." +msgstr "Приклучок за вршење на поднови „во живо“ користејќи Meteor." diff --git a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po index fd4fee06e1..f9be4da605 100644 --- a/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nl/LC_MESSAGES/Meteor.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Meteor to Dutch (Nederlands) # Exported from translatewiki.net # +# Author: SPQRobin # Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:06+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -32,6 +33,5 @@ msgid "Error adding meteor message \"%s\"." msgstr "Fout bij het toevoegen van meteorbericht \"%s\"." #. TRANS: Plugin description. -#, fuzzy msgid "Plugin to do \"real time\" updates using Meteor." -msgstr "Plug-in voor het maken van \"real time\" updates via Comet/Bayeux." +msgstr "Plug-in voor het maken van \"real time\"-updates via Meteor." diff --git a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po index 8109d7086a..1ed53f1919 100644 --- a/plugins/Meteor/locale/tl/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:06+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po index b12de6a340..8e512afd31 100644 --- a/plugins/Meteor/locale/uk/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:06+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:02+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 86c09047a8..12ffdee359 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 a4743e436c..d7eb3ebf87 100644 --- a/plugins/Minify/locale/de/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po b/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po index 54cf148dbb..18438e31a1 100644 --- a/plugins/Minify/locale/fr/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po index 55771236d8..de2c6e1af3 100644 --- a/plugins/Minify/locale/ia/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po index 45e2331c12..a199167d66 100644 --- a/plugins/Minify/locale/mk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po index ae24e43eaf..5120a61cf3 100644 --- a/plugins/Minify/locale/nb/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po index cb1af9dada..5faf5f47d7 100644 --- a/plugins/Minify/locale/nl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po index f90055cad5..bff46fa7db 100644 --- a/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/ru/LC_MESSAGES/Minify.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po b/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po index 097c001374..42826dc708 100644 --- a/plugins/Minify/locale/sv/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:10+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po b/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po index d08fc8cf47..073b794964 100644 --- a/plugins/Minify/locale/tl/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po b/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po index 21346e6858..cd1c49f540 100644 --- a/plugins/Minify/locale/uk/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po index 9f761ac937..48bffa2760 100644 --- a/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po +++ b/plugins/Minify/locale/zh_CN/LC_MESSAGES/Minify.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Minify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:07+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:03+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-minify\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/MobileProfile/locale/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 8a286d9cd9..42bcad44be 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po index 141e792a9a..30fc3dec3b 100644 --- a/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ca/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po index e9d5da81ba..989ce43b69 100644 --- a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: Chechen \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:11+0000\n" +"Language-Team: Chechen \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ce\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po index fb7cbb5c50..1b7a190cc6 100644 --- a/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/de/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po index d809cbe838..b7b0c920da 100644 --- a/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fr/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po index 998856335a..bd26671a8f 100644 --- a/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/fur/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: Friulian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:11+0000\n" +"Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po index 8239571b89..9c3862251c 100644 --- a/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ia/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po index 8c95f08186..1f26584617 100644 --- a/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/mk/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po index e58e198df0..9f349399b1 100644 --- a/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nb/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po index 13fcab4e3b..a9fa3bbc74 100644 --- a/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/nl/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:08+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po index 51caf91119..eecd2976e1 100644 --- a/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/ru/LC_MESSAGES/MobileProfile.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po index 804bf3c56c..99b21512e7 100644 --- a/plugins/MobileProfile/locale/sv/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:12+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po index 9e5c04e68d..ca8cda0e02 100644 --- a/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/tl/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po index 717f8e490d..e1ba89799d 100644 --- a/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/uk/LC_MESSAGES/MobileProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po index a60d23c65b..a2fd6b2bf5 100644 --- a/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po +++ b/plugins/MobileProfile/locale/zh_CN/LC_MESSAGES/MobileProfile.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - MobileProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:04+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-mobileprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ModHelper/locale/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index 03fe3a06b8..a8ef3651aa 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 7ada15be26..4633929f2e 100644 --- a/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/de/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po index 07a7e87e3e..c56d122dc7 100644 --- a/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/es/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:12+0000\n" +"Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po index 9d192823a1..b01725052f 100644 --- a/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/fr/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:09+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po index b2253ea1ea..83da511cf1 100644 --- a/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/he/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po index 27f0fcbca1..bcf6562825 100644 --- a/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ia/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po index a7e36e9035..eb83134dd1 100644 --- a/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/mk/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po index 13b754da83..108a8f9972 100644 --- a/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/nl/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po index d767ef693a..48062cce4b 100644 --- a/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/pt/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po index 5ea9dc2086..a1940440d4 100644 --- a/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/ru/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po index 41cb2ee8a0..f1d3381d07 100644 --- a/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/tl/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po index 67ddc4b234..f8f7d5fcff 100644 --- a/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po +++ b/plugins/ModHelper/locale/uk/LC_MESSAGES/ModHelper.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModHelper\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:10+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-modhelper\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ModPlus/locale/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index 5a8532a71c..49986b72d6 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 44dc44d26e..0f6cdb72fd 100644 --- a/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/de/LC_MESSAGES/ModPlus.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po index e94974230f..a953215334 100644 --- a/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/fr/LC_MESSAGES/ModPlus.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po index 569db2133a..950b99d640 100644 --- a/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/ia/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po index c90fbe8765..94d8f89016 100644 --- a/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/mk/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po index 2fce79b372..f77c3a31d5 100644 --- a/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/nl/LC_MESSAGES/ModPlus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po index ef60652034..e469b0b219 100644 --- a/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/tl/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-modplus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po index b57b4f5779..7c5b504bce 100644 --- a/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po +++ b/plugins/ModPlus/locale/uk/LC_MESSAGES/ModPlus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ModPlus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:06+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Mollom/locale/Mollom.pot b/plugins/Mollom/locale/Mollom.pot index 6e935b575a..e0e2706fa3 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po index 93c64e6301..9ebe68c62f 100644 --- a/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ca/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:11+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:14+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po index 8339fdc7bf..4ec5c065d9 100644 --- a/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/de/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po index 094bd14830..c3e8d28b22 100644 --- a/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/fr/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po index 4601d8757f..b99d4f2db1 100644 --- a/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/he/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po index 51edda4cba..b3ac6d3fd8 100644 --- a/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/ia/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po index aa3be2c3af..aaaef9505a 100644 --- a/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/mk/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po index 04e0fa6a6f..3c71971b59 100644 --- a/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/nl/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po index be3c593879..461231f779 100644 --- a/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/sv/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:14+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po index 5e4772a862..91cf7cbf92 100644 --- a/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/tl/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po index 956762776d..01f2be5093 100644 --- a/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po +++ b/plugins/Mollom/locale/uk/LC_MESSAGES/Mollom.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mollom\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:12+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:07+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mollom\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Msn/locale/Msn.pot b/plugins/Msn/locale/Msn.pot index 56cd3b9ae3..ff13f6270b 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po index 209a934ab8..2a4b138889 100644 --- a/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ar/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:15+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po index 9fe52263ca..30e0fd0156 100644 --- a/plugins/Msn/locale/de/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/de/LC_MESSAGES/Msn.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po index 37c05178de..6913949917 100644 --- a/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/ia/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po index 91f6d1b07c..d20d540bbd 100644 --- a/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/mk/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po index bd612b623c..33688e30e0 100644 --- a/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/nl/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po index b3153855b4..346480e47c 100644 --- a/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/sv/LC_MESSAGES/Msn.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:15+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po index 48151e5a6f..1f259abfd2 100644 --- a/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/tl/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po index 1784f4d707..1640b6b0d5 100644 --- a/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po +++ b/plugins/Msn/locale/uk/LC_MESSAGES/Msn.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Msn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:13+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-msn\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 325b305e15..b1938483c8 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 9ce1d7421f..ab1dd78c26 100644 --- a/plugins/NoticeTitle/locale/ar/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ar/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:16+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index 012f5e857b..82dc91f8ef 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po index 3b988b6781..a05b897329 100644 --- a/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/de/LC_MESSAGES/NoticeTitle.po @@ -1,6 +1,7 @@ # Translation of StatusNet - NoticeTitle to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -30,8 +31,8 @@ msgstr "Fügt Nachrichten optionale Titel hinzu." #, php-format msgid "The notice title is too long (maximum %d character)." msgid_plural "The notice title is too long (maximum %d characters)." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Der Nachrichtentitel ist zu lang (maximal %d Zeichen)." +msgstr[1] "Der Nachrichtentitel ist zu lang (maximal %d Zeichen)." #. TRANS: Page title. %1$s is the title, %2$s is the site name. #, php-format diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index 9abb04533e..7756b0011a 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po index b738da17ee..9b03a349ff 100644 --- a/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/he/LC_MESSAGES/NoticeTitle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index 7bef2143f5..bbe25c360c 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 38a989016b..f7ebd86937 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index f2a381a665..6afcc79368 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:16+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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po index ecb185aafd..3332da1e03 100644 --- a/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ne/LC_MESSAGES/NoticeTitle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:14+0000\n" -"Language-Team: Nepali \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:16+0000\n" +"Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 27ce6eb7d6..2ebe912806 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po index c33c144e15..007d9f9a33 100644 --- a/plugins/NoticeTitle/locale/ru/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po index 6f21d9aa37..3a12a79c19 100644 --- a/plugins/NoticeTitle/locale/sv/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/sv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index 4180fee1b0..57bcc47704 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index c31cc98628..bb2fe144f8 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OMB/locale/OMB.pot b/plugins/OMB/locale/OMB.pot index 0b37858026..8fa0ca0351 100644 --- a/plugins/OMB/locale/OMB.pot +++ b/plugins/OMB/locale/OMB.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -51,6 +51,6 @@ msgid "Could not delete subscription OMB token." msgstr "" #. TRANS: Plugin description. -#: OMBPlugin.php:387 +#: OMBPlugin.php:399 msgid "A sample plugin to show basics of development for new hackers." msgstr "" diff --git a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..bc2198f954 --- /dev/null +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -0,0 +1,60 @@ +# Translation of StatusNet - OMB 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 - OMB\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-08-15 14:12:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-omb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Button text on page for remote subscribe. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Abonneren" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Aanvaarden" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Weigeren" + +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" +"U kunt via deze handeling niet abonneren op een extern OMB 1.0-profiel." + +msgid "You cannot list an OMB 0.1 remote profile with this action." +msgstr "" +"U kunt een extern OMB 1.0-profiel niet opnemen in een lijst via deze " +"handeling." + +msgid "You cannot (un)list an OMB 0.1 remote profile with this action." +msgstr "" +"U kunt een extern OMB 1.0-profiel niet opnemen in of verwijderen uit een " +"lijst via deze handeling." + +msgid "Could not delete subscription OMB token." +msgstr "" +"Het was niet mogelijk om het OMB-token voor het abonnement te verwijderen." + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Een voorbeeldplug-in als basis voor ontwikkelingen door nieuwe hackers." diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 1d7c0e2963..363a1933fe 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -865,7 +865,7 @@ msgstr "" #: classes/Ostatus_profile.php:545 #, php-format -msgid "Failed to save activity %s" +msgid "Failed to save activity %s." msgstr "" #. TRANS: Client exception. %s is a source URI. diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index bc83390c43..4796c5d702 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:38+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -787,7 +787,7 @@ msgid "Can only handle shared activities." msgstr "" #, php-format -msgid "Failed to save activity %s" +msgid "Failed to save activity %s." msgstr "" #. TRANS: Client exception. %s is a source URI. diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 149a00e6dc..76ad59fd08 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -3,6 +3,7 @@ # # Author: Brunoperel # Author: IAlex +# Author: Od1n # Author: Peter17 # Author: Verdy p # -- @@ -12,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:38+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -292,7 +293,7 @@ msgstr "" #. TRANS: Button text to tag a remote object. msgctxt "BUTTON" msgid "Go" -msgstr "" +msgstr "Aller" #. TRANS: Field label. msgid "User nickname" @@ -776,7 +777,7 @@ msgid "Can only handle shared activities." msgstr "" #, php-format -msgid "Failed to save activity %s" +msgid "Failed to save activity %s." msgstr "" #. TRANS: Client exception. %s is a source URI. diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index c1cacc8bd0..2a68d8a2e7 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:39+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -736,14 +736,14 @@ msgid "RSS feed without a channel." msgstr "Syndication RSS sin canal." msgid "Can only handle share activities with exactly one object." -msgstr "" +msgstr "Pote solmente manear activitates de divulgation con un sol objecto." msgid "Can only handle shared activities." -msgstr "" +msgstr "Pote solmente manear activitates divulgate." -#, php-format -msgid "Failed to save activity %s" -msgstr "" +#, fuzzy, php-format +msgid "Failed to save activity %s." +msgstr "Falleva de salveguardar le activitate %s" #. TRANS: Client exception. %s is a source URI. #, php-format diff --git a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po index d61fb338b4..89743a99a2 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:39+0000\n" -"Language-Team: Korean \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:41+0000\n" +"Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -743,7 +743,7 @@ msgid "Can only handle shared activities." msgstr "" #, php-format -msgid "Failed to save activity %s" +msgid "Failed to save activity %s." msgstr "" #. TRANS: Client exception. %s is a source URI. diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 923ccaf2a4..87ea6653bf 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:39+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" @@ -741,14 +741,14 @@ msgid "RSS feed without a channel." msgstr "RSS-емитување без канал." msgid "Can only handle share activities with exactly one object." -msgstr "" +msgstr "Може да работи само со активности за споделување со точно еден објект." msgid "Can only handle shared activities." -msgstr "" +msgstr "Може да работи само за активности за споделување." -#, php-format -msgid "Failed to save activity %s" -msgstr "" +#, fuzzy, php-format +msgid "Failed to save activity %s." +msgstr "Не можев да ја зачувам активноста %s" #. TRANS: Client exception. %s is a source URI. #, php-format diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index f8e0000031..21b38d3454 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:39+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -758,14 +758,14 @@ msgid "RSS feed without a channel." msgstr "RSS-feed zonder kanaal." msgid "Can only handle share activities with exactly one object." -msgstr "" +msgstr "Kan slechts delen van activiteiten aan met precies een objects." msgid "Can only handle shared activities." -msgstr "" +msgstr "Het is alleen mogelijk gedeelde activiteiten af te handelen." -#, php-format -msgid "Failed to save activity %s" -msgstr "" +#, fuzzy, php-format +msgid "Failed to save activity %s." +msgstr "Het opslaan van de activiteit %s is mislukt." #. TRANS: Client exception. %s is a source URI. #, php-format diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index 4d27b732b0..48002ff073 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -766,7 +766,7 @@ msgid "Can only handle shared activities." msgstr "" #, php-format -msgid "Failed to save activity %s" +msgid "Failed to save activity %s." msgstr "" #. TRANS: Client exception. %s is a source URI. diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index f05e0bb8f3..f8ef5ae142 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " @@ -757,7 +757,7 @@ msgid "Can only handle shared activities." msgstr "" #, php-format -msgid "Failed to save activity %s" +msgid "Failed to save activity %s." msgstr "" #. TRANS: Client exception. %s is a source URI. diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 384fbb7687..47fe9c3a7f 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 1ea17c8d01..81196811be 100644 --- a/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ar/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:18+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po index 254a73dc6c..5c1bc59025 100644 --- a/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ca/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po index 319a7dc9ed..d4bed702f0 100644 --- a/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/de/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po index 1e2cfe65d8..1a63566109 100644 --- a/plugins/OpenExternalLinkTarget/locale/es/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po index 42b1d7d200..abf20f335b 100644 --- a/plugins/OpenExternalLinkTarget/locale/fr/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:15+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po index 2c97e08843..5e2a481b92 100644 --- a/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/he/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po index 25d32a6621..5de824f9f3 100644 --- a/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ia/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po index 3ca23d4e32..1711289dd3 100644 --- a/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/mk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po index 63ddaaa1c3..f7659af068 100644 --- a/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nb/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po index 213ba31a32..244e6cb2fc 100644 --- a/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/nl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po index 8fd1226868..2440347fe6 100644 --- a/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/pt/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po index 1018d8f7e2..a222dcf5a3 100644 --- a/plugins/OpenExternalLinkTarget/locale/ru/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po index d6439c51ef..d0c2f84cd0 100644 --- a/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/tl/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po index 019b50e57f..9e705136c9 100644 --- a/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/uk/LC_MESSAGES/OpenExternalLinkTarget.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po index 31253f2263..c5deca6403 100644 --- a/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po +++ b/plugins/OpenExternalLinkTarget/locale/zh_CN/LC_MESSAGES/OpenExternalLinkTarget.po @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenExternalLinkTarget\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:16+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-openexternallinktarget\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 70169752b8..dcf42d3f33 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 75e71d4b0b..5dfc1b447c 100644 --- a/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ar/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:23+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:25+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -48,7 +48,6 @@ msgid "Continue" msgstr "استمر" #. TRANS: Button text to cancel OpenID identity verification. -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "ألغِ" @@ -58,10 +57,9 @@ msgid "Unavailable action." msgstr "" #. TRANS: Tooltip for main menu option "Login" -#, fuzzy msgctxt "TOOLTIP" msgid "Login to the site." -msgstr "لُج في الموقع" +msgstr "لُج إلى الموقع." #. TRANS: Main menu option when not logged in to log in msgctxt "MENU" @@ -79,10 +77,9 @@ msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text." -msgstr "ابحث عن أشخاص أو نصوص" +msgstr "ابحث عن أشخاص أو نصوص." #. TRANS: Main menu option when logged in or when the StatusNet instance is not private msgctxt "MENU" @@ -97,14 +94,12 @@ msgid "OpenID" msgstr "هوية مفتوحة" #. TRANS: OpenID plugin tooltip for logon menu item. -#, fuzzy msgid "Login or register with OpenID." -msgstr "لُج أو سجّل بهوية مفتوحة" +msgstr "لُج أو سجّل بهوية مفتوحة." #. TRANS: OpenID plugin tooltip for user settings menu item. -#, fuzzy msgid "Add or remove OpenIDs." -msgstr "أضف أو احذف هويات مفتوحة" +msgstr "أضف أو احذف هويات مفتوحة." #. TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -113,6 +108,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? [Add an OpenID to your account](%%" "action.openidsettings%%)!" msgstr "" +"(ألديك [هوية مفتوحة](http://openid.net/)? [أضف هوية مفتوحة إلى حسابك](%%" +"action.openidsettings%%)!" #. TRANS: Page notice for anonymous users to try and get them to register with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -121,6 +118,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID registration](%%" "action.openidlogin%%)!)" msgstr "" +"(ألديك [هوية مفتوحة](http://openid.net/)? جرب [التسجيل بالهوية المفتوحة](%%" +"action.openidlogin%%)!)" #. TRANS: Page notice on the login page to try and get them to log on with an OpenID account. #. TRANS: This message contains Markdown links in the form (description)[link]. @@ -129,6 +128,8 @@ msgid "" "(Have an [OpenID](http://openid.net/)? Try our [OpenID login](%%action." "openidlogin%%)!)" msgstr "" +"(ألديك [هوية مفتوحة](http://openid.net/)? جرب [الولوج بالهوية المفتوحة](%%" +"action.openidlogin%%)!)" #. TRANS: Item on help page. This message contains Markdown links in the form [description](link). #, php-format @@ -136,21 +137,21 @@ msgid "" "* [OpenID](%%doc.openid%%) - What OpenID is and how to use it with this " "service." msgstr "" +"* [الهوية المفتوحة](%%doc.openid%%) - تعرف على الهوية المفتوحة وكيفية " +"استخدامها على هذه الخدمة." #. TRANS: Tooltip for OpenID configuration menu item. -#, fuzzy msgid "OpenID configuration." -msgstr "ضبط الهوية المفتوحة" +msgstr "ضبط الهوية المفتوحة." #. TRANS: Plugin description. msgid "Use OpenID to login to the site." -msgstr "استخدم هوية مفتوحة للدخول للموقع." +msgstr "استخدام هوية مفتوحة للدخول للموقع." #. TRANS: OpenID plugin logon form legend. -#, fuzzy msgctxt "LEGEND" msgid "OpenID login" -msgstr "الدخول بهوية مفتوحة" +msgstr "ولوج الهوية المفتوحة" #. TRANS: Field label. msgid "OpenID provider" @@ -172,9 +173,8 @@ msgstr "مسار الهوية المفتوحة" #. TRANS: OpenID plugin logon form field instructions. #. TRANS: OpenID plugin logon form field title. -#, fuzzy msgid "Your OpenID URL." -msgstr "مسار هويتك المفتوحة" +msgstr "مسار هويتك المفتوحة." #. TRANS: Client error message trying to log on with OpenID while already logged on. msgid "Already logged in." @@ -204,7 +204,6 @@ msgid "" msgstr "" #. TRANS: Title -#, fuzzy msgctxt "TITLE" msgid "OpenID Account Setup" msgstr "إعداد حساب هوية مفتوحة" @@ -277,13 +276,12 @@ msgstr "ألغي استيثاق الهوية المفتوحة" #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. #. TRANS: %s is the error message. -#, fuzzy, php-format +#, php-format msgid "OpenID authentication failed: %s." -msgstr "فشل استيثاق الهوية المفتوحة: %s" +msgstr "فشل استيثاق الهوية المفتوحة: %s." #. TRANS: Message displayed when OpenID authentication is aborted. #. TRANS: OpenID authentication error. -#, fuzzy msgid "" "OpenID authentication aborted: You are not allowed to login to this site." msgstr "أجهض استيثاق الهوية المفتوحة: لا يسمح لك بدخول هذا الموقع." @@ -332,15 +330,15 @@ msgstr "ليست هوية مفتوحة صحيحة." #. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. #. TRANS: %s is the failure message. -#, fuzzy, php-format +#, php-format msgid "OpenID failure: %s." -msgstr "فشلت الهوية المفتوحة: %s" +msgstr "فشلت الهوية المفتوحة: %s." #. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. #. TRANS: %s is the failure message. -#, fuzzy, php-format +#, php-format msgid "Could not redirect to server: %s." -msgstr "تغذر التحويل للخادوم: %s" +msgstr "تعذر التحويل للخادوم: %s." #. TRANS: OpenID plugin user instructions. msgid "" @@ -377,7 +375,6 @@ msgid "" msgstr "إذا لم تُحوّل إلى مزود الولوج خلال ثوانٍ قليلة، حاول نقر الزر أدناه." #. TRANS: Title for OpenID bridge administration page. -#, fuzzy msgctxt "TITLE" msgid "OpenID Settings" msgstr "إعدادات الهوية المفتوحة" @@ -387,17 +384,14 @@ msgid "OpenID settings" msgstr "إعدادات الهوية المفتوحة" #. TRANS: Client error displayed when OpenID provider URL is too long. -#, fuzzy msgid "Invalid provider URL. Maximum length is 255 characters." msgstr "مسار المزود غير صالح. أقصى طول 255 حرف." #. TRANS: Client error displayed when Launchpad team name is too long. -#, fuzzy msgid "Invalid team name. Maximum length is 255 characters." msgstr "اسم فريق غير صالح. أقصى طول 255 حرف." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Trusted provider" msgstr "مزود موثوق" @@ -438,7 +432,6 @@ msgid "Only allow logins from users in the given team (Launchpad extension)." msgstr "" #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Options" msgstr "خيارات" @@ -454,15 +447,13 @@ msgid "" msgstr "" #. TRANS: Button text to save OpenID settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "احفظ" #. TRANS: Button title to save OpenID settings. -#, fuzzy msgid "Save OpenID settings." -msgstr "إعدادات الهوية المفتوحة" +msgstr "إعدادات الهوية المفتوحة." #. TRANS: Error message displayed when trying to perform an action that requires a logged in user. msgid "Not logged in." @@ -490,7 +481,6 @@ msgid "OpenID Login" msgstr "ولوج الهوية المفتوحة" #. TRANS: Title of OpenID settings page for a user. -#, fuzzy msgctxt "TITLE" msgid "OpenID settings" msgstr "إعدادات الهوية المفتوحة" @@ -506,7 +496,6 @@ msgstr "" "المستخدم. أدر هوياتك المفتوحة هنا." #. TRANS: Fieldset legend. -#, fuzzy msgctxt "LEGEND" msgid "Add OpenID" msgstr "أضف هوية مفتوحة" @@ -519,13 +508,11 @@ msgstr "" "إذا أردت إضافة هوية مفتوحة إلى حسابك، أدخلها إلى الصندوق أدناه وانقر \"أضف\"." #. TRANS: Button text for adding an OpenID URL. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "أضف" #. TRANS: Header on OpenID settings page. -#, fuzzy msgctxt "HEADER" msgid "Remove OpenID" msgstr "أزل الهوية المفتوحة" @@ -546,7 +533,6 @@ msgstr "يمكنك إزالة هوية مفتوحة من حسابك بنفر ا #. TRANS: Button text to remove an OpenID. #. TRANS: Button text to remove an OpenID trustroot. -#, fuzzy msgctxt "BUTTON" msgid "Remove" msgstr "أزل" @@ -564,7 +550,6 @@ msgstr "" "القائمة لمنعه من الوصول إلى هويتك المفتوحة." #. TRANS: Form validation error if no OpenID providers can be added. -#, fuzzy msgid "Cannot add new providers." msgstr "تعذرت إضافة مزودين جدد." diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index b18ef4f495..58a72d82c7 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:23+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index b45fbb9353..ea0c775680 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -16,14 +16,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:23+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 3c97f32e09..756de64966 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:24+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -52,7 +52,6 @@ msgid "Continue" msgstr "Continuer" #. TRANS: Button text to cancel OpenID identity verification. -#, fuzzy msgctxt "BUTTON" msgid "Cancel" msgstr "Annuler" @@ -491,7 +490,6 @@ msgstr "" "utilisateurs !" #. TRANS: Button text to save OpenID settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index bd28754096..ea171acc73 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:24+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po index ba022c4bff..b257e58853 100644 --- a/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ko/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:24+0000\n" -"Language-Team: Korean \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:26+0000\n" +"Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index c16b039b2c..f94756f69d 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:24+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 13b99ac338..16c9ebd04b 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:24+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:26+0000\n" "Last-Translator: Siebrand Mazeland \n" -"Language-Team: Dutch \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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 6bb1681b2f..f9b8a24ac7 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:24+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 80ca5e8941..4d24c072f0 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:24+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index edb9380be5..5bafca612a 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 5df2ab477e..5c7ca28a7c 100644 --- a/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/br/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po index 9586c63dc5..7f034595f9 100644 --- a/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/de/LC_MESSAGES/OpenX.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OpenX to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Fujnky # Author: George Animal # Author: Giftpflanze @@ -12,20 +13,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Menu item title. -#, fuzzy msgid "OpenX configuration." msgstr "OpenX-Konfiguration" @@ -92,6 +92,5 @@ msgid "Save" msgstr "Speichern" #. TRANS: Submit button title in OpenX admin panel. -#, fuzzy msgid "Save OpenX settings." -msgstr "OpenX-Einstellungen speichern" +msgstr "OpenX-Einstellungen speichern." diff --git a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po index 049552699d..5123a4c186 100644 --- a/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/fr/LC_MESSAGES/OpenX.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po index 8746f2c3b6..2dc19ce720 100644 --- a/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/ia/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po index 72574bfbe4..f78508743e 100644 --- a/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/mk/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po index eb30578349..b8695e3cc9 100644 --- a/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/nl/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po index c63dc1a66b..3799f20420 100644 --- a/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/tl/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po index 617d213e83..19171b5cdc 100644 --- a/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po +++ b/plugins/OpenX/locale/uk/LC_MESSAGES/OpenX.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenX\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openx\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Orbited/locale/Orbited.pot b/plugins/Orbited/locale/Orbited.pot index 957f3e322e..a663f1a862 100644 --- a/plugins/Orbited/locale/Orbited.pot +++ b/plugins/Orbited/locale/Orbited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/Orbited/locale/de/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po index 2f31f687e1..4a7f3efafa 100644 --- a/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/de/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po index 2d52a24e08..221c97eeca 100644 --- a/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/fr/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:26+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po index e0f16336df..34ef551868 100644 --- a/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/ia/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:27+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po index 494a10e9c3..310e9b9475 100644 --- a/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/mk/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:27+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po index b377ddd87e..c1326a8129 100644 --- a/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/nl/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:27+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po index 9ecdf4fd32..aaef27f1fa 100644 --- a/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/tl/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:27+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po index c422fd5487..6b8707109f 100644 --- a/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po +++ b/plugins/Orbited/locale/uk/LC_MESSAGES/Orbited.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Orbited\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:27+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:13+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-orbited\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 5257a96b90..513d429f81 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 980052fc42..0b2f07b62e 100644 --- a/plugins/PiwikAnalytics/locale/de/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po index f563f45db3..f7e0e7bc2d 100644 --- a/plugins/PiwikAnalytics/locale/es/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po index 0ee0bb1132..609559ba0e 100644 --- a/plugins/PiwikAnalytics/locale/fr/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po index 860cf2513e..83dbae22a1 100644 --- a/plugins/PiwikAnalytics/locale/he/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po index 813509a9e9..3a037da3ad 100644 --- a/plugins/PiwikAnalytics/locale/ia/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po index 80bf2c7b71..3c0972f61e 100644 --- a/plugins/PiwikAnalytics/locale/id/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po index c976c728d4..12f65eae36 100644 --- a/plugins/PiwikAnalytics/locale/mk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po index 170a46325e..c3fdcbc6ff 100644 --- a/plugins/PiwikAnalytics/locale/nb/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po index 37facc9716..5be608dbc5 100644 --- a/plugins/PiwikAnalytics/locale/nl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:40+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po index 38ce2331c2..56349d5195 100644 --- a/plugins/PiwikAnalytics/locale/pt/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:41+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po index 35528ca508..f558395795 100644 --- a/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/pt_BR/LC_MESSAGES/PiwikAnalytics.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PiwikAnalytics\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:41+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po index 8e0b0a6ab7..16b5b148b6 100644 --- a/plugins/PiwikAnalytics/locale/ru/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:41+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po index 3b159b4907..c91d6d2f03 100644 --- a/plugins/PiwikAnalytics/locale/tl/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:41+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po b/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po index a2dd6011d9..9773d6438e 100644 --- a/plugins/PiwikAnalytics/locale/uk/LC_MESSAGES/PiwikAnalytics.po +++ b/plugins/PiwikAnalytics/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:41+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-piwikanalytics\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Poll/locale/Poll.pot b/plugins/Poll/locale/Poll.pot index dfa9be1af0..b3432f4136 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po new file mode 100644 index 0000000000..eb44a49ee6 --- /dev/null +++ b/plugins/Poll/locale/ar/LC_MESSAGES/Poll.po @@ -0,0 +1,150 @@ +# Translation of StatusNet - Poll 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 - Poll\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-poll\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Client exception thrown trying to view a non-existing poll. +msgid "No such poll." +msgstr "" + +#. TRANS: Client exception thrown trying to view a non-existing poll notice. +msgid "No such poll notice." +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 +msgid "%1$s's poll: %2$s" +msgstr "استطلاع %1$s: %2$s" + +#. TRANS: Field label on the page to create a poll. +msgid "Question" +msgstr "السؤال" + +#. TRANS: Field title on the page to create a poll. +msgid "What question are people answering?" +msgstr "ما السؤال الذي سيجيبه الناس؟" + +#. TRANS: Field label for an answer option on the page to create a poll. +#. TRANS: %d is the option number. +#, php-format +msgid "Option %d" +msgstr "الخيار %d" + +#. TRANS: Button text for saving a new poll. +msgctxt "BUTTON" +msgid "Save" +msgstr "احفظ" + +#. TRANS: Plugin description. +msgid "Simple extension for supporting basic polls." +msgstr "" + +#. TRANS: Exception thrown trying to respond to a poll without a poll reference. +msgid "Invalid poll response: No poll reference." +msgstr "" + +#. TRANS: Exception thrown trying to respond to a non-existing poll. +msgid "Invalid poll response: Poll is unknown." +msgstr "" + +#. TRANS: Exception thrown when performing an unexpected action on a poll. +#. TRANS: %s is the unexpected object type. +#, php-format +msgid "Unexpected type for poll plugin: %s." +msgstr "" + +#. TRANS: Error text displayed if no poll data could be found. +msgid "Poll data is missing" +msgstr "" + +#. TRANS: Application title. +msgctxt "APPTITLE" +msgid "Poll" +msgstr "استطلاع" + +#. TRANS: Client exception thrown when responding to a poll with an invalid option. +#. TRANS: Client exception thrown responding to a poll with an invalid answer. +msgid "Invalid poll selection." +msgstr "" + +#. TRANS: Notice content voting for a poll. +#. TRANS: %s is the chosen option in the poll. +#. TRANS: Rendered version of the notice content voting for a poll. +#. TRANS: %s a link to the poll with the chosen option as link description. +#, php-format +msgid "voted for \"%s\"" +msgstr "" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "أرسل" + +#. TRANS: Notice content creating a poll. +#. TRANS: %1$s is the poll question, %2$s is a link to the poll. +#, php-format +msgid "Poll: %1$s %2$s" +msgstr "استطلاع: %1$s %2$s" + +#. TRANS: Rendered version of the notice content creating a poll. +#. TRANS: %s is a link to the poll with the question as link description. +#, php-format +msgid "Poll: %s" +msgstr "استطلاع: %s" + +#. TRANS: Title for poll page. +msgid "New poll" +msgstr "اقتراع جديد" + +#. TRANS: Client exception thrown trying to create a poll while not logged in. +msgid "You must be logged in to post a poll." +msgstr "" + +#. TRANS: Client exception thrown trying to create a poll without a question. +msgid "Poll must have a question." +msgstr "" + +#. TRANS: Client exception thrown trying to create a poll with fewer than two options. +msgid "Poll must have at least two options." +msgstr "" + +#. TRANS: Page title after sending a notice. +msgid "Notice posted" +msgstr "أُرسل الإشعار" + +#. TRANS: Page title for poll response. +msgid "Poll response" +msgstr "" + +#. TRANS: Client exception thrown trying to respond to a poll while not logged in. +msgid "You must be logged in to respond to a poll." +msgstr "" + +#. TRANS: Client exception thrown trying to respond to a non-existing poll. +msgid "Invalid or missing poll." +msgstr "" + +#. TRANS: Page title after sending a poll response. +msgid "Poll results" +msgstr "نتائج الاستطلاع" diff --git a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po index 77d1621e99..bc928c4282 100644 --- a/plugins/Poll/locale/de/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/de/LC_MESSAGES/Poll.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Poll to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Giftpflanze # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -59,12 +60,10 @@ msgid "Simple extension for supporting basic polls." msgstr "Einfache Erweiterung für die Unterstützung von einfachen Abstimmungen." #. TRANS: Exception thrown trying to respond to a poll without a poll reference. -#, fuzzy msgid "Invalid poll response: No poll reference." msgstr "Ungültige Abstimmungsantwort: keine Abstimmungsreferenz." #. TRANS: Exception thrown trying to respond to a non-existing poll. -#, fuzzy msgid "Invalid poll response: Poll is unknown." msgstr "Ungültige Abstimmungsantwort: Abstimmung unbekannt." diff --git a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po index cbb1484e5c..9655b51c35 100644 --- a/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/fr/LC_MESSAGES/Poll.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -44,7 +44,7 @@ msgstr "Question" #. TRANS: Field title on the page to create a poll. msgid "What question are people answering?" -msgstr "A quelle question répondent les gens?" +msgstr "À quelle question répondent les gens ?" #. TRANS: Field label for an answer option on the page to create a poll. #. TRANS: %d is the option number. diff --git a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po index e6545bb085..b45c875455 100644 --- a/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/ia/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po index 64c57a2720..ced3a8c47d 100644 --- a/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/mk/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po index 53a044b27f..4f65cfe31a 100644 --- a/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/nl/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po index a1c4ba026c..346ec0de82 100644 --- a/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/tl/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po index 2683379ba8..a07ae50cc7 100644 --- a/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po +++ b/plugins/Poll/locale/uk/LC_MESSAGES/Poll.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Poll\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:15+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poll\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PostDebug/locale/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 6919e027b7..71aaa29654 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 4e4d754fe0..36d9c2b0fc 100644 --- a/plugins/PostDebug/locale/de/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po index 115d1903c0..4685bca4a0 100644 --- a/plugins/PostDebug/locale/es/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po index d1cbfb7b0a..14e071f31d 100644 --- a/plugins/PostDebug/locale/fi/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po index 0473555644..2873f871e7 100644 --- a/plugins/PostDebug/locale/fr/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po index 32754bd6e5..d91ab7ffe4 100644 --- a/plugins/PostDebug/locale/he/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:43+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po index 0bd06bc786..4493baf04d 100644 --- a/plugins/PostDebug/locale/ia/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po index 68f5343e03..2130b34a7a 100644 --- a/plugins/PostDebug/locale/id/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po index 662e7eb321..a348176c87 100644 --- a/plugins/PostDebug/locale/ja/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po index a5da74afbd..21eb9b2c1b 100644 --- a/plugins/PostDebug/locale/mk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po index 4fd2b21c5c..33e2069c4c 100644 --- a/plugins/PostDebug/locale/nb/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po index 6954c3955d..f2a0f30d7c 100644 --- a/plugins/PostDebug/locale/nl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po index 2c98110940..a76c55c482 100644 --- a/plugins/PostDebug/locale/pt/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po index 1e591f3d38..1b0220b809 100644 --- a/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/pt_BR/LC_MESSAGES/PostDebug.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PostDebug\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:46+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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po index 6001502c0a..e03a89767e 100644 --- a/plugins/PostDebug/locale/ru/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po index 1e2a51f149..f839fd6c57 100644 --- a/plugins/PostDebug/locale/tl/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po b/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po index 4276dbfad4..38e33a23c5 100644 --- a/plugins/PostDebug/locale/uk/LC_MESSAGES/PostDebug.po +++ b/plugins/PostDebug/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-postdebug\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index b29db312ea..cdd4830882 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/af/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po index 1c3ac79f0f..cbbb25416a 100644 --- a/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/af/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Afrikaans \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:46+0000\n" +"Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po index 666e4f4142..f4e624ecf7 100644 --- a/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/br/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po index 391b55b3d3..9edbaa0659 100644 --- a/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ca/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:44+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:47+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po index b7bd3483a8..e598ade8a4 100644 --- a/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/de/LC_MESSAGES/PoweredByStatusNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po index 40212b14d4..2599572b1a 100644 --- a/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/fr/LC_MESSAGES/PoweredByStatusNet.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po index 15807573bc..5bb175a743 100644 --- a/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/gl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po index 2d2cbc5589..14575ec1e9 100644 --- a/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/he/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po index ccbc4c9671..4fde406694 100644 --- a/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ia/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po index 4f7ad893be..dfdf9fed5f 100644 --- a/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/mk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index e9089bc5b8..e9a4b2b601 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po index b4fc964fe1..41f91c0f29 100644 --- a/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/pt/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po index b00458be8a..e2e5af2874 100644 --- a/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/ru/LC_MESSAGES/PoweredByStatusNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po index ac7df30dd9..397e9c56ed 100644 --- a/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/sv/LC_MESSAGES/PoweredByStatusNet.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po index 22b3b4239c..c61290da3c 100644 --- a/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/tl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po index 6adaee5718..5decc521c4 100644 --- a/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/uk/LC_MESSAGES/PoweredByStatusNet.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:45+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:26+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PtitUrl/locale/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index 65f8f20f19..7ebfd47d67 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 4183ebd6df..5794c865f7 100644 --- a/plugins/PtitUrl/locale/br/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po index c7a7f66803..f02d532ff8 100644 --- a/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/de/LC_MESSAGES/PtitUrl.po @@ -1,6 +1,7 @@ # Translation of StatusNet - PtitUrl to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. @@ -9,21 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Exception thrown when URL shortening plugin was configured incorrectly. msgid "You must specify a serviceUrl for ptit URL shortening." -msgstr "" +msgstr "Du musst eine „serviceUrl“ zur ptit-URL-Kürzung angeben." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format diff --git a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po index 5009cefe9e..c75eab14bb 100644 --- a/plugins/PtitUrl/locale/es/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po index 519558bac4..7bb6792619 100644 --- a/plugins/PtitUrl/locale/fr/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po index 8f0f05b575..36aedab6b0 100644 --- a/plugins/PtitUrl/locale/gl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/gl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:48+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po index a77a4bfbe8..d112c23df4 100644 --- a/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/he/LC_MESSAGES/PtitUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po index a2387a2fee..6bad602b3c 100644 --- a/plugins/PtitUrl/locale/ia/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po index 476549c50c..004481ac59 100644 --- a/plugins/PtitUrl/locale/ja/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po index a398e37f55..32455b8302 100644 --- a/plugins/PtitUrl/locale/mk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po index 88418d81be..2a465423c9 100644 --- a/plugins/PtitUrl/locale/nb/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po index 28ffe8b93b..f24ebf54a5 100644 --- a/plugins/PtitUrl/locale/nl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po index 242547af72..30db61168b 100644 --- a/plugins/PtitUrl/locale/pt/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po index efe6da0fa3..29a18c331d 100644 --- a/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/pt_BR/LC_MESSAGES/PtitUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PtitUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po index e8115492f2..c1e1c7d4bb 100644 --- a/plugins/PtitUrl/locale/ru/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po index 4304358ffd..b2fc13cb14 100644 --- a/plugins/PtitUrl/locale/tl/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po b/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po index 85a22eef3d..78f91d3d60 100644 --- a/plugins/PtitUrl/locale/uk/LC_MESSAGES/PtitUrl.po +++ b/plugins/PtitUrl/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:46+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ptiturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot index de768874dc..b4ab8d1658 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/QnA/locale/ar/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po new file mode 100644 index 0000000000..c451113c84 --- /dev/null +++ b/plugins/QnA/locale/ar/LC_MESSAGES/QnA.po @@ -0,0 +1,313 @@ +# Translation of StatusNet - QnA 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 - QnA\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:20:36+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-qna\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Title for Question page. +msgid "New question" +msgstr "سؤال جديد" + +#. TRANS: Client exception thrown trying to create a Question while not logged in. +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 "نُشر السؤال." + +#. TRANS: Client exception thrown when requesting a non-existing answer. +#. TRANS: Did we used to have it, and it got deleted? +msgid "No such answer." +msgstr "" + +#. TRANS: Client exception thrown when requesting an answer that has no connected question. +msgid "No question for this answer." +msgstr "" + +#. TRANS: Client exception thrown when requesting answer data for a non-existing user. +#. TRANS: Client exception thrown trying to view a question of a non-existing user. +msgid "No such user." +msgstr "" + +#. TRANS: Client exception thrown when requesting answer data for a user without a profile. +#. 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. +#, php-format +msgid "%1$s's answer to \"%2$s\"" +msgstr "إجابة %1$s ل\"%2$s\"" + +#. TRANS: Page title for revising a question +msgid "Revise 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 answer." +msgstr "" + +#. TRANS: Page title after sending an answer. +#. TRANS: Page title for and answer to a question. +#. TRANS: Form legend for showing the answer. +msgid "Answer" +msgstr "إجابة" + +#. TRANS: Form title for sending an answer. +msgctxt "TITLE" +msgid "Answer" +msgstr "أجب" + +#. 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 close a question +msgid "Close question" +msgstr "أغلق السؤال" + +#. TRANS: Client exception thrown trying to close a question when not logged in +msgid "You must be logged in to close a question." +msgstr "" + +#. TRANS: Client exception thrown trying to respond to a non-existing question. +msgid "Invalid or missing question." +msgstr "" + +#. TRANS: Exception thrown trying to close another user's question. +msgid "You did not ask this question." +msgstr "" + +#. TRANS: Page title after sending an answer. +#. TRANS: Page title after sending in a vote for a question or answer. +msgid "Answers" +msgstr "الإجابات" + +#. TRANS: Page title after an AJAX error occurs on the post answer page. +msgid "Ajax Error" +msgstr "خطأ أجاكس" + +#. TRANS: Title for form to send answer to a question. +msgctxt "TITLE" +msgid "Your answer" +msgstr "إجابتك" + +#. TRANS: Error message displayed when an answer has no content. +#. TRANS: Error message displayed when answer data is not present. +msgid "Answer data is missing." +msgstr "" + +#. TRANS: Plugin description. +msgid "Question and Answers micro-app." +msgstr "" + +#. TRANS: Application title. +msgctxt "TITLE" +msgid "Question" +msgstr "سؤال" + +#. TRANS: Exception thrown when there are too many activity objects. +msgid "Too many activity objects." +msgstr "" + +#. TRANS: Exception thrown when an incorrect object type is encountered. +msgid "Wrong type for object." +msgstr "" + +#. TRANS: Exception thrown when answering a non-existing question. +msgid "Answer to unknown question." +msgstr "" + +#. TRANS: Exception thrown when an object type is encountered that cannot be handled. +msgid "Unknown object type." +msgstr "" + +#. TRANS: Exception thrown when requesting a non-existing question notice. +msgid "Unknown question notice." +msgstr "" + +#. TRANS: Exception thrown when performing an unexpected action on a question. +#. TRANS: %s is the unpexpected object type. +#, php-format +msgid "Unexpected type for QnA plugin: %s." +msgstr "" + +#. TRANS: Error message displayed when question data is not present. +msgid "Question data is missing." +msgstr "" + +#. TRANS: Placeholder value for a possible answer to a question +#. TRANS: by the logged in user. +msgid "Your answer..." +msgstr "إجابتك..." + +#. TRANS: Link description for link to full notice text if it is longer than +#. TRANS: what will be dispplayed. +msgid "…" +msgstr "…" + +#. TRANS: Title for link that is an ellipsis in English. +msgid "more..." +msgstr "مزيد..." + +#. TRANS: Exception thown when getting a question with a non-existing ID. +#. TRANS: %s is the non-existing question ID. +#, php-format +msgid "No question with ID %s" +msgstr "" + +#. TRANS: Exception thown when getting a profile with a non-existing ID. +#. TRANS: %s is the non-existing profile ID. +#. TRANS: Exception trown when getting a profile for a non-existing ID. +#. TRANS: %s is the provided profile ID. +#, php-format +msgid "No profile with ID %s" +msgstr "" + +#. TRANS: %s is the number of answer revisions. +#, php-format +msgid "%s revision" +msgid_plural "%s revisions" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#. TRANS: Text for a question that was answered. +#. TRANS: %1$s is the user that answered, %2$s is the question title, +#. TRANS: %2$s is the answer content. +#, php-format +msgid "%1$s answered the question \"%2$s\": %3$s" +msgstr "" + +#. TRANS: Text for a question that was answered. +#. TRANS: %s is the 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. +#, php-format +msgid "answered \"%s\"" +msgstr "أجاب \"%s\"" + +#. TRANS: Number of given answers to a question. +#. TRANS: %s is the number of given answers. +#, php-format +msgid "%s answer" +msgid_plural "%s answers" +msgstr[0] "لا توجد إجابات" +msgstr[1] "جواب واحد" +msgstr[2] "جوابان" +msgstr[3] "%s إجابات" +msgstr[4] "%s إجابة" +msgstr[5] "" + +#. TRANS: Notification that a question cannot be answered anymore because it is closed. +msgid "This question is closed." +msgstr "هذا السؤال مغلق." + +#. 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 revised answer. +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Submit" +msgstr "أرسل" + +#. TRANS: Field label. +msgid "Enter your answer" +msgstr "أدخل إجابتك" + +#. TRANS: Button text for submitting a poll response. +msgctxt "BUTTON" +msgid "Answer" +msgstr "أجب" + +#. TRANS: Field label for a new question. +msgctxt "LABEL" +msgid "Title" +msgstr "العنوان" + +#. TRANS: Field title for a new question. +msgid "The title of your question." +msgstr "عنوان سؤالك." + +#. TRANS: Field label for question details. +msgctxt "LABEL" +msgid "Description" +msgstr "الوصف" + +#. TRANS: Field title for question details. +msgid "Your question in detail." +msgstr "سؤالك بالتفصيل." + +#. TRANS: Button text for saving a new question. +msgctxt "BUTTON" +msgid "Save" +msgstr "احفظ" + +#. TRANS: Form legend for revising the answer. +msgctxt "LEGEND" +msgid "Question" +msgstr "سؤال" + +#. TRANS: Button text for closing a question. +msgctxt "BUTTON" +msgid "Close" +msgstr "أغلق" + +#. TRANS: Title for button text for closing a question. +msgid "Close the question to no one can answer it anymore." +msgstr "" + +#. TRANS: Button text for marking an answer as "best". +msgctxt "BUTTON" +msgid "Best" +msgstr "الأفضل" + +#. TRANS: Title for button text marking an answer as "best". +msgid "Mark this answer as the best answer." +msgstr "علّم هذه الإجابة أفضل إجابة." diff --git a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po index 4c0561fb8b..e28bcedfda 100644 --- a/plugins/QnA/locale/de/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/de/LC_MESSAGES/QnA.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:50+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po index 7701e3d7f0..d1e6c94c3e 100644 --- a/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/fr/LC_MESSAGES/QnA.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:50+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -83,7 +83,6 @@ msgid "Answer" msgstr "Réponse" #. TRANS: Form title for sending an answer. -#, fuzzy msgctxt "TITLE" msgid "Answer" msgstr "Réponse" @@ -115,9 +114,8 @@ msgid "Invalid or missing question." msgstr "Question invalide ou manquante." #. TRANS: Exception thrown trying to close another user's question. -#, fuzzy msgid "You did not ask this question." -msgstr "Vous n'avez pas posé la question." +msgstr "Vous n’avez pas posé cette question." #. TRANS: Page title after sending an answer. #. TRANS: Page title after sending in a vote for a question or answer. @@ -143,7 +141,6 @@ msgid "Question and Answers micro-app." msgstr "Micro-application Question and Answers" #. TRANS: Application title. -#, fuzzy msgctxt "TITLE" msgid "Question" msgstr "Question" @@ -186,7 +183,7 @@ msgstr "Votre réponse..." #. TRANS: Link description for link to full notice text if it is longer than #. TRANS: what will be dispplayed. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Title for link that is an ellipsis in English. msgid "more..." @@ -289,7 +286,6 @@ msgid "Save" msgstr "Enregistrer" #. TRANS: Form legend for revising the answer. -#, fuzzy msgctxt "LEGEND" msgid "Question" msgstr "Question" diff --git a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po index cbcbc5f3c7..8b3dd07622 100644 --- a/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/ia/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:50+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po index f13acf1704..588d438f72 100644 --- a/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/mk/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:50+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po index 0059e6c311..b62ab7f2a0 100644 --- a/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/nl/LC_MESSAGES/QnA.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:50+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po index c3b7652c18..b2fa6901e2 100644 --- a/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/tl/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po index 43a2b3a57c..fc8afcc88d 100644 --- a/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po +++ b/plugins/QnA/locale/uk/LC_MESSAGES/QnA.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - QnA\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-qna\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/RSSCloud/locale/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 96f4f8eebf..8a8811732e 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 b4e5bb5789..5d69e7379c 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -1,6 +1,7 @@ # Translation of StatusNet - RSSCloud to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: David Güdel # Author: Fujnky # Author: Giftpflanze @@ -12,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -41,14 +42,13 @@ msgid "Request must be POST." msgstr "Anfrage muss ein POST sein." #. TRANS: Form validation error displayed when HTTP POST is not used. -#, fuzzy msgid "Only HTTP POST notifications are supported at this time." msgstr "Nur HTTP-POST-Benachrichtigungen werden im Moment unterstützt." #. TRANS: List separator. msgctxt "SEPARATOR" msgid ", " -msgstr "" +msgstr ", " #. TRANS: Form validation error displayed when a request body is missing expected parameters. #. TRANS: %s is a list of parameters separated by a list separator (default: ", "). @@ -57,7 +57,6 @@ msgid "The following parameters were missing from the request body: %s." msgstr "Die folgenden Parameter fehlten aus den Anforderungshauptteil: %s." #. TRANS: Form validation error displayed when not providing any valid profile feed URLs. -#, fuzzy msgid "" "You must provide at least one valid profile feed URL (url1, url2, url3 ... " "urlN)." @@ -70,11 +69,10 @@ msgid "Feed subscription failed: Not a valid feed." msgstr "Feed-Abonnement fehlgeschlagen: Ungültiger Feed." #. TRANS: Form validation error displayed when feed subscription failed. -#, fuzzy msgid "" "Feed subscription failed: Notification handler does not respond correctly." msgstr "" -"Feed-Abonnement fehlgeschlagen - Benachrichtigungs-Handler reagiert nicht " +"Feed-Abonnement fehlgeschlagen: Benachrichtigungs-Handler reagiert nicht " "richtig." #. TRANS: Success message after subscribing to one or more feeds. diff --git a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po index 00e8b5bd73..57cdbe52c4 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index 948035f2ea..bfa731b4cd 100644 --- a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po index 9fa92faf5a..55bd0723e9 100644 --- a/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/mk/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po index 1bb89a3059..9331b4cd84 100644 --- a/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/nl/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po index ed3e4d39fe..d2b180eba5 100644 --- a/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/tl/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po index 9ee85148d1..6face43572 100644 --- a/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/uk/LC_MESSAGES/RSSCloud.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:58+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/Realtime/locale/Realtime.pot b/plugins/Realtime/locale/Realtime.pot index 44e27747ec..3cab78b7fe 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 25ff994f5a..133dd204d3 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: Afrikaans \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index d30e4f0f25..903f8f0139 100644 --- a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index ab92c976db..7a75fcff12 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index 09248ad2ea..3861fd4008 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index a26ac222ea..fa7885db5d 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Realtime to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Fujnky # -- # This file is distributed under the same license as the StatusNet package. @@ -9,26 +10,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:51+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "You have to POST it." -msgstr "" +msgstr "Du musst eine POST-Anfrage schicken." msgid "No channel key argument." -msgstr "" +msgstr "Kein Kanalpasswort als Argument angegeben." msgid "No such channel." -msgstr "" +msgstr "Kanal existiert nicht." #. TRANS: Text label for realtime view "play" button, usually replaced by an icon. msgctxt "BUTTON" diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index 3ad93ac6fa..ed893ac7e0 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index adeba0c094..ee1983de8c 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,26 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "You have to POST it." -msgstr "" +msgstr "Es necessari inviar lo con POST." msgid "No channel key argument." -msgstr "" +msgstr "Il non ha un parametro pro clave de canal." msgid "No such channel." -msgstr "" +msgstr "Iste canal non existe." #. TRANS: Text label for realtime view "play" button, usually replaced by an icon. msgctxt "BUTTON" diff --git a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po index 85161e6e72..9e4a49f03d 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Latvian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n != " diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 42fa6083d3..04a547bbdb 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,26 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" msgid "You have to POST it." -msgstr "" +msgstr "Ќе мора да го објавите со POST." msgid "No channel key argument." -msgstr "" +msgstr "Нема аргумент за клучот на каналот." msgid "No such channel." -msgstr "" +msgstr "Нема таков канал." #. TRANS: Text label for realtime view "play" button, usually replaced by an icon. msgctxt "BUTTON" diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index b14505a3b5..075682ce17 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Nepali \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index 920f3e23dd..72e5243bec 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,26 +9,26 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "You have to POST it." -msgstr "" +msgstr "U moet het bericht POST-en." msgid "No channel key argument." -msgstr "" +msgstr "Er is geen kanaalsleutel als argument opgegeven." msgid "No such channel." -msgstr "" +msgstr "Dat kanaal bestaat niet." #. TRANS: Text label for realtime view "play" button, usually replaced by an icon. msgctxt "BUTTON" diff --git a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po index eec0417f5e..85a1e129be 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po index d57281b41b..349692ed42 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index fcdbfde94b..9bbd1186c5 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index 04f871dbf9..e530bf1aff 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index 2ffbe36107..f36bd5562c 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po index a2fb74fca2..aa8f7b5bda 100644 --- a/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ca/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:52+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po index ae2acd4bcd..01c2cc6d20 100644 --- a/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/de/LC_MESSAGES/Recaptcha.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po index de76fa8d5e..83447592ea 100644 --- a/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fr/LC_MESSAGES/Recaptcha.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po index e4c7e03819..a6043fb2d1 100644 --- a/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/fur/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Friulian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:56+0000\n" +"Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po index a123a7a1ba..62b0e93b7d 100644 --- a/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ia/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po index f73b6763c9..5cdbe2474b 100644 --- a/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/mk/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po index e494796417..08ed08a704 100644 --- a/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nb/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:56+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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po index 237629a99e..84b68745fe 100644 --- a/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/nl/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:56+0000\n" +"Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po index 6225183d78..77c37194b6 100644 --- a/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/pt/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:56+0000\n" +"Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po index 20bac46bc4..7333576876 100644 --- a/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/ru/LC_MESSAGES/Recaptcha.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:56+0000\n" +"Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po index 8c7a190fb9..f55ec48585 100644 --- a/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/sv/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po index 3236b46588..e5d9773d61 100644 --- a/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/tl/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po index fb4c05c4f9..f32fcddc35 100644 --- a/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po +++ b/plugins/Recaptcha/locale/uk/LC_MESSAGES/Recaptcha.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Recaptcha\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:53+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:24+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-recaptcha\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index ac8569213c..77cb5b5407 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 623711b38c..b36a12be69 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index c6a37bcc8e..b25d51ce14 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 47845cb06a..e14ef5ef59 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 44c7f6da38..4cd989ab9b 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 888ef64812..7f62ed9e14 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 7531e0c364..b57af5396d 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index 2a1437331f..bb97683677 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:54+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-registerthrottle\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index add5313c45..7bfd375fe4 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po new file mode 100644 index 0000000000..74a648a403 --- /dev/null +++ b/plugins/RequireValidatedEmail/locale/ar/LC_MESSAGES/RequireValidatedEmail.po @@ -0,0 +1,103 @@ +# Translation of StatusNet - RequireValidatedEmail 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 - RequireValidatedEmail\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21:58+0000\n" +"Language-Team: Arabic \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-18 16:19:28+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Client exception thrown when trying to post notices before validating an e-mail address. +msgid "You must validate your email address before posting." +msgstr "" + +#. TRANS: Client exception thrown when trying to register without providing an e-mail address. +msgid "You must provide an email address to register." +msgstr "" + +#. TRANS: Plugin description. +msgid "Disables posting without a validated email address." +msgstr "" + +#. TRANS: Client exception thrown when trying to register while already logged in. +msgid "You are already logged in." +msgstr "" + +#. TRANS: Client exception thrown when trying to register with a non-existing confirmation code. +msgid "Confirmation code not found." +msgstr "" + +#. TRANS: Client exception thrown when trying to register with a confirmation code that is not connected with a user. +msgid "No user for that confirmation code." +msgstr "" + +#. TRANS: Client exception thrown when trying to register with a invalid e-mail address. +#. TRANS: %s is the invalid e-mail address. +#, 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 "" + +#. TRANS: Client exception thrown when trying to register with too short a password. +msgid "Password too short." +msgstr "كلمة السر قصيرة جدا." + +#. TRANS: Client exception thrown when trying to register without providing the same password twice. +msgid "Passwords do not match." +msgstr "كلمتا السر غير متطابقتين." + +#. TRANS: Form instructions. %s is the nickname of the to be registered user. +#, 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 "" + +#. TRANS: Page title. +msgid "Set a password" +msgstr "تعيين كلمة السر" + +#. TRANS: Form legend. +msgid "Confirm email address" +msgstr "تأكيد عنوان البريد الإلكتروني" + +#. TRANS: Field label. +msgid "New password" +msgstr "كلمة السر الجديدة" + +#. TRANS: Field title for password field. +msgid "6 or more characters." +msgstr "6 أحرف أو أكثر." + +#. TRANS: Field label for repeat password field. +msgctxt "LABEL" +msgid "Confirm" +msgstr "أكّد" + +#. TRANS: Field title for repeat password field. +msgid "Same as password above." +msgstr "نفس كلمة السر أعلاه." + +#. TRANS: Button text for completing registration by e-mail. +msgctxt "BUTTON" +msgid "Save" +msgstr "احفظ" diff --git a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po index 2499d932a9..7b4eb0be07 100644 --- a/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/de/LC_MESSAGES/RequireValidatedEmail.po @@ -1,6 +1,7 @@ # Translation of StatusNet - RequireValidatedEmail to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Giftpflanze # Author: The Evil IP address # -- @@ -10,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:55+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -78,9 +79,8 @@ msgid "Set a password" msgstr "Passwort setzen" #. TRANS: Form legend. -#, fuzzy msgid "Confirm email address" -msgstr "E-Mail bestätigen" +msgstr "E-Mail-Adresse bestätigen" #. TRANS: Field label. msgid "New password" @@ -91,7 +91,6 @@ msgid "6 or more characters." msgstr "Mindestens 6 Zeichen." #. TRANS: Field label for repeat password field. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Bestätigen" @@ -101,7 +100,6 @@ msgid "Same as password above." msgstr "Dasselbe Passwort wie oben." #. TRANS: Button text for completing registration by e-mail. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Speichern" diff --git a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po index e0192cd146..c51b55a844 100644 --- a/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/fr/LC_MESSAGES/RequireValidatedEmail.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:55+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -81,9 +81,8 @@ msgid "Set a password" msgstr "Définir un nouveau mot de passe" #. TRANS: Form legend. -#, fuzzy msgid "Confirm email address" -msgstr "Confirmer le courriel" +msgstr "Confirmer l’adresse de courriel" #. TRANS: Field label. msgid "New password" @@ -94,7 +93,6 @@ msgid "6 or more characters." msgstr "6 caractères ou plus." #. TRANS: Field label for repeat password field. -#, fuzzy msgctxt "LABEL" msgid "Confirm" msgstr "Confirmer" diff --git a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po index d1bba24894..0c1d802831 100644 --- a/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/ia/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:55+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po index 2238907bb8..f2115855db 100644 --- a/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/mk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:55+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po index b8ce18e612..ae03bab308 100644 --- a/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/nl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po index 59a4245840..74a78f14a6 100644 --- a/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/tl/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po index 03c58a9be2..036c1ea00d 100644 --- a/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po +++ b/plugins/RequireValidatedEmail/locale/uk/LC_MESSAGES/RequireValidatedEmail.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RequireValidatedEmail\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-18 16:19:28+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-requirevalidatedemail\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 817666bbb5..037f956f66 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 89514fb946..4b7849614a 100644 --- a/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/de/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po index bbab840999..3922f88f1e 100644 --- a/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/fr/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po index 11284c5894..4779743a2b 100644 --- a/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/he/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:21: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po index 60219738dd..b5f33b92f1 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ia/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po index b61a2f8ea5..638e2a63ff 100644 --- a/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/id/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po index 8cb705d8a2..caf954722c 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ja/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po index c43a6877a2..2b56d5147d 100644 --- a/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/mk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:56+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po index fc09feb0e2..40f05ff2ea 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nb/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:57+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po index 43c586c50e..466d7c1f11 100644 --- a/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/nl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:57+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po index 7c2fc88972..1ee45c3e53 100644 --- a/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/ru/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:57+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po index 07c92b0063..d02eeea283 100644 --- a/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/tl/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:57+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po index 7770133233..17e0357ad4 100644 --- a/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po +++ b/plugins/ReverseUsernameAuthentication/locale/uk/LC_MESSAGES/ReverseUsernameAuthentication.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ReverseUsernameAuthentication\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:57+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-reverseusernameauthentication\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SQLProfile/locale/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index a8e16b6d36..6609ab31fd 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 8ddbd1d6af..c2a946ac7f 100644 --- a/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/de/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po index 94660bbf99..f73607c54e 100644 --- a/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/fr/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po index d908be63aa..3745df1caa 100644 --- a/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/he/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po index 695470e053..8af13beb06 100644 --- a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po index 7bf0fbd097..9132df35cb 100644 --- a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index 4ea40465b2..3372938376 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po index 503f39f45f..7c8ac6bbc0 100644 --- a/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/pt/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po index ba45a5a68f..6a60637f7a 100644 --- a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po index d4199edd56..af8e2baef9 100644 --- a/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/tl/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po index aa99c1ba0a..40b7bb3c71 100644 --- a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SQLStats/locale/SQLStats.pot b/plugins/SQLStats/locale/SQLStats.pot index 10d515b08a..641f5d2374 100644 --- a/plugins/SQLStats/locale/SQLStats.pot +++ b/plugins/SQLStats/locale/SQLStats.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/SQLStats/locale/de/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po index e5abd4af40..e0408096e1 100644 --- a/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/de/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po index 74ea3d107a..3a5435d06c 100644 --- a/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/fr/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po index ca8abc5fc2..8e37620c44 100644 --- a/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/he/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po index 31025b00ed..e76fe5d48d 100644 --- a/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ia/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po index f1b5dded24..4c8c1fee64 100644 --- a/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/ksh/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Colognian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:15+0000\n" +"Language-Team: Colognian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ksh\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po index 399bf4811f..f26ca4add8 100644 --- a/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/mk/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po index 8efc0991ce..6dcebc37e1 100644 --- a/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/nl/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po index c4e8757f50..ef1be6c712 100644 --- a/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/tl/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:11+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po index 150e21fad9..d292eac691 100644 --- a/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po +++ b/plugins/SQLStats/locale/uk/LC_MESSAGES/SQLStats.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLStats\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sqlstats\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sample/locale/Sample.pot b/plugins/Sample/locale/Sample.pot index 19e36170b4..598c93ed56 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/af/LC_MESSAGES/Sample.po b/plugins/Sample/locale/af/LC_MESSAGES/Sample.po index 872ab6b544..5f3402db4d 100644 --- a/plugins/Sample/locale/af/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/af/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:59+0000\n" -"Language-Team: Afrikaans \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:03+0000\n" +"Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po index 871a578988..d502585c64 100644 --- a/plugins/Sample/locale/ar/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ar/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:59+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:03+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " diff --git a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po b/plugins/Sample/locale/br/LC_MESSAGES/Sample.po index fbe2533d93..40b123da56 100644 --- a/plugins/Sample/locale/br/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/br/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:59+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po index dfcc3e92e3..77d733cb6c 100644 --- a/plugins/Sample/locale/ca/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:59+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po b/plugins/Sample/locale/de/LC_MESSAGES/Sample.po index eb14a628b3..0388bf4bea 100644 --- a/plugins/Sample/locale/de/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:59+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po b/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po index 725fde4fc6..78554a2e46 100644 --- a/plugins/Sample/locale/fr/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:21:59+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po index a8bb22fe17..522caf48c7 100644 --- a/plugins/Sample/locale/ia/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po b/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po index df36782115..d7d3c79a93 100644 --- a/plugins/Sample/locale/lb/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/lb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Luxembourgish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:03+0000\n" +"Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po index 98c94568da..92b3d94598 100644 --- a/plugins/Sample/locale/mk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index e6fff43ed3..b37336a103 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po b/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po index 3c97389f0b..f77561ccfb 100644 --- a/plugins/Sample/locale/pdc/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/pdc/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Deitsch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:03+0000\n" +"Language-Team: Deitsch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pdc\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po index 27a1c6c9b7..aea0061513 100644 --- a/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/ru/LC_MESSAGES/Sample.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po index 238957c02a..60ca1c186f 100644 --- a/plugins/Sample/locale/tl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po b/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po index 4c08f8e7c4..a871006dee 100644 --- a/plugins/Sample/locale/uk/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po index a53c07b601..f5929fde1e 100644 --- a/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/zh_CN/LC_MESSAGES/Sample.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:00+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-sample\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index dd691d8ede..3b71a189c3 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po index 307eff558e..d1fab22d2a 100644 --- a/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/de/LC_MESSAGES/SearchSub.po @@ -1,6 +1,7 @@ # Translation of StatusNet - SearchSub to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Giftpflanze # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:03+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -127,9 +128,8 @@ msgid "Unsubscribe" msgstr "Abbestellen" #. TRANS: Button title for unsubscribing from a text search. -#, fuzzy msgid "Unsubscribe from this search." -msgstr "Diese Suche nicht länger verfolgen" +msgstr "Diese Suche nicht länger verfolgen." #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" @@ -197,13 +197,13 @@ msgstr "Du verfolgst keine Suchen." #. TRANS: Separator for list of tracked searches. msgctxt "SEPARATOR" msgid "\", \"" -msgstr "" +msgstr "“, „" #. TRANS: Message given having disabled all search subscriptions with 'track off'. #. TRANS: %s is a list of searches. Separator default is '", "'. -#, fuzzy, php-format +#, php-format msgid "You are tracking searches for: \"%s\"." -msgstr "Du verfolgst Suchen für: %s" +msgstr "Du verfolgst Suchen für: „%s“." #. TRANS: Form legend. msgid "Subscribe to this search" @@ -215,9 +215,8 @@ msgid "Subscribe" msgstr "Abonnieren" #. TRANS: Button title for subscribing to a search. -#, fuzzy msgid "Subscribe to this search." -msgstr "Diese Suche abonnieren" +msgstr "Diese Suche abonnieren." #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #. TRANS: %s is the search for which the subscription removal failed. diff --git a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po index 705b7c16a4..f8809f826b 100644 --- a/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/fr/LC_MESSAGES/SearchSub.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:03+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -129,7 +129,7 @@ msgstr "Cesser la surveillance de cette recherche" #. TRANS: Page title when search unsubscription succeeded. msgid "Unsubscribed" -msgstr "désabonné" +msgstr "Désabonné" #. TRANS: Error text shown a user tries to track a search query they're already subscribed to. #, php-format @@ -208,9 +208,8 @@ msgid "Subscribe" msgstr "S’abonner" #. TRANS: Button title for subscribing to a search. -#, fuzzy msgid "Subscribe to this search." -msgstr "S’abonner à cette recherche" +msgstr "S’abonner à cette recherche." #. TRANS: Message given having failed to cancel one of the search subs with 'track off' command. #. TRANS: %s is the search for which the subscription removal failed. diff --git a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po index 7f13703717..deca32a162 100644 --- a/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/ia/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:03+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po index db49465d45..e712e54621 100644 --- a/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/mk/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:03+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po index 3753436910..7364caf45c 100644 --- a/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/nl/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:03+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po index 188ea75c4a..380dfc8bc4 100644 --- a/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/tl/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:03+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-searchsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po index f16974ae7e..07be960d1c 100644 --- a/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po +++ b/plugins/SearchSub/locale/uk/LC_MESSAGES/SearchSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SearchSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:03+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:39+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/ShareNotice/locale/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 6789b34b5c..28fbe581d1 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 9cafe3a352..4ac7f24ffa 100644 --- a/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ar/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:07+0000\n" +"Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -30,7 +30,7 @@ msgstr "\"%s\"" #. TRANS: Truncation symbol. msgid "…" -msgstr "" +msgstr "..." #. TRANS: Tooltip for image to share a notice on Twitter. msgid "Share on Twitter" diff --git a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po index c656f69016..21f134d5dc 100644 --- a/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/br/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po index e577a2bd6b..f60954df9e 100644 --- a/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ca/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po index a904418b00..fcdd88f2fb 100644 --- a/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/de/LC_MESSAGES/ShareNotice.po @@ -1,6 +1,7 @@ # Translation of StatusNet - ShareNotice to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -28,7 +29,7 @@ msgstr "„%s“" #. TRANS: Truncation symbol. msgid "…" -msgstr "" +msgstr "…" #. TRANS: Tooltip for image to share a notice on Twitter. msgid "Share on Twitter" diff --git a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po index c998d76fc3..4e49941f5e 100644 --- a/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fi/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:07+0000\n" +"Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po index 2d96e8671b..37d13f7d57 100644 --- a/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/fr/LC_MESSAGES/ShareNotice.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po index 96e0733104..e76f7a8257 100644 --- a/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/ia/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po index d725d3959c..a886050a68 100644 --- a/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/mk/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po index 6b7466df7d..d637662a1e 100644 --- a/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/nl/LC_MESSAGES/ShareNotice.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:04+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po index bd390f15c6..f3b1eef1bc 100644 --- a/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/te/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Telugu \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:08+0000\n" +"Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po index df2a495032..91e97d2ca0 100644 --- a/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tl/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po index 7a7db21704..a524772606 100644 --- a/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/tr/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:08+0000\n" +"Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po index 009ae56bb8..5ab9ff5353 100644 --- a/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po +++ b/plugins/ShareNotice/locale/uk/LC_MESSAGES/ShareNotice.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - ShareNotice\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-18 16:20:40+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sharenotice\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SimpleUrl/locale/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index eb5ed1f4fd..efcb767e3c 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 728d195113..075723b506 100644 --- a/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/br/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po index 2e8066a47c..dc8a0c983f 100644 --- a/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/de/LC_MESSAGES/SimpleUrl.po @@ -1,6 +1,7 @@ # Translation of StatusNet - SimpleUrl to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. @@ -9,21 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Exception thrown when the SimpleUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "" +msgstr "Du musst eine serviceUrl angeben." #. TRANS: Plugin description. #, php-format diff --git a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po index 45fe5c62b8..14166ddc35 100644 --- a/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/es/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po index 8d38d600c6..f53bf53a8d 100644 --- a/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fi/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po index e588f5660b..ed41551c36 100644 --- a/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/fr/LC_MESSAGES/SimpleUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po index e4090bdf53..fc78bf4fc7 100644 --- a/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/gl/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:09+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po index 1c3fec55e2..58a47e077d 100644 --- a/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/he/LC_MESSAGES/SimpleUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po index 1fc2009166..c0083b1596 100644 --- a/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ia/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po index e7eea22cd2..6a9b31197f 100644 --- a/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/id/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po index f90e2ced2f..2b0518d7d7 100644 --- a/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ja/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po index 599ea5185e..b0ca160db7 100644 --- a/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/mk/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:05+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po index fe2bcc31e5..674c680a51 100644 --- a/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nb/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:06+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po index 00d4531b80..a064a77982 100644 --- a/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/nl/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:06+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po index 39df48c10a..c2ff446ffc 100644 --- a/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/pt/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:06+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po index 8c9aa8e3c7..b6dcd33373 100644 --- a/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/ru/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:06+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po index ce506bc575..bb19159cae 100644 --- a/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/tl/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:06+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po index faafe08359..afc9885267 100644 --- a/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po +++ b/plugins/SimpleUrl/locale/uk/LC_MESSAGES/SimpleUrl.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SimpleUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:06+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:23+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-simpleurl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 0a98459699..76846682ab 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 51e5a1d001..e24d1e2b4c 100644 --- a/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/br/LC_MESSAGES/Sitemap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po index f782231476..bf7a687240 100644 --- a/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/de/LC_MESSAGES/Sitemap.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po index 492d9e57ac..d47c52c12e 100644 --- a/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/fr/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po index 35c20dc4e2..fa2a3df773 100644 --- a/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ia/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po index 4fc4fbb685..a2d229090b 100644 --- a/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/mk/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po index 1810b3293a..16a5a7f2cd 100644 --- a/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/nl/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po index 839fc23f97..ec9deb047d 100644 --- a/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/ru/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:07+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po index 5fe285ffc7..cb08dd7e56 100644 --- a/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/tl/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po index 13c20bf885..fa2aec65c6 100644 --- a/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po +++ b/plugins/Sitemap/locale/uk/LC_MESSAGES/Sitemap.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sitemap\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sitemap\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SlicedFavorites/locale/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index 777e5e5965..813e3ece50 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 01022d4005..3cf527fdf7 100644 --- a/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/de/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po index 1f617531fe..a274300d8a 100644 --- a/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/fr/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po index a87abdcfa1..d32124a94d 100644 --- a/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/he/LC_MESSAGES/SlicedFavorites.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po index e9acd76a15..1a5b6bc287 100644 --- a/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ia/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po index 63d5604bf1..2aac717309 100644 --- a/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/id/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po index 75c1466744..b7d9afae39 100644 --- a/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/mk/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po index 04e4ba7d3f..ec2d988fce 100644 --- a/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/nl/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po index 0af1cd98e3..92cb1b6882 100644 --- a/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/ru/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po index e803e974bb..3d4d9c6a55 100644 --- a/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/tl/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po index 14578d1f31..bcf1edc230 100644 --- a/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po +++ b/plugins/SlicedFavorites/locale/uk/LC_MESSAGES/SlicedFavorites.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SlicedFavorites\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:08+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-slicedfavorites\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index 59aac4d204..f23e6d5c1a 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 9ae0fd9699..d2226ab1e6 100644 --- a/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/de/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po index e7878e2f0c..8662b7a1e3 100644 --- a/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/fr/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po index f2133ef7db..3ba3bd21c7 100644 --- a/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ia/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po index 78a79515f0..7b0223da06 100644 --- a/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/mk/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po index 1ae02a492b..c08214e417 100644 --- a/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/nl/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po index e305af2f07..73394df90c 100644 --- a/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/ru/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po index 0b58c22461..be7c25095b 100644 --- a/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/tl/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po index a43dd8cced..aaf4db8b91 100644 --- a/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po +++ b/plugins/SphinxSearch/locale/uk/LC_MESSAGES/SphinxSearch.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SphinxSearch\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:09+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:51:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-sphinxsearch\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Spotify/locale/Spotify.pot b/plugins/Spotify/locale/Spotify.pot index 1d424963cd..400abffb64 100644 --- a/plugins/Spotify/locale/Spotify.pot +++ b/plugins/Spotify/locale/Spotify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/Spotify/locale/de/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po new file mode 100644 index 0000000000..c4f14245dd --- /dev/null +++ b/plugins/Spotify/locale/de/LC_MESSAGES/Spotify.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Spotify to German (Deutsch) +# Exported from translatewiki.net +# +# Author: ChrisiPK +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Spotify\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:27+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: de\n" +"X-Message-Group: #out-statusnet-plugin-spotify\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "Create pretty Spotify URLs." +msgstr "Schöne Spotify-URLs erstellen." diff --git a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po index 4a969725e2..8385bfefc3 100644 --- a/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/gl/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po index aa50bcc6cc..e7763d78e2 100644 --- a/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/he/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po index bc92773afe..1a56f6d37f 100644 --- a/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/ia/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po index 3da22f255e..25f99f5d82 100644 --- a/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/mk/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po index 5b175bfc4e..cf466ee737 100644 --- a/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/nl/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po index 6ae8d648d5..35b452b7bb 100644 --- a/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po +++ b/plugins/Spotify/locale/sv/LC_MESSAGES/Spotify.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Spotify\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:10+0000\n" -"Language-Team: Swedish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:13+0000\n" +"Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-spotify\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index 2bf886c0a5..f84661647e 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po index b3acd143fb..1f4b06c16a 100644 --- a/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/de/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po index 02713447a7..29d63fddbe 100644 --- a/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/fr/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po index 03a1708b3b..572ac78323 100644 --- a/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/he/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po index ca857a30f3..9ef4c80569 100644 --- a/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ia/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po index 2253ab1f44..4cbb727b93 100644 --- a/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/mk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po index 6974f9871b..a0ebd9f2ea 100644 --- a/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/nl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po index fc93c52a4b..124a83a475 100644 --- a/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/ru/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po index 0de95256be..887e41c2b5 100644 --- a/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/tl/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po index fd65c09fab..5a116555e7 100644 --- a/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po +++ b/plugins/StrictTransportSecurity/locale/uk/LC_MESSAGES/StrictTransportSecurity.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - StrictTransportSecurity\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:12+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:51:41+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-stricttransportsecurity\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SubMirror/locale/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index a21e3b7f8e..6ffb9bc022 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 abbcc292b3..7f1773a734 100644 --- a/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/de/LC_MESSAGES/SubMirror.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:15+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po index 6312e2ec69..c06ae46952 100644 --- a/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/fr/LC_MESSAGES/SubMirror.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:15+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -151,13 +151,11 @@ msgid "Repost the content under my account" msgstr "Reposter le contenu sous mon compte" #. TRANS: Button text to save feed mirror settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" -msgstr "Sauvegarder" +msgstr "Enregistrer" #. TRANS: Button text to stop mirroring a feed. -#, fuzzy msgctxt "BUTTON" msgid "Stop mirroring" msgstr "Arrêter le miroir" diff --git a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po index 406ec293e1..332ed50f1b 100644 --- a/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/ia/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:15+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po index 2fe10ecaec..a69038db13 100644 --- a/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/mk/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:15+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po index d6023347e8..a5782ad6bb 100644 --- a/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/nl/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:15+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po index b4df7646b9..a54457f63c 100644 --- a/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/tl/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:15+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po index 950a37f7c3..b3c3076e87 100644 --- a/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po +++ b/plugins/SubMirror/locale/uk/LC_MESSAGES/SubMirror.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubMirror\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:15+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:33+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-submirror\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index e4480378c7..c83650e6e2 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po index dbb8e36023..88d9b05cd5 100644 --- a/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ca/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po index 4b12db5193..6f96cb99ae 100644 --- a/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/de/LC_MESSAGES/SubscriptionThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po index afda3b2b52..455cb96164 100644 --- a/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/fr/LC_MESSAGES/SubscriptionThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po index a46535aaaf..ccf1725bc3 100644 --- a/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/he/LC_MESSAGES/SubscriptionThrottle.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po index b7712c65e0..10caa3bbb0 100644 --- a/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ia/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po index d9a41d4b5d..c800acf6dd 100644 --- a/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/mk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po index 7f5996ea40..b1806ab176 100644 --- a/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/ms/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:19+0000\n" +"Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po index beec342dde..62e8a80e37 100644 --- a/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/nl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po index b5797f63bd..32ef53850b 100644 --- a/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/tl/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-subscriptionthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po index 80abeb325d..071e2bf11c 100644 --- a/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po +++ b/plugins/SubscriptionThrottle/locale/uk/LC_MESSAGES/SubscriptionThrottle.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SubscriptionThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:35+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/TabFocus/locale/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 62a6035c42..8c3cf2686b 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 5240f4afaa..bae304695b 100644 --- a/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/br/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po index 9a22809d47..4f7043bf35 100644 --- a/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/de/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po index d09fd08dbe..638613b9e7 100644 --- a/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/es/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po index 2a72678a08..4f92ced305 100644 --- a/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/fr/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po index 3450244cc6..e0182a5896 100644 --- a/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/gl/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:16+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:20+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po index 11a024472e..af531f81ea 100644 --- a/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/he/LC_MESSAGES/TabFocus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po index 14b3735e7a..2a8b7e77b8 100644 --- a/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ia/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po index 8538de8ce7..0ab53564c5 100644 --- a/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/id/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 6cbfd8bd85..f8411e12da 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po index e9adbb691f..ea63305a17 100644 --- a/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nb/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po index 43e9e805b7..6ec52eb924 100644 --- a/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nl/LC_MESSAGES/TabFocus.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po index 269def01c9..622a601d8d 100644 --- a/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/nn/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Norwegian Nynorsk \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:20+0000\n" +"Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po index a9fec5220a..bb4f9c831c 100644 --- a/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/ru/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po index d82a282348..f94db6828d 100644 --- a/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/tl/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po index 57c6a2f5bc..11542c7483 100644 --- a/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/uk/LC_MESSAGES/TabFocus.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:17+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:27:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tabfocus\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TagSub/locale/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index decbdaab3a..b5f947ed6c 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ca/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po index 0f3261bb82..a518758ce3 100644 --- a/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ca/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:22+0000\n" +"Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po index 551d96feb4..b824906a77 100644 --- a/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/de/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po index c23c9c6fe2..aa1357cc62 100644 --- a/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/ia/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po index 4f57911794..9311fb5971 100644 --- a/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/mk/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po index b546e9cd12..3a3e35a64c 100644 --- a/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/nl/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po index 5342912a76..17924aec11 100644 --- a/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/sr-ec/LC_MESSAGES/TagSub.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Serbian Cyrillic ekavian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:22+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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sr-ec\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po index 249a4dfbc5..2896388826 100644 --- a/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/te/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Telugu \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:22+0000\n" +"Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po index fc60fd50d0..1f6510d168 100644 --- a/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/tl/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tagsub\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po index e279c9fe40..3d08ea9767 100644 --- a/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po +++ b/plugins/TagSub/locale/uk/LC_MESSAGES/TagSub.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TagSub\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:19+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:36+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/TightUrl/locale/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index f156b07bfb..d337c3e9bb 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 097b555c8f..522c83e595 100644 --- a/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/de/LC_MESSAGES/TightUrl.po @@ -1,6 +1,7 @@ # Translation of StatusNet - TightUrl to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: The Evil IP address # -- # This file is distributed under the same license as the StatusNet package. @@ -9,21 +10,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly. msgid "You must specify a serviceUrl." -msgstr "" +msgstr "Du musst eine serviceUrl angeben." #. TRANS: Plugin description. %s is the shortener name. #, php-format diff --git a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po index e53210d780..67d2c069f1 100644 --- a/plugins/TightUrl/locale/es/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po index e7764a7dc0..5233cbf2f8 100644 --- a/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/fr/LC_MESSAGES/TightUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po index 7f417bf442..a40f59ac2b 100644 --- a/plugins/TightUrl/locale/gl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/gl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po index c945ace457..aba53c65b0 100644 --- a/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/he/LC_MESSAGES/TightUrl.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po index dc6ced6d17..f52fd04614 100644 --- a/plugins/TightUrl/locale/ia/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po index 466a35afea..f0500f33ff 100644 --- a/plugins/TightUrl/locale/id/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po index 8a893685a6..d1b81a0dbf 100644 --- a/plugins/TightUrl/locale/ja/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ja/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Japanese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:23+0000\n" +"Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po index 5d72f33360..4d26b47c4f 100644 --- a/plugins/TightUrl/locale/mk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po index cae1068125..c4b31cb6b9 100644 --- a/plugins/TightUrl/locale/ms/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ms/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po index c63cb1d393..ca3e280f33 100644 --- a/plugins/TightUrl/locale/nb/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:23+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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po index 522b23bd17..0d19fb2998 100644 --- a/plugins/TightUrl/locale/nl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po index 1cd392e419..2af95ef1a2 100644 --- a/plugins/TightUrl/locale/pt/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po index 7f8000fd8a..0998df6747 100644 --- a/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/pt_BR/LC_MESSAGES/TightUrl.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TightUrl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:23+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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po index 4be90a2ae5..60478c8de6 100644 --- a/plugins/TightUrl/locale/ru/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:20+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po index 10567075e7..5e0cd33df6 100644 --- a/plugins/TightUrl/locale/tl/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po b/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po index f42974a5bf..53b5fa7e97 100644 --- a/plugins/TightUrl/locale/uk/LC_MESSAGES/TightUrl.po +++ b/plugins/TightUrl/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tighturl\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TinyMCE/locale/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index 624b568160..be8e295b91 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 44b202bbfe..904616068a 100644 --- a/plugins/TinyMCE/locale/ca/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ca/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po index e0d4748cba..89d7365557 100644 --- a/plugins/TinyMCE/locale/de/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po index 466ea2fc68..b2e5ccabc3 100644 --- a/plugins/TinyMCE/locale/eo/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/eo/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Esperanto \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po index 3d83064932..eac49f51c3 100644 --- a/plugins/TinyMCE/locale/es/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po index 60cdc79d06..6c6b9b33b4 100644 --- a/plugins/TinyMCE/locale/fr/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po index d9340f8a33..ed4342fee9 100644 --- a/plugins/TinyMCE/locale/he/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po index ccbe870a1a..2e261e8c4e 100644 --- a/plugins/TinyMCE/locale/ia/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po index c170fb55bd..6ffde83706 100644 --- a/plugins/TinyMCE/locale/id/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po index ad4510cd72..9440e4e3d0 100644 --- a/plugins/TinyMCE/locale/mk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po index bf3cc91506..3421932857 100644 --- a/plugins/TinyMCE/locale/ms/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ms/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:21+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po index 27b3f0387b..3ebc602d42 100644 --- a/plugins/TinyMCE/locale/nb/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po index 689fe07f2b..1306c9cfc4 100644 --- a/plugins/TinyMCE/locale/nl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po index 8bc61328d7..8c227cd7c1 100644 --- a/plugins/TinyMCE/locale/pt/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po index f75fe81119..af247dad70 100644 --- a/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/pt_BR/LC_MESSAGES/TinyMCE.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TinyMCE\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po index fac9cbc361..b0de31b4c6 100644 --- a/plugins/TinyMCE/locale/ru/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po index 118f4a5e69..64aa22e98f 100644 --- a/plugins/TinyMCE/locale/tl/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po b/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po index 3325528efa..1a132dece4 100644 --- a/plugins/TinyMCE/locale/uk/LC_MESSAGES/TinyMCE.po +++ b/plugins/TinyMCE/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:22+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-05 21:52:08+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-tinymce\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index ea92ad78e0..e6f28f3d53 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,9 +52,8 @@ msgid "" "Please [set a password](%s) first." msgstr "" -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. -#: twittersettings.php:147 +#. TRANS: Form instructions. %1$s is the StatusNet sitename. +#: twittersettings.php:146 #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -62,81 +61,81 @@ msgid "" msgstr "" #. TRANS: Button text for disconnecting a Twitter account. -#: twittersettings.php:155 +#: twittersettings.php:154 msgctxt "BUTTON" msgid "Disconnect" msgstr "" #. TRANS: Fieldset legend. -#: twittersettings.php:163 +#: twittersettings.php:162 msgid "Preferences" msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:168 +#: twittersettings.php:167 msgid "Automatically send my notices to Twitter." msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:176 +#: twittersettings.php:175 msgid "Send local \"@\" replies to Twitter." msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:184 +#: twittersettings.php:183 msgid "Subscribe to my Twitter friends here." msgstr "" #. TRANS: Checkbox label. -#: twittersettings.php:194 +#: twittersettings.php:193 msgid "Import my friends timeline." msgstr "" #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#: twittersettings.php:211 twitteradminpanel.php:311 +#: twittersettings.php:210 twitteradminpanel.php:311 msgctxt "BUTTON" msgid "Save" msgstr "" #. TRANS: Button text for adding Twitter integration. -#: twittersettings.php:214 +#: twittersettings.php:213 msgctxt "BUTTON" msgid "Add" msgstr "" #. TRANS: Client error displayed when the session token does not match or is not given. -#: twittersettings.php:239 twitterauthorization.php:121 +#: twittersettings.php:238 twitterauthorization.php:121 msgid "There was a problem with your session token. Try again, please." msgstr "" #. TRANS: Client error displayed when the submitted form contains unexpected data. -#: twittersettings.php:250 +#: twittersettings.php:249 msgid "Unexpected form submission." msgstr "" #. TRANS: Client error displayed when trying to remove a connected Twitter account when there isn't one connected. -#: twittersettings.php:266 +#: twittersettings.php:265 msgid "No Twitter connection to remove." msgstr "" #. TRANS: Server error displayed when trying to remove a connected Twitter account fails. -#: twittersettings.php:275 +#: twittersettings.php:274 msgid "Could not remove Twitter user." msgstr "" #. TRANS: Success message displayed after disconnecting a Twitter account. -#: twittersettings.php:280 +#: twittersettings.php:279 msgid "Twitter account disconnected." msgstr "" #. TRANS: Server error displayed when saving Twitter integration preferences fails. -#: twittersettings.php:302 twittersettings.php:315 +#: twittersettings.php:301 twittersettings.php:314 msgid "Could not save Twitter preferences." msgstr "" #. TRANS: Success message after saving Twitter integration preferences. -#: twittersettings.php:324 +#: twittersettings.php:323 msgid "Twitter preferences saved." msgstr "" diff --git a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po index 66df0d45fd..21201fcee8 100644 --- a/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ar/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-06-18 15:54+0000\n" -"PO-Revision-Date: 2011-06-18 15:57:54+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:09+0000\n" -"X-Generator: MediaWiki 1.19alpha (r90318); Translate extension (2011-06-02)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -27,10 +27,11 @@ msgstr "" msgid "Twitter settings" msgstr "إعدادات تويتر" +#. TRANS: Instructions for page with Twitter integration settings. msgid "" "Connect your Twitter account to share your updates with your Twitter friends " "and vice-versa." -msgstr "" +msgstr "اربط حسابك على تويتر لتشارك مستجداتك مع أصدقائك على تويتر والعكس." #. TRANS: Fieldset legend. msgid "Twitter account" @@ -51,20 +52,20 @@ msgid "" "Disconnecting your Twitter account could make it impossible to log in! " "Please [set a password](%s) first." msgstr "" +"قد يجعل فصل حسابك على تويتر الولوج مستحيلا! الرجاء [تعيين كلمة سر](%s) أولا." -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " "password to log in." msgstr "" +"أبق حسابك على %1$s لكن افصله من تويتر. يمكن أن تستخدم كلمة سر %1$s للولوج." #. TRANS: Button text for disconnecting a Twitter account. -#, fuzzy msgctxt "BUTTON" msgid "Disconnect" -msgstr "اربط" +msgstr "اقطع الارتباط" #. TRANS: Fieldset legend. msgid "Preferences" @@ -72,29 +73,27 @@ msgstr "تفضيلات" #. TRANS: Checkbox label. msgid "Automatically send my notices to Twitter." -msgstr "" +msgstr "أرسل إشعاراتي تلقائيا إلى تويتر." #. TRANS: Checkbox label. msgid "Send local \"@\" replies to Twitter." -msgstr "" +msgstr "أرسل ردود \"@\" المحلية إلى تويتر." #. TRANS: Checkbox label. msgid "Subscribe to my Twitter friends here." -msgstr "" +msgstr "اشترك بأصدقائي على تويتر هنا." #. TRANS: Checkbox label. msgid "Import my friends timeline." -msgstr "" +msgstr "استورد المسار الزمني لأصدقائي." #. TRANS: Button text for saving Twitter integration settings. #. TRANS: Button text for saving the administrative Twitter bridge settings. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "احفظ" #. TRANS: Button text for adding Twitter integration. -#, fuzzy msgctxt "BUTTON" msgid "Add" msgstr "أضف" @@ -117,12 +116,11 @@ msgstr "" #. TRANS: Success message displayed after disconnecting a Twitter account. msgid "Twitter account disconnected." -msgstr "" +msgstr "قطع الارتباط بحساب تويتر." #. TRANS: Server error displayed when saving Twitter integration preferences fails. -#, fuzzy msgid "Could not save Twitter preferences." -msgstr "حُفظت تفضيلات تويتر." +msgstr "تعذر حفظ تفضيلات تويتر." #. TRANS: Success message after saving Twitter integration preferences. msgid "Twitter preferences saved." @@ -134,7 +132,7 @@ msgstr "" #. TRANS: Form validation error displayed when an unhandled error occurs. msgid "Something weird happened." -msgstr "" +msgstr "حدث شيء غريب." #. TRANS: Server error displayed when linking to a Twitter account fails. msgid "Could not link your Twitter account." @@ -167,6 +165,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: Fieldset legend. msgid "Create new account" @@ -182,7 +182,7 @@ msgstr "الاسم المستعار الجديد" #. TRANS: Field title for nickname field. msgid "1-64 lowercase letters or numbers, no punctuation or spaces." -msgstr "" +msgstr "1-64 حرفًا إنجليزيًا أو رقمًا، بدون نقاط أو مسافات." #. TRANS: Field label. msgctxt "LABEL" @@ -194,7 +194,6 @@ msgid "Used only for updates, announcements, and password recovery" msgstr "" #. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. -#, fuzzy msgctxt "BUTTON" msgid "Create" msgstr "أنشئ" @@ -219,7 +218,6 @@ msgid "Password" msgstr "كلمة السر" #. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. -#, fuzzy msgctxt "BUTTON" msgid "Connect" msgstr "اربط" @@ -255,7 +253,6 @@ msgid "Invalid username or password." msgstr "اسم مستخدم أو كلمة سر غير صالحة." #. TRANS: Page title for Twitter administration panel. -#, fuzzy msgctxt "TITLE" msgid "Twitter" msgstr "تويتر" @@ -318,7 +315,7 @@ msgstr "" #. TRANS: Checkbox label for global setting. msgid "Enable Twitter import" -msgstr "" +msgstr "مكّن الاستيراد من تويتر" #. TRANS: Checkbox title for global setting. msgid "" @@ -327,9 +324,8 @@ msgid "" msgstr "" #. TRANS: Button title for saving the administrative Twitter bridge settings. -#, fuzzy msgid "Save the Twitter bridge settings." -msgstr "إعدادات جسر تويتر" +msgstr "احفظ إعدادات جسر تويتر." #. TRANS: Server exception thrown when an invalid URL scheme is detected. msgid "Invalid URL scheme for HTTP stream reader." @@ -365,24 +361,24 @@ msgstr "" #. TRANS: Menu item in login navigation. #. TRANS: Menu item in connection settings navigation. -#, fuzzy msgctxt "MENU" msgid "Twitter" msgstr "تويتر" #. TRANS: Title for menu item in login navigation. -#, fuzzy msgid "Login or register using Twitter." -msgstr "خطأ في تسجيل مستخدم." +msgstr "لُج أو سجّل باستخدام تويتر." #. TRANS: Title for menu item in connection settings navigation. msgid "Twitter integration options" -msgstr "" +msgstr "خيارات التكامل مع تويتر" +#. TRANS: Menu item in administrative panel that leads to the Twitter bridge configuration. msgid "Twitter" msgstr "تويتر" -msgid "Twitter bridge configuration" +#. TRANS: Menu item title in administrative panel that leads to the Twitter bridge configuration. +msgid "Twitter bridge configuration page." msgstr "" #. TRANS: Plugin description. @@ -396,18 +392,17 @@ msgid "Already logged in." msgstr "والج بالفعل." #. TRANS: Title for login using Twitter page. -#, fuzzy msgctxt "TITLE" msgid "Twitter Login" -msgstr "حساب تويتر" +msgstr "ولوج بتويتر" #. TRANS: Instructions for login using Twitter page. msgid "Login with your Twitter account" -msgstr "" +msgstr "لُج بحسابك على تويتر" #. TRANS: Alternative text for "sign in with Twitter" image. msgid "Sign in with Twitter" -msgstr "" +msgstr "سجل دخولك بتويتر" #. TRANS: Mail subject after forwarding notices to Twitter has stopped working. msgid "Your Twitter bridge has been disabled" @@ -430,9 +425,18 @@ msgid "" "Regards,\n" "%3$s" msgstr "" +"مرحبا، %1$s. يؤسفنا إخبارك أنه تم تعطيل ارتباطك بتويتر. يبدو أنه لم يعد يسمح " +"لنا بتحديث حالتك على تويتر. هل قمت بإلغاء السماح ل%3$s؟\n" +"\n" +"يمكنك إعادة تفعيل جسر تويتر بزيارة صفحة إعدادات تويتر:\n" +"\n" +"%2$s\n" +"\n" +"مع تحياتنا،\n" +"%3$s" #. 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 "" +msgstr "RT @%1$s %2$s" diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index 9482a0e283..207b728568 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:27+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -55,8 +55,7 @@ msgstr "" "En desconnectar el vostre Twitter podeu impossibilitar que torneu a iniciar " "una sessió! " -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po index 60ef982dbf..236973bd19 100644 --- a/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/de/LC_MESSAGES/TwitterBridge.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:27+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -57,8 +57,7 @@ msgid "" msgstr "" "Die Trennung von Twitter könnte es unmöglich machen, sich anzumelden! Bitte " -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 6bad95796e..99f2a09755 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:27+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -57,8 +57,7 @@ msgstr "" "La déconnexion de votre compte Twitter ne vous permettrait plus de vous " "connecter ! S’il vous plaît " -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " @@ -216,7 +215,6 @@ msgstr "" "de mot de passe" #. TRANS: Button text for creating a new StatusNet account in the Twitter connect page. -#, fuzzy msgctxt "BUTTON" msgid "Create" msgstr "Créer" @@ -242,7 +240,6 @@ msgid "Password" msgstr "Mot de passe" #. TRANS: Button text for connecting an existing StatusNet account in the Twitter connect page.. -#, fuzzy msgctxt "BUTTON" msgid "Connect" msgstr "Connexion" @@ -278,7 +275,6 @@ msgid "Invalid username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." #. TRANS: Page title for Twitter administration panel. -#, fuzzy msgctxt "TITLE" msgid "Twitter" msgstr "Twitter" @@ -330,9 +326,8 @@ msgid "Integration source" msgstr "Source d’intégration" #. TRANS: Field title for Twitter application name. -#, fuzzy msgid "The name of your Twitter application." -msgstr "Nom de votre application Twitter" +msgstr "Le nom de votre application Twitter." #. TRANS: Fieldset legend for Twitter integration options. msgid "Options" @@ -399,7 +394,6 @@ msgstr "" #. TRANS: Menu item in login navigation. #. TRANS: Menu item in connection settings navigation. -#, fuzzy msgctxt "MENU" msgid "Twitter" msgstr "Twitter" diff --git a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po index ed6308570c..5388171c8a 100644 --- a/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fur/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Friulian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:31+0000\n" +"Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -51,8 +51,7 @@ msgid "" "Please [set a password](%s) first." msgstr "" -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 11e36184a4..2600f53469 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -55,8 +55,7 @@ msgstr "" "Le disconnexion de tu conto de Twitter renderea le authentication " "impossibile! Per favor [defini un contrasigno](%s) primo." -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po index 59a5238cb2..b0f4cfc993 100644 --- a/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ko/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Korean \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:31+0000\n" +"Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -53,8 +53,7 @@ msgid "" "Please [set a password](%s) first." msgstr "트위터 연결을 해제하면 로그인이 불가능해질 수 있습니다!" -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 04aa7f01a4..27142c6b50 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" @@ -55,8 +55,7 @@ msgstr "" "Ако ја прекинете врската со сметката на Twitter, нема да можете да се " "најавувате! Најпрвин [ставете лозинка](%s)." -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po index fc607de80a..c0ad8cdf34 100644 --- a/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ms/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -53,8 +53,7 @@ msgid "" "Please [set a password](%s) first." msgstr "Jika Twitter anda diputuskan, mungkin tak boleh log masuk! Tolong " -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 5802350b53..4db356207c 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -55,8 +55,7 @@ msgstr "" "Door uw Twittergebruiker los te koppelen, kunt u mogelijk niet meer " "aanmelden! [Stel eerst een wachtwoord in](%s)." -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po index b3337cedf0..cd7241cab5 100644 --- a/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tl/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -55,8 +55,7 @@ msgstr "" "Ang pagkalas ng Twitter mo ay maaaring makapagdulot ng hindi makalagda! " "Mangyaring " -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 86c5a2b8c5..1751c8daa2 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -53,8 +53,7 @@ msgid "" "Please [set a password](%s) first." msgstr "" -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index fb7da44019..e0e7dadcc2 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " @@ -56,8 +56,7 @@ msgstr "" "Якщо ви від’єднаєте свій Twitter, то це унеможливить вхід до системи у " "майбутньому! Будь ласка, " -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index 21c2a608ce..f338fbdd5f 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:28+0000\n" -"Language-Team: Simplified Chinese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:45+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -55,8 +54,7 @@ msgid "" "Please [set a password](%s) first." msgstr "取消关联你的 Twitter 帐号和能会导致无法登录!请" -#. TRANS: Form instructions. %s is a URL to the password settings. -#. TRANS: %1$s is the StatusNet sitename. +#. TRANS: Form instructions. %1$s is the StatusNet sitename. #, php-format msgid "" "Keep your %1$s account but disconnect from Twitter. You can use your %1$s " diff --git a/plugins/UserFlag/locale/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index 4b3fd6f039..cafb48adf9 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ar/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po index 1487f40968..6283c8f14f 100644 --- a/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ar/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Arabic \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " @@ -25,12 +25,12 @@ msgstr "" #. TRANS: AJAX form title for a flagged profile. msgid "Flagged for review" -msgstr "" +msgstr "عُلّم للمراجعة" #. 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 "" +msgstr "عُلّم" #. TRANS: Plugin description. msgid "" diff --git a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po index 98a2b7a4fd..ab9d6f4565 100644 --- a/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ca/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po index 8c2a97b19d..f4c6c9a6ea 100644 --- a/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/de/LC_MESSAGES/UserFlag.po @@ -1,6 +1,7 @@ # Translation of StatusNet - UserFlag to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Giftpflanze # Author: Habi # -- @@ -10,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -88,9 +89,9 @@ msgstr "Durch %s markiert" #. TRANS: Server exception given when flags could not be cleared. #. TRANS: %s is a profile nickname. -#, fuzzy, php-format +#, php-format msgid "Could not clear flags for profile \"%s\"." -msgstr "Konnte Markierung für Profil \"%s\" nicht entfernen." +msgstr "Konnte Markierungen für Profil „%s“ nicht entfernen." #. TRANS: Title for AJAX form to indicated that flags were removed. msgid "Flags cleared" @@ -102,6 +103,6 @@ msgstr "Gelöscht" #. TRANS: Server exception. #. TRANS: %d is a profile ID (number). -#, fuzzy, php-format +#, php-format msgid "Could not flag profile \"%d\" for review." -msgstr "Konnte Profil „%d“ nicht zur Überprüfung flaggen." +msgstr "Konnte Profil „%d“ nicht zur Überprüfung markieren." diff --git a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po index 87a8473cf8..4584d2fe98 100644 --- a/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/fr/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po index b4b32405e4..4f4576a1a2 100644 --- a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po index 40e4977d3c..d81fa89694 100644 --- a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po index 10319f6953..379d824357 100644 --- a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po index f0ac5444d9..17fc1dc2bb 100644 --- a/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/pt/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po index e93658fb9c..50673d3d90 100644 --- a/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/ru/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po index a22d95f478..ffe6062ddd 100644 --- a/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/tl/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po index ad3f262b96..19fb8df01b 100644 --- a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserFlag\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:50+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-userflag\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/UserLimit/locale/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index 27804577f3..f5a46636c6 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 57d3c7c9ef..18c94c6c73 100644 --- a/plugins/UserLimit/locale/br/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po index 2e768cd8a9..590bdc05d1 100644 --- a/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/de/LC_MESSAGES/UserLimit.po @@ -1,6 +1,7 @@ # Translation of StatusNet - UserLimit to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Giftpflanze # Author: The Evil IP address # -- @@ -10,21 +11,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Error message given if creating a new user is not possible because a limit has been reached. #. TRANS: %d is the user limit (also available for plural). -#, fuzzy, php-format +#, php-format msgid "" "Cannot register because the maximum number of users (%d) for this site was " "reached." diff --git a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po index 205a42c44a..5166ca1b1a 100644 --- a/plugins/UserLimit/locale/es/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:30+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po index 28d4a8ee32..e675181c2c 100644 --- a/plugins/UserLimit/locale/fa/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fa/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Persian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po index b6167b3e92..763b6c6050 100644 --- a/plugins/UserLimit/locale/fi/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po index 5eaaa0facf..9b1c091acc 100644 --- a/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/fr/LC_MESSAGES/UserLimit.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po index d1183a94a7..a37827bc48 100644 --- a/plugins/UserLimit/locale/gl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/gl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:35+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po index 734c2e1177..20a133b753 100644 --- a/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/he/LC_MESSAGES/UserLimit.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po index 2f714aa9e0..d23599e7d4 100644 --- a/plugins/UserLimit/locale/ia/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po index e1c681c31e..119c606fb6 100644 --- a/plugins/UserLimit/locale/id/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po index 1f5721fbec..cacbc55974 100644 --- a/plugins/UserLimit/locale/lb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Luxembourgish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:35+0000\n" +"Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po index 2266df7ad2..072d313c4e 100644 --- a/plugins/UserLimit/locale/lv/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/lv/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Latvian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:35+0000\n" +"Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 != " diff --git a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po index d09249ffc9..75bc5bfcaa 100644 --- a/plugins/UserLimit/locale/mk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po index 6cf2d659ac..2528a65878 100644 --- a/plugins/UserLimit/locale/ms/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ms/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po index 07fef57a61..0210fd9bda 100644 --- a/plugins/UserLimit/locale/nb/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po index 7856ef52d9..4e45105e2d 100644 --- a/plugins/UserLimit/locale/nl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po index a555971869..433337dbf1 100644 --- a/plugins/UserLimit/locale/pt/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po index 8df9cf29ea..2f7ae32a81 100644 --- a/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/pt_BR/LC_MESSAGES/UserLimit.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - UserLimit\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po index e453bc7dfa..05cf6cad50 100644 --- a/plugins/UserLimit/locale/ru/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po index 162e090a8c..6f50d3888c 100644 --- a/plugins/UserLimit/locale/tl/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po index 18cbbac537..8ae55bf6c2 100644 --- a/plugins/UserLimit/locale/tr/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/tr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-userlimit\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po b/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po index 2a0b83c7ef..e4ae49e006 100644 --- a/plugins/UserLimit/locale/uk/LC_MESSAGES/UserLimit.po +++ b/plugins/UserLimit/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:31+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:51+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/WikiHashtags/locale/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 55cfdbb221..353afaebe8 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po index b3784433c0..0c028bb4d6 100644 --- a/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/de/LC_MESSAGES/WikiHashtags.po @@ -1,6 +1,7 @@ # Translation of StatusNet - WikiHashtags to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Giftpflanze # Author: The Evil IP address # -- @@ -10,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -39,7 +40,7 @@ msgstr "" #. TRANS: Link description for viewing the GFDL. msgid "GNU FDL" -msgstr "" +msgstr "GNU FDL" #. TRANS: Link description for editing an article on WikiHashTags. #. TRANS: %s is the hash tag page to be created. diff --git a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po index 07367b965c..f26f7611d5 100644 --- a/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ia/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po index acd4a5b438..126ea66ae3 100644 --- a/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/mk/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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" diff --git a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po index de0a485709..9f6ef42de5 100644 --- a/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/ms/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po index caa48e141c..a3d569c30b 100644 --- a/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/nl/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po index 0e489daef1..6865ecca73 100644 --- a/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/tl/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihashtags\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po index 6ca3183600..d052f060b7 100644 --- a/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po +++ b/plugins/WikiHashtags/locale/uk/LC_MESSAGES/WikiHashtags.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHashtags\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:53+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //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 >= " diff --git a/plugins/WikiHowProfile/locale/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index a19da28d0e..a05f643e9c 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po index aa7c1766bb..1e5b11753f 100644 --- a/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/de/LC_MESSAGES/WikiHowProfile.po @@ -1,6 +1,7 @@ # Translation of StatusNet - WikiHowProfile to German (Deutsch) # Exported from translatewiki.net # +# Author: ChrisiPK # Author: Giftpflanze # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:32+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -31,11 +32,11 @@ msgstr "" #. TRANS: Exception thrown when fetching a WikiHow profile page fails. msgid "WikiHow profile page fetch failed." -msgstr "" +msgstr "Laden des WikiHow-Profils fehlgeschlagen." #. TRANS: Exception thrown when parsing a WikiHow profile page fails. msgid "HTML parse failure during check for WikiHow avatar." -msgstr "" +msgstr "HTML-Parsingfehler bei der Suche des WikiHow-Avatars." #. TRANS: Server exception thrown when an avatar URL is invalid. #. TRANS: %s is the invalid avatar URL. diff --git a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po index 87c239dcc3..cc7c4771ea 100644 --- a/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/fr/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po index c263bd461a..f764bb1881 100644 --- a/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ia/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po index 33abc339aa..8532e17de8 100644 --- a/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/mk/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po index 452a2351d6..38599ac5c4 100644 --- a/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ms/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po index e9a4a8bd03..6b6353359c 100644 --- a/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/nl/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po index 15965c969f..9e008df8f9 100644 --- a/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/ru/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po index 20eca8cf3f..10f497228c 100644 --- a/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tl/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po index 2b67221dae..c989201975 100644 --- a/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/tr/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:37+0000\n" +"Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po index fbe763748f..c2ee354e65 100644 --- a/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po +++ b/plugins/WikiHowProfile/locale/uk/LC_MESSAGES/WikiHowProfile.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - WikiHowProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:54+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-wikihowprofile\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/XCache/locale/XCache.pot b/plugins/XCache/locale/XCache.pot index cacd5d74bc..3baf195462 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/ast/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po index 7d6e88d8c9..fcbb76dfb1 100644 --- a/plugins/XCache/locale/ast/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ast/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Asturian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:38+0000\n" +"Language-Team: Asturian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ast\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po b/plugins/XCache/locale/br/LC_MESSAGES/XCache.po index 9adce4424d..0c7d43070e 100644 --- a/plugins/XCache/locale/br/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po b/plugins/XCache/locale/de/LC_MESSAGES/XCache.po index 7c97545a7f..bd357403c0 100644 --- a/plugins/XCache/locale/de/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/de/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po b/plugins/XCache/locale/es/LC_MESSAGES/XCache.po index f0785519c0..e952a68b06 100644 --- a/plugins/XCache/locale/es/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/es/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po index e69b4f9daf..d5c6aca277 100644 --- a/plugins/XCache/locale/fi/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fi/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Finnish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po index d58a98aae7..8f8b0683df 100644 --- a/plugins/XCache/locale/fr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/fr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po index fc528a5340..e6bbf4af49 100644 --- a/plugins/XCache/locale/gl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/gl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Galician \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:38+0000\n" +"Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po b/plugins/XCache/locale/he/LC_MESSAGES/XCache.po index d6ba989713..acd8fae9f4 100644 --- a/plugins/XCache/locale/he/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/he/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Hebrew \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po index cd25a3e3e9..42ee18e7f4 100644 --- a/plugins/XCache/locale/ia/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ia/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po b/plugins/XCache/locale/id/LC_MESSAGES/XCache.po index dcda640430..3da4444b7c 100644 --- a/plugins/XCache/locale/id/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/id/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Indonesian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: id\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po index 4b71ae81be..b36b9a9a0f 100644 --- a/plugins/XCache/locale/mk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/mk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:33+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po index d32cb7711d..45601e9fd3 100644 --- a/plugins/XCache/locale/ms/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ms/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Malay \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po index 68034e8e46..b1c8f17538 100644 --- a/plugins/XCache/locale/nb/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nb/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po index 4729be2379..64183881f4 100644 --- a/plugins/XCache/locale/nl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/nl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po index 98ab5c4704..c28e04e35c 100644 --- a/plugins/XCache/locale/pt/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po index 056543b49e..33d2cf6215 100644 --- a/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/pt_BR/LC_MESSAGES/XCache.po @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - XCache\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Brazilian Portuguese \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po b/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po index a50fbb3ed0..669507d766 100644 --- a/plugins/XCache/locale/ru/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/ru/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Russian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po index 41ce557ed4..3b641e546e 100644 --- a/plugins/XCache/locale/tl/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tl/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po b/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po index 96a23a9178..d773655a2b 100644 --- a/plugins/XCache/locale/tr/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/tr/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po b/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po index 6317522dab..33417cf260 100644 --- a/plugins/XCache/locale/uk/LC_MESSAGES/XCache.po +++ b/plugins/XCache/locale/uk/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-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:34+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-05 21:52:14+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-xcache\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " diff --git a/plugins/Xmpp/locale/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index 9ac5b1fe58..f5158300fe 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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/de/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po index 4a32422aa5..8e7c25fe65 100644 --- a/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/de/LC_MESSAGES/Xmpp.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:35+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po index a1984503c4..aa3f8217a9 100644 --- a/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/ia/LC_MESSAGES/Xmpp.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:35+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po index d37ce19464..bc3753fd5e 100644 --- a/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/mk/LC_MESSAGES/Xmpp.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:35+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po index ac82c0ad65..b05dbe03e9 100644 --- a/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po +++ b/plugins/Xmpp/locale/nl/LC_MESSAGES/Xmpp.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Xmpp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:35+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 11:23:56+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-xmpp\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index de47abb650..34e3058057 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-07-21 12:19+0000\n" +"POT-Creation-Date: 2011-08-15 14:19+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 8e804b0b60..5324d9b74d 100644 --- a/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/br/LC_MESSAGES/YammerImport.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: Breton \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po index 73301681d6..f322dd6bb8 100644 --- a/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/de/LC_MESSAGES/YammerImport.po @@ -4,6 +4,7 @@ # Author: George Animal # Author: Giftpflanze # Author: Habi +# Author: Welathêja # -- # This file is distributed under the same license as the StatusNet package. # @@ -11,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: German \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -300,7 +301,6 @@ msgid "Verification code:" msgstr "Bestätigunts-Code:" #. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. -#, fuzzy msgctxt "BUTTON" msgid "Continue" msgstr "Fortfahren" @@ -345,7 +345,6 @@ msgid "Consumer secret:" msgstr "Verbrauchergeheimnis:" #. TRANS: Button text for saving a Yammer API registration. -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Speichern" diff --git a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po index ecb20594c7..a55cc2c7aa 100644 --- a/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/fr/LC_MESSAGES/YammerImport.po @@ -1,6 +1,7 @@ # Translation of StatusNet - YammerImport to French (Français) # Exported from translatewiki.net # +# Author: Od1n # Author: Peter17 # -- # This file is distributed under the same license as the StatusNet package. @@ -9,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: French \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -58,7 +59,6 @@ msgid "Yammer import" msgstr "Import Yammer" #. TRANS: Menu item for Yammer import. -#, fuzzy msgctxt "MENU" msgid "Yammer" msgstr "Yammer" @@ -298,7 +298,6 @@ msgid "Verification code:" msgstr "Code de vérification :" #. TRANS: Button text for saving Yammer authorisation data and starting Yammer import. -#, fuzzy msgctxt "BUTTON" msgid "Continue" msgstr "Continuer" @@ -344,10 +343,9 @@ msgid "Consumer secret:" msgstr "Secret de l'utilisateur :" #. TRANS: Button text for saving a Yammer API registration. -#, fuzzy msgctxt "BUTTON" msgid "Save" -msgstr "Sauvegarder" +msgstr "Enregistrer" #. TRANS: Button title for saving a Yammer API registration. #, fuzzy diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 33b46e5339..9e178cdbb9 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: Interlingua \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po index 3d56beb6d1..2b2cbd012c 100644 --- a/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/mk/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" diff --git a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po index db37d05cbc..c1e0fa5594 100644 --- a/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/nl/LC_MESSAGES/YammerImport.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: Dutch \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po index 064d6517b4..e66c17171a 100644 --- a/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tl/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: Tagalog \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po index 3e926505d8..e2ded5dde4 100644 --- a/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/tr/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:39+0000\n" -"Language-Team: Turkish \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22:44+0000\n" +"Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=1; plural=0;\n" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index b198891d7f..bd936e133b 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-07-21 12:19+0000\n" -"PO-Revision-Date: 2011-07-21 12:22:40+0000\n" -"Language-Team: Ukrainian \n" +"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"PO-Revision-Date: 2011-08-15 14:22: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-06-19 13:28:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r92662); Translate extension (2011-07-09)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " From fd4c72bf85bf0e7379593b86290f0025650c0073 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 16 Aug 2011 18:04:56 +0200 Subject: [PATCH 021/118] Fix awkward attempt at i18n. --- plugins/Event/eventtimelist.php | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/plugins/Event/eventtimelist.php b/plugins/Event/eventtimelist.php index 4ca40cb61f..9238f294d0 100644 --- a/plugins/Event/eventtimelist.php +++ b/plugins/Event/eventtimelist.php @@ -31,7 +31,6 @@ * Class to get fancy times for the dropdowns on the new event form */ class EventTimeList { - /** * Round up to the nearest half hour * @@ -73,7 +72,6 @@ class EventTimeList { $len = 0; for ($i = 0; $i < 48; $i++) { - // make sure we store the time as UTC $newTime->setTimezone(new DateTimeZone('UTC')); $utcTime = $newTime->format('H:i:s'); @@ -86,22 +84,22 @@ class EventTimeList { if ($duration) { $len += 30; $hours = $len / 60; - // for i18n - $hourStr = _m('hour'); - $hoursStr = _m('hrs'); - $minStr = _m('mins'); switch ($hours) { case 0: - $total = " (0 {$minStr})"; + // TRANS: 0 minutes abbreviated. Used in a list. + $total = ' ' . _m('(0 min)'); break; case .5: - $total = " (30 {$minStr})"; + // TRANS: 30 minutes abbreviated. Used in a list. + $total = ' ' . _m('(30 min)'); break; case 1: - $total = " (1 {$hourStr})"; + // TRANS: 1 hour. Used in a list. + $total = ' ' . _m('(1 hour)'); break; default: - $total = " ({$hours} " . $hoursStr . ')'; + // TRANS: Number of hours (%d). Used in a list. + $total = ' ' . sprintf(_m('(%d hour)','(%d hours)',$hours), $hours); break; } $localTime .= $total; @@ -113,7 +111,4 @@ class EventTimeList { return $times; } - } - - From 30d0a1d3d937ef4af8a1ddf04fc0b2ac919a04b2 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 18 Aug 2011 14:21:43 +0200 Subject: [PATCH 022/118] Simplify message. --- actions/imsettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/imsettings.php b/actions/imsettings.php index e809981a3f..809dbd2879 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -67,7 +67,7 @@ class ImsettingsAction extends SettingsAction // TRANS: [instant messages] is link text, "(%%doc.im%%)" is the link. // TRANS: the order and formatting of link text and link should remain unchanged. return _('You can send and receive notices through '. - 'instant messaging [instant messages](%%doc.im%%). '. + '[instant messaging](%%doc.im%%). '. 'Configure your addresses and settings below.'); } From edd804537564ea0f517e49710cc355c745d92a27 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 18 Aug 2011 15:11:10 +0200 Subject: [PATCH 023/118] Message tweaks and elaborations as well as translator documentation tweaks. Based on comments by OsamaK. --- actions/accessadminpanel.php | 6 +++--- actions/deleteaccount.php | 2 +- actions/pathsadminpanel.php | 2 +- actions/sitenoticeadminpanel.php | 2 +- actions/snapshotadminpanel.php | 2 +- actions/useradminpanel.php | 2 +- lib/applicationeditform.php | 4 ++-- lib/disfavorform.php | 4 ++-- lib/favorform.php | 4 ++-- lib/groupblockform.php | 2 +- lib/makeadminform.php | 2 +- lib/noticelistitem.php | 4 ++-- lib/unsubscribeform.php | 2 +- 13 files changed, 19 insertions(+), 19 deletions(-) diff --git a/actions/accessadminpanel.php b/actions/accessadminpanel.php index 027c69c5e5..55fc349f25 100644 --- a/actions/accessadminpanel.php +++ b/actions/accessadminpanel.php @@ -187,9 +187,9 @@ class AccessAdminPanelForm extends AdminForm */ function formActions() { - // TRANS: Title for button to save access settings in site admin panel. - $title = _('Save access settings'); - // TRANS: Tooltip for button to save access settings in site admin panel. + // TRANS: Button title to save access settings in site admin panel. + $title = _('Save access settings.'); + // TRANS: Button text to save access settings in site admin panel. $this->out->submit('submit', _m('BUTTON', 'Save'), 'submit', null, $title); } } diff --git a/actions/deleteaccount.php b/actions/deleteaccount.php index 614519d474..8b80c6c6f2 100644 --- a/actions/deleteaccount.php +++ b/actions/deleteaccount.php @@ -320,6 +320,6 @@ class DeleteAccountForm extends Form 'submit', null, // TRANS: Button title for user account deletion. - _('Permanently delete your account')); + _('Permanently delete your account.')); } } diff --git a/actions/pathsadminpanel.php b/actions/pathsadminpanel.php index 83ab776a60..57f066bd22 100644 --- a/actions/pathsadminpanel.php +++ b/actions/pathsadminpanel.php @@ -462,7 +462,7 @@ class PathsAdminPanelForm extends AdminForm // TRANS: Button text to store form data in the Paths admin panel. $this->out->submit('save', _m('BUTTON','Save'), 'submit', // TRANS: Button title text to store form data in the Paths admin panel. - 'save', _('Save paths')); + 'save', _('Save path settings.')); } /** diff --git a/actions/sitenoticeadminpanel.php b/actions/sitenoticeadminpanel.php index b1ac441af7..145ae80d07 100644 --- a/actions/sitenoticeadminpanel.php +++ b/actions/sitenoticeadminpanel.php @@ -197,7 +197,7 @@ class SiteNoticeAdminPanelForm extends AdminForm _m('BUTTON','Save'), 'submit', null, - // TRANS: Title for button to save site notice in admin panel. + // TRANS: Button title to save site notice in admin panel. _('Save site notice.') ); } diff --git a/actions/snapshotadminpanel.php b/actions/snapshotadminpanel.php index 9790947071..751b1acd1e 100644 --- a/actions/snapshotadminpanel.php +++ b/actions/snapshotadminpanel.php @@ -252,7 +252,7 @@ class SnapshotAdminPanelForm extends AdminForm _m('BUTTON','Save'), 'submit', null, - // TRANS: Title for button to save snapshot settings. + // TRANS: Button title to save snapshot settings. _('Save snapshot settings.') ); } diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index 19673189f5..1eda1c0c82 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -300,7 +300,7 @@ class UserAdminPanelForm extends AdminForm _m('BUTTON','Save'), 'submit', null, - // TRANS: Title for button to save user settings in user admin panel. + // TRANS: Button title to save user settings in user admin panel. _('Save user settings.')); } } diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index dda61dbb69..4b4356e721 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -350,10 +350,10 @@ class ApplicationEditForm extends Form // TRANS: Button label in the "Edit application" form. $this->out->submit('cancel', _m('BUTTON','Cancel'), 'submit form_action-primary', // TRANS: Submit button title. - 'cancel', _('Cancel')); + 'cancel', _('Cancel application changes.')); // TRANS: Button label in the "Edit application" form. $this->out->submit('save', _m('BUTTON','Save'), 'submit form_action-secondary', // TRANS: Submit button title. - 'save', _('Save')); + 'save', _('Save application changes.')); } } diff --git a/lib/disfavorform.php b/lib/disfavorform.php index 9d0e39784e..9754dfc83b 100644 --- a/lib/disfavorform.php +++ b/lib/disfavorform.php @@ -136,8 +136,8 @@ class DisfavorForm extends Form _m('BUTTON','Disfavor favorite'), 'submit', null, - // TRANS: Title for button text for removing the favourite status for a favourite notice. - _('Disfavor this notice')); + // TRANS: Button title for removing the favourite status for a favourite notice. + _('Remove this notice from your list of favorite notices.')); } /** diff --git a/lib/favorform.php b/lib/favorform.php index c07ba6df59..d5805b2300 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -135,8 +135,8 @@ class FavorForm extends Form _m('BUTTON','Favor'), 'submit', null, - // TRANS: Title for button text for adding the favourite status to a notice. - _('Favor this notice')); + // TRANS: Button title for adding the favourite status to a notice. + _('Add this notice to your list of favorite notices.'); } /** diff --git a/lib/groupblockform.php b/lib/groupblockform.php index 918a5902fd..e60587d37b 100644 --- a/lib/groupblockform.php +++ b/lib/groupblockform.php @@ -125,6 +125,6 @@ class GroupBlockForm extends Form 'submit', null, // TRANS: Submit button title. - _m('TOOLTIP', 'Block this user')); + _m('TOOLTIP', 'Block this user so that they can no longer post messages to it.')); } } diff --git a/lib/makeadminform.php b/lib/makeadminform.php index f1280d3b69..f02bf396f7 100644 --- a/lib/makeadminform.php +++ b/lib/makeadminform.php @@ -121,6 +121,6 @@ class MakeAdminForm extends Form 'submit', null, // TRANS: Submit button title. - _m('TOOLTIP','Make this user an admin')); + _m('TOOLTIP','Make this user an admin.')); } } diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 1cc1bc552d..8fc2f13ca2 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -626,7 +626,7 @@ class NoticeListItem extends Widget $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'))); + 'title' => _('Reply to this notice.'))); // TRANS: Link text in notice list item to reply to a notice. $this->out->text(_('Reply')); $this->out->text(' '); @@ -654,7 +654,7 @@ class NoticeListItem extends Widget $this->out->element('a', array('href' => $deleteurl, 'class' => 'notice_delete', // TRANS: Link title in notice list item to delete a notice. - 'title' => _('Delete this notice')), + 'title' => _('Delete this notice from the timeline.')), // TRANS: Link text in notice list item to delete a notice. _('Delete')); } diff --git a/lib/unsubscribeform.php b/lib/unsubscribeform.php index 0332bd8ca6..3fa594b1b3 100644 --- a/lib/unsubscribeform.php +++ b/lib/unsubscribeform.php @@ -131,6 +131,6 @@ class UnsubscribeForm extends Form // TRANS: Button text on unsubscribe form. $this->out->submit('submit', _m('BUTTON','Unsubscribe'), 'submit', null, // TRANS: Button title on unsubscribe form. - _('Unsubscribe from this user')); + _('Unsubscribe from this user.')); } } From 76c48a7099c7ec5e1ac730f3f1ce9f5a706cd25e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 18 Aug 2011 18:17:38 -0700 Subject: [PATCH 024/118] Fix syntax err --- lib/favorform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/favorform.php b/lib/favorform.php index d5805b2300..eab5ba6e9c 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -136,7 +136,7 @@ class FavorForm extends Form 'submit', null, // TRANS: Button title for adding the favourite status to a notice. - _('Add this notice to your list of favorite notices.'); + _('Add this notice to your list of favorite notices.')); } /** From c718a603f52790dff7c84a5e7ef9f214c8380249 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 16:40:45 +0200 Subject: [PATCH 025/118] Fix and add translator documentation Fix i18n domain where needed. Whitespace updates. --- plugins/Blog/BlogPlugin.php | 11 +++++++---- plugins/Blog/blogentryform.php | 9 ++++----- plugins/Blog/showblogentry.php | 6 +++--- 3 files changed, 14 insertions(+), 12 deletions(-) diff --git a/plugins/Blog/BlogPlugin.php b/plugins/Blog/BlogPlugin.php index 04eef36e04..0f1c34bff1 100644 --- a/plugins/Blog/BlogPlugin.php +++ b/plugins/Blog/BlogPlugin.php @@ -120,13 +120,15 @@ class BlogPlugin extends MicroAppPlugin 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:Blog', 'rawdescription' => + // TRANS: Plugin description. _m('Let users write and share long-form texts.')); return true; } function appTitle() { - return _m('Blog'); + // TRANS: Blog application title. + return _m('TITLE','Blog'); } function tag() @@ -149,7 +151,7 @@ class BlogPlugin extends MicroAppPlugin $entryObj = $activity->objects[0]; if ($entryObj->type != Blog_entry::TYPE) { - // TRANS: Exception thrown when blog plugin comes across a non-event type object. + // TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. throw new ClientException(_m('Wrong type for object.')); } @@ -175,7 +177,8 @@ class BlogPlugin extends MicroAppPlugin $entry = Blog_entry::fromNotice($notice); if (empty($entry)) { - throw new ClientException(sprintf(_('No blog entry for notice %s'), + // TRANS: Exception thrown when requesting a non-existing blog entry for notice. + throw new ClientException(sprintf(_m('No blog entry for notice %s.'), $notice->id)); } @@ -204,7 +207,7 @@ class BlogPlugin extends MicroAppPlugin if ($notice->object_type == Blog_entry::TYPE) { return new BlogEntryListItem($nli); } - + return null; } diff --git a/plugins/Blog/blogentryform.php b/plugins/Blog/blogentryform.php index b21e76a7e8..2da2a1397e 100644 --- a/plugins/Blog/blogentryform.php +++ b/plugins/Blog/blogentryform.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 BlogEntryForm extends Form { /** @@ -96,13 +95,13 @@ class BlogEntryForm extends Form _m('Title of the blog entry.'), 'title'); $this->unli(); - + $this->li(); $this->out->textarea('blog-entry-content', - // TRANS: Field label on event form. + // TRANS: Field label on blog entry form. _m('LABEL','Text'), null, - // TRANS: Field title on event form. + // TRANS: Field title on blog entry form. _m('Text of the blog entry.'), 'content'); $this->unli(); @@ -124,8 +123,8 @@ class BlogEntryForm extends Form */ function formActions() { - // TRANS: Button text to save an event.. $this->out->submit('blog-entry-submit', + // TRANS: Button text to save a blog entry. _m('BUTTON', 'Save'), 'submit', 'submit'); diff --git a/plugins/Blog/showblogentry.php b/plugins/Blog/showblogentry.php index c5aa54a4c2..288527b42a 100644 --- a/plugins/Blog/showblogentry.php +++ b/plugins/Blog/showblogentry.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Show a blog entry - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,12 +44,11 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class ShowblogentryAction extends ShownoticeAction { protected $id; protected $entry; - + function getNotice() { $this->id = $this->trimmed('id'); @@ -81,6 +80,7 @@ class ShowblogentryAction extends ShownoticeAction function title() { // XXX: check for double-encoding + // TRANS: Title for a blog entry without a title. return (empty($this->entry->title)) ? _m('Untitled') : $this->entry->title; } } From d85bfd426d2c5c00ab8dd3702f8061dc1a55cfb6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 16:46:28 +0200 Subject: [PATCH 026/118] Update/add translator documentation. Fix i18n domain where needed. Whitespace updates. --- plugins/Event/newrsvp.php | 4 ++-- plugins/Event/timelist.php | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/plugins/Event/newrsvp.php b/plugins/Event/newrsvp.php index e9adf405d8..8052b972a4 100644 --- a/plugins/Event/newrsvp.php +++ b/plugins/Event/newrsvp.php @@ -78,14 +78,14 @@ class NewrsvpAction extends Action $eventId = $this->trimmed('event'); if (empty($eventId)) { - // TRANS: Client exception thrown when requesting a non-exsting event. + // TRANS: Client exception thrown when referring to a non-existing event. throw new ClientException(_m('No such event.')); } $this->event = Happening::staticGet('id', $eventId); if (empty($this->event)) { - // TRANS: Client exception thrown when requesting a non-exsting event. + // TRANS: Client exception thrown when referring to a non-existing event. throw new ClientException(_m('No such event.')); } diff --git a/plugins/Event/timelist.php b/plugins/Event/timelist.php index a6e0174180..cb8efb3c1d 100644 --- a/plugins/Event/timelist.php +++ b/plugins/Event/timelist.php @@ -32,7 +32,6 @@ if (!defined('STATUSNET')) { * Callback handler to populate end time dropdown */ class TimelistAction extends Action { - private $start; private $duration; @@ -63,13 +62,14 @@ class TimelistAction extends Action { 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.')); + $this->clientError(_m('Not logged in.')); return; } if (!empty($this->start)) { $times = EventTimeList::getTimes($this->start, $this->duration); } else { + // TRANS: Client error when submitting a form with unexpected information. $this->clientError(_m('Unexpected form submission.')); return; } @@ -78,6 +78,7 @@ class TimelistAction extends Action { header('Content-Type: application/json; charset=utf-8'); print json_encode($times); } else { + // TRANS: Client error displayed when using an action in a non-AJAX way. $this->clientError(_m('This action is AJAX only.')); } } From 700b46317a34b5cf8e70468f8c48141566fca0f6 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 16:50:31 +0200 Subject: [PATCH 027/118] Fix broken translator documentation because "// TRANS: " is not exactly in the line above the _m() method call. Whitespace updates. --- plugins/OMB/OMBPlugin.php | 22 ++++++++-------------- plugins/OMB/README | 1 - 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/plugins/OMB/OMBPlugin.php b/plugins/OMB/OMBPlugin.php index 38494c8134..c532c4c894 100644 --- a/plugins/OMB/OMBPlugin.php +++ b/plugins/OMB/OMBPlugin.php @@ -228,16 +228,14 @@ class OMBPlugin extends Plugin $omb01 = Remote_profile::staticGet('id', $other_id); if (!empty($omb01)) { - // TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. throw new ClientException( - _m( - 'You cannot subscribe to an OMB 0.1 ' + // TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. + _m('You cannot subscribe to an OMB 0.1 ' . 'remote profile with this action.' ) ); return false; } - } /** @@ -257,10 +255,9 @@ class OMBPlugin extends Plugin $omb01 = Remote_profile::staticGet('id', $tagged_profile->id); if (!empty($omb01)) { - // TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. $this->clientError( - _m( - 'You cannot list an OMB 0.1 ' + // TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. + _m('You cannot list an OMB 0.1 ' .'remote profile with this action.') ); } @@ -282,10 +279,9 @@ class OMBPlugin extends Plugin $omb01 = Remote_profile::staticGet('id', $ptag->tagged); if (!empty($omb01)) { - // TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. $this->clientError( - _m( - 'You cannot (un)list an OMB 0.1 ' + // TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. + _m('You cannot (un)list an OMB 0.1 ' . 'remote profile with this action.') ); return false; @@ -317,8 +313,8 @@ class OMBPlugin extends Plugin if (!$result) { common_log_db_error($token, 'DELETE', __FILE__); - // TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. throw new Exception( + // TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. _m('Could not delete subscription OMB token.') ); } @@ -394,12 +390,10 @@ class OMBPlugin extends Plugin 'version' => STATUSNET_VERSION, 'author' => 'Zach Copley', 'homepage' => 'http://status.net/wiki/Plugin:Sample', - 'rawdescription' => // TRANS: Plugin description. - _m('A sample plugin to show basics of development for new hackers.') + 'rawdescription' => _m('A sample plugin to show basics of development for new hackers.') ); return true; } } - diff --git a/plugins/OMB/README b/plugins/OMB/README index 839eb4e33a..f296e38ff6 100644 --- a/plugins/OMB/README +++ b/plugins/OMB/README @@ -28,4 +28,3 @@ Note: once you have a sizable number of users, sending OMB messages whenever someone posts a message can really slow down your site; it may cause posting to timeout. You may wish to enable queuing and handle OMB communication offline. See the "queues and daemons" section of the main StatusNet README. - From 4b0dd8384f10b1de0530922d98458e16b6ede020 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 17:06:03 +0200 Subject: [PATCH 028/118] Whitespace updates (including leading tabs to spaces). Fixed i18n. --- plugins/Realtime/RealtimePlugin.php | 100 ++++++----- plugins/Realtime/Realtime_channel.php | 239 +++++++++++++------------- plugins/Realtime/closechannel.php | 6 +- plugins/Realtime/realtimeupdate.js | 2 +- 4 files changed, 169 insertions(+), 178 deletions(-) diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 84a1c7e86e..2b3bc6bf03 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -51,7 +51,6 @@ class RealtimePlugin extends Plugin * When it's time to initialize the plugin, calculate and * pass the URLs we need. */ - function onInitializePlugin() { // FIXME: need to find a better way to pass this pattern in @@ -59,14 +58,14 @@ class RealtimePlugin extends Plugin array('notice' => '0000000000')); return true; } - + function onCheckSchema() { $schema = Schema::get(); $schema->ensureTable('realtime_channel', Realtime_channel::schemaDef()); return true; } - + function onAutoload($cls) { $dir = dirname(__FILE__); @@ -238,31 +237,31 @@ class RealtimePlugin extends Plugin $json = $this->noticeAsJson($notice); $this->_connect(); - + // XXX: We should probably fan-out here and do a // new queue item for each path foreach ($paths as $path) { - - list($action, $arg1, $arg2) = $path; - - $channels = Realtime_channel::getAllChannels($action, $arg1, $arg2); - - foreach ($channels as $channel) { - - // XXX: We should probably fan-out here and do a - // new queue item for each user/path combo - - if (is_null($channel->user_id)) { - $profile = null; - } else { - $profile = Profile::staticGet('id', $channel->user_id); - } - if ($notice->inScope($profile)) { - $timeline = $this->_pathToChannel(array($channel->channel_key)); - $this->_publish($timeline, $json); - } - } + + list($action, $arg1, $arg2) = $path; + + $channels = Realtime_channel::getAllChannels($action, $arg1, $arg2); + + foreach ($channels as $channel) { + + // XXX: We should probably fan-out here and do a + // new queue item for each user/path combo + + if (is_null($channel->user_id)) { + $profile = null; + } else { + $profile = Profile::staticGet('id', $channel->user_id); + } + if ($notice->inScope($profile)) { + $timeline = $this->_pathToChannel(array($channel->channel_key)); + $this->_publish($timeline, $json); + } + } } $this->_disconnect(); @@ -367,12 +366,11 @@ class RealtimePlugin extends Plugin $convurl = $conv->uri; if(empty($convurl)) { - $msg = sprintf( - "Couldn't find Conversation ID %d to make 'in context'" - . "link for Notice ID %d", + $msg = sprintf( _m("Could not find Conversation ID %d to make 'in context'" + . "link for Notice ID %d.", $notice->conversation, $notice->id - ); + )); common_log(LOG_WARNING, $msg); } else { @@ -455,26 +453,26 @@ class RealtimePlugin extends Plugin function _getChannel($action) { $timeline = null; - $arg1 = null; - $arg2 = null; - + $arg1 = null; + $arg2 = null; + $action_name = $action->trimmed('action'); - // FIXME: lists - // FIXME: search (!) - // FIXME: profile + tag - + // FIXME: lists + // FIXME: search (!) + // FIXME: profile + tag + switch ($action_name) { case 'public': - // no arguments + // no arguments break; case 'tag': $tag = $action->trimmed('tag'); if (empty($tag)) { $arg1 = $tag; } else { - $this->log(LOG_NOTICE, "Unexpected 'tag' action without tag argument"); - return null; + $this->log(LOG_NOTICE, "Unexpected 'tag' action without tag argument"); + return null; } break; case 'showstream': @@ -485,29 +483,29 @@ class RealtimePlugin extends Plugin if (!empty($nickname)) { $arg1 = $nickname; } else { - $this->log(LOG_NOTICE, "Unexpected $action_name action without nickname argument."); - return null; + $this->log(LOG_NOTICE, "Unexpected $action_name action without nickname argument."); + return null; } break; default: return null; } - $user = common_current_user(); - - $user_id = (!empty($user)) ? $user->id : null; - - $channel = Realtime_channel::getChannel($user_id, - $action_name, - $arg1, - $arg2); + $user = common_current_user(); + + $user_id = (!empty($user)) ? $user->id : null; + + $channel = Realtime_channel::getChannel($user_id, + $action_name, + $arg1, + $arg2); return $channel; } - + function onStartReadWriteTables(&$alwaysRW, &$rwdb) { - $alwaysRW[] = 'realtime_channel'; - return true; + $alwaysRW[] = 'realtime_channel'; + return true; } } diff --git a/plugins/Realtime/Realtime_channel.php b/plugins/Realtime/Realtime_channel.php index 679ff1273a..1d2ca53912 100644 --- a/plugins/Realtime/Realtime_channel.php +++ b/plugins/Realtime/Realtime_channel.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * A channel for real-time browser data - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -34,7 +34,7 @@ if (!defined('STATUSNET')) { /** * A channel for real-time browser data - * + * * For each user currently browsing the site, we want to know which page they're on * so we can send real-time updates to their browser. * @@ -46,20 +46,19 @@ if (!defined('STATUSNET')) { * * @see DB_DataObject */ - class Realtime_channel extends Managed_DataObject { - const TIMEOUT = 1800; // 30 minutes - + const TIMEOUT = 1800; // 30 minutes + public $__table = 'realtime_channel'; // table name - + public $user_id; // int -> user.id, can be null public $action; // string public $arg1; // argument public $arg2; // argument, usually null public $channel_key; // 128-bit shared secret key public $audience; // listener count - public $created; // created date + public $created; // created date public $modified; // modified date /** @@ -71,7 +70,6 @@ class Realtime_channel extends Managed_DataObject * @param mixed $v Value to lookup * * @return Realtime_channel object found, or null for no hits - * */ function staticGet($k, $v=null) { @@ -84,7 +82,6 @@ class Realtime_channel extends Managed_DataObject * @param array $kv array of key-value mappings * * @return Realtime_channel object found, or null for no hits - * */ function pkeyGet($kv) { @@ -100,34 +97,34 @@ class Realtime_channel extends Managed_DataObject 'description' => 'A channel of realtime notice data', 'fields' => array( 'user_id' => array('type' => 'int', - 'not null' => false, - 'description' => 'user viewing page; can be null'), + 'not null' => false, + 'description' => 'user viewing page; can be null'), 'action' => array('type' => 'varchar', - 'length' => 255, - 'not null' => true, - 'description' => 'page being viewed'), - 'arg1' => array('type' => 'varchar', - 'length' => 255, - 'not null' => false, - 'description' => 'page argument, like username or tag'), - 'arg2' => array('type' => 'varchar', - 'length' => 255, - 'not null' => false, - 'description' => 'second page argument, like tag for showstream'), - 'channel_key' => array('type' => 'varchar', - 'length' => 32, - 'not null' => true, - 'description' => 'shared secret key for this channel'), - 'audience' => array('type' => 'integer', + 'length' => 255, + 'not null' => true, + 'description' => 'page being viewed'), + 'arg1' => array('type' => 'varchar', + 'length' => 255, + 'not null' => false, + 'description' => 'page argument, like username or tag'), + 'arg2' => array('type' => 'varchar', + 'length' => 255, + 'not null' => false, + 'description' => 'second page argument, like tag for showstream'), + 'channel_key' => array('type' => 'varchar', + 'length' => 32, + 'not null' => true, + 'description' => 'shared secret key for this channel'), + 'audience' => array('type' => 'integer', 'not null' => true, 'default' => 0, 'description' => 'reference count'), 'created' => array('type' => 'datetime', - 'not null' => true, - 'description' => 'date this record was created'), + 'not null' => true, + 'description' => 'date this record was created'), 'modified' => array('type' => 'datetime', - 'not null' => true, - 'description' => 'date this record was modified'), + 'not null' => true, + 'description' => 'date this record was modified'), ), 'primary key' => array('channel_key'), 'unique keys' => array('realtime_channel_user_page_idx' => array('user_id', 'action', 'arg1', 'arg2')), @@ -140,107 +137,107 @@ class Realtime_channel extends Managed_DataObject ), ); } - + static function saveNew($user_id, $action, $arg1, $arg2) { - $channel = new Realtime_channel(); - - $channel->user_id = $user_id; - $channel->action = $action; - $channel->arg1 = $arg1; - $channel->arg2 = $arg2; - $channel->audience = 1; - - $channel->channel_key = common_good_rand(16); // 128-bit key, 32 hex chars - - $channel->created = common_sql_now(); - $channel->modified = $channel->created; - - $channel->insert(); - - return $channel; + $channel = new Realtime_channel(); + + $channel->user_id = $user_id; + $channel->action = $action; + $channel->arg1 = $arg1; + $channel->arg2 = $arg2; + $channel->audience = 1; + + $channel->channel_key = common_good_rand(16); // 128-bit key, 32 hex chars + + $channel->created = common_sql_now(); + $channel->modified = $channel->created; + + $channel->insert(); + + return $channel; } - + static function getChannel($user_id, $action, $arg1, $arg2) { - $channel = self::fetchChannel($user_id, $action, $arg1, $arg2); - - // Ignore (and delete!) old channels - - if (!empty($channel)) { - $modTime = strtotime($channel->modified); - if ((time() - $modTime) > self::TIMEOUT) { - $channel->delete(); - $channel = null; - } - } - - if (empty($channel)) { - $channel = self::saveNew($user_id, $action, $arg1, $arg2); - } - - return $channel; + $channel = self::fetchChannel($user_id, $action, $arg1, $arg2); + + // Ignore (and delete!) old channels + + if (!empty($channel)) { + $modTime = strtotime($channel->modified); + if ((time() - $modTime) > self::TIMEOUT) { + $channel->delete(); + $channel = null; + } + } + + if (empty($channel)) { + $channel = self::saveNew($user_id, $action, $arg1, $arg2); + } + + return $channel; } - + static function getAllChannels($action, $arg1, $arg2) { - $channel = new Realtime_channel(); - - $channel->action = $action; - - if (is_null($arg1)) { - $channel->whereAdd('arg1 is null'); - } else { - $channel->arg1 = $arg1; - } - - if (is_null($arg2)) { - $channel->whereAdd('arg2 is null'); - } else { - $channel->arg2 = $arg2; - } - - $channel->whereAdd('modified > "' . common_sql_date(time() - self::TIMEOUT) . '"'); - - $channels = array(); - - if ($channel->find()) { - $channels = $channel->fetchAll(); - } - - return $channels; + $channel = new Realtime_channel(); + + $channel->action = $action; + + if (is_null($arg1)) { + $channel->whereAdd('arg1 is null'); + } else { + $channel->arg1 = $arg1; + } + + if (is_null($arg2)) { + $channel->whereAdd('arg2 is null'); + } else { + $channel->arg2 = $arg2; + } + + $channel->whereAdd('modified > "' . common_sql_date(time() - self::TIMEOUT) . '"'); + + $channels = array(); + + if ($channel->find()) { + $channels = $channel->fetchAll(); + } + + return $channels; } - + static function fetchChannel($user_id, $action, $arg1, $arg2) - { - $channel = new Realtime_channel(); - - if (is_null($user_id)) { - $channel->whereAdd('user_id is null'); - } else { - $channel->user_id = $user_id; - } - - $channel->action = $action; - - if (is_null($arg1)) { - $channel->whereAdd('arg1 is null'); - } else { - $channel->arg1 = $arg1; - } - - if (is_null($arg2)) { - $channel->whereAdd('arg2 is null'); - } else { - $channel->arg2 = $arg2; - } - - if ($channel->find(true)) { + { + $channel = new Realtime_channel(); + + if (is_null($user_id)) { + $channel->whereAdd('user_id is null'); + } else { + $channel->user_id = $user_id; + } + + $channel->action = $action; + + if (is_null($arg1)) { + $channel->whereAdd('arg1 is null'); + } else { + $channel->arg1 = $arg1; + } + + if (is_null($arg2)) { + $channel->whereAdd('arg2 is null'); + } else { + $channel->arg2 = $arg2; + } + + if ($channel->find(true)) { $channel->increment(); - return $channel; - } else { - return null; - } + return $channel; + } else { + return null; + } } function increment() diff --git a/plugins/Realtime/closechannel.php b/plugins/Realtime/closechannel.php index 63c616e5db..2a044328bf 100644 --- a/plugins/Realtime/closechannel.php +++ b/plugins/Realtime/closechannel.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * action to close a channel - * + * * 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 ClosechannelAction extends Action { protected $channelKey = null; @@ -57,7 +56,6 @@ class ClosechannelAction extends Action * * @return boolean true */ - function prepare($argarray) { parent::prepare($argarray); @@ -88,7 +86,6 @@ class ClosechannelAction extends Action * * @return void */ - function handle($argarray=null) { $this->channel->decrement(); @@ -107,7 +104,6 @@ class ClosechannelAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { return false; diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index ab7d529f65..e044f2f916 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -412,7 +412,7 @@ RealtimeUpdate = { $.ajax({ type: 'POST', url: RealtimeUpdate._keepaliveurl}); - + }, 15 * 60 * 1000 ); // every 15 min; timeout in 30 min RealtimeUpdate.initPlayPause(); From 91cb7b8775a460eb666fbf5b9b5755b0a2857059 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 17:09:44 +0200 Subject: [PATCH 029/118] Remove i18n fix from previous commit: this is a debug log entry. --- plugins/Realtime/RealtimePlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 2b3bc6bf03..6011bbc035 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -366,11 +366,11 @@ class RealtimePlugin extends Plugin $convurl = $conv->uri; if(empty($convurl)) { - $msg = sprintf( _m("Could not find Conversation ID %d to make 'in context'" + $msg = sprintf( "Could not find Conversation ID %d to make 'in context'" . "link for Notice ID %d.", $notice->conversation, $notice->id - )); + ); common_log(LOG_WARNING, $msg); } else { From d5cba33366b49d5dd0515fa3ee9b2a08b1a283c3 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 17:11:29 +0200 Subject: [PATCH 030/118] Add translator documentation. --- plugins/Realtime/closechannel.php | 3 +++ plugins/Realtime/keepalivechannel.php | 7 +++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/plugins/Realtime/closechannel.php b/plugins/Realtime/closechannel.php index 2a044328bf..4c4e5de1cc 100644 --- a/plugins/Realtime/closechannel.php +++ b/plugins/Realtime/closechannel.php @@ -61,18 +61,21 @@ class ClosechannelAction extends Action parent::prepare($argarray); if (!$this->isPost()) { + // TRANS: Client exception. Do not translate POST. throw new ClientException(_m('You have to POST it.')); } $this->channelKey = $this->trimmed('channelkey'); if (empty($this->channelKey)) { + // TRANS: Client exception thrown when the channel key argument is missing. throw new ClientException(_m('No channel key argument.')); } $this->channel = Realtime_channel::staticGet('channel_key', $this->channelKey); if (empty($this->channel)) { + // TRANS: Client exception thrown when referring to a non-existing channel. throw new ClientException(_m('No such channel.')); } diff --git a/plugins/Realtime/keepalivechannel.php b/plugins/Realtime/keepalivechannel.php index 152595d76c..7559927d6b 100644 --- a/plugins/Realtime/keepalivechannel.php +++ b/plugins/Realtime/keepalivechannel.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 KeepalivechannelAction extends Action { protected $channelKey = null; @@ -57,24 +56,26 @@ class KeepalivechannelAction extends Action * * @return boolean true */ - function prepare($argarray) { parent::prepare($argarray); if (!$this->isPost()) { + // TRANS: Client exception. Do not translate POST. throw new ClientException(_m('You have to POST it.')); } $this->channelKey = $this->trimmed('channelkey'); if (empty($this->channelKey)) { + // TRANS: Client exception thrown when the channel key argument is missing. throw new ClientException(_m('No channel key argument.')); } $this->channel = Realtime_channel::staticGet('channel_key', $this->channelKey); if (empty($this->channel)) { + // TRANS: Client exception thrown when referring to a non-existing channel. throw new ClientException(_m('No such channel.')); } @@ -88,7 +89,6 @@ class KeepalivechannelAction extends Action * * @return void */ - function handle($argarray=null) { $this->channel->touch(); @@ -107,7 +107,6 @@ class KeepalivechannelAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { return false; From 083e9773f208ec8a28d40dd3bc72047aa0efd524 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 17:13:15 +0200 Subject: [PATCH 031/118] Add translator documentation. doxygen fixes. --- plugins/OStatus/classes/Ostatus_profile.php | 66 +++++++++++---------- 1 file changed, 34 insertions(+), 32 deletions(-) diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 3e5c531fd2..661b7fe3f7 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -25,7 +25,6 @@ if (!defined('STATUSNET')) { * @package OStatusPlugin * @maintainer Brion Vibber */ - class Ostatus_profile extends Managed_DataObject { public $__table = 'ostatus_profile'; @@ -141,7 +140,7 @@ class Ostatus_profile extends Managed_DataObject * * Assumes that 'activity' namespace has been previously defined. * - * @fixme replace with wrappers on asActivityObject when it's got everything. + * @todo FIXME: Replace with wrappers on asActivityObject when it's got everything. * * @param string $element one of 'actor', 'subject', 'object', 'target' * @return string @@ -301,7 +300,7 @@ class Ostatus_profile extends Managed_DataObject $actor->getURI(), common_date_iso8601(time())); - // @fixme consolidate all these NS settings somewhere + // @todo FIXME: Consolidate all these NS settings somewhere. $attributes = array('xmlns' => Activity::ATOM, 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/', 'xmlns:thr' => 'http://purl.org/syndication/thread/1.0', @@ -414,7 +413,7 @@ class Ostatus_profile extends Managed_DataObject if ($feed->localName == 'feed' && $feed->namespaceURI == Activity::ATOM) { $this->processAtomFeed($feed, $source); - } else if ($feed->localName == 'rss') { // @fixme check namespace + } else if ($feed->localName == 'rss') { // @todo FIXME: Check namespace. $this->processRssFeed($feed, $source); } else { // TRANS: Exception. @@ -466,7 +465,6 @@ class Ostatus_profile extends Managed_DataObject * * @return Notice Notice representing the new (or existing) activity */ - public function processEntry($entry, $feed, $source) { $activity = new Activity($entry, $feed); @@ -509,7 +507,7 @@ class Ostatus_profile extends Managed_DataObject Event::handle('EndHandleFeedEntry', array($activity)); Event::handle('EndHandleFeedEntryWithProfile', array($activity, $this, $notice)); } - + return $notice; } @@ -525,13 +523,15 @@ class Ostatus_profile extends Managed_DataObject } if (count($activity->objects) != 1) { - throw new ClientException(_m("Can only handle share activities with exactly one object.")); + // TRANS: Client exception thrown when trying to share multiple activities at once. + throw new ClientException(_m('Can only handle share activities with exactly one object.')); } $shared = $activity->objects[0]; if (!($shared instanceof Activity)) { - throw new ClientException(_m("Can only handle shared activities.")); + // TRANS: Client exception thrown when trying to share a non-activity object. + throw new ClientException(_m('Can only handle shared activities.')); } $other = Ostatus_profile::ensureActivityObjectProfile($shared->actor); @@ -539,10 +539,12 @@ class Ostatus_profile extends Managed_DataObject // Save the item (or check for a dupe) $sharedNotice = $other->processActivity($shared, $method); - + if (empty($sharedNotice)) { $sharedId = ($shared->id) ? $shared->id : $shared->objects[0]->id; - throw new ClientException(sprintf(_m("Failed to save activity %s."), + // TRANS: Client exception thrown when saving an activity share fails. + // TRANS: %s is a share ID. + throw new ClientException(sprintf(_m('Failed to save activity %s.'), $sharedId)); } @@ -578,7 +580,7 @@ class Ostatus_profile extends Managed_DataObject } else if (!empty($activity->title)) { $sourceContent = $activity->title; } else { - // @fixme fetch from $sourceUrl? + // @todo FIXME: Fetch from $sourceUrl? // TRANS: Client exception. %s is a source URI. throw new ClientException(sprintf(_m('No content for notice %s.'),$sourceUri)); } @@ -652,7 +654,7 @@ class Ostatus_profile extends Managed_DataObject $options['replies'] = $replies; // Maintain direct reply associations - // @fixme what about conversation ID? + // @todo FIXME: What about conversation ID? if (!empty($activity->context->replyToID)) { $orig = Notice::staticGet('uri', $activity->context->replyToID); @@ -688,7 +690,7 @@ class Ostatus_profile extends Managed_DataObject // Atom enclosures -> attachment URLs foreach ($activity->enclosures as $href) { - // @fixme save these locally or....? + // @todo FIXME: Save these locally or....? $options['urls'][] = $href; } @@ -705,7 +707,7 @@ class Ostatus_profile extends Managed_DataObject * @param Activity $activity * @param string $method 'push' or 'salmon' * @return mixed saved Notice or false - * @fixme break up this function, it's getting nasty long + * @todo FIXME: Break up this function, it's getting nasty long */ public function processPost($activity, $method) { @@ -750,7 +752,7 @@ class Ostatus_profile extends Managed_DataObject } else if (!empty($note->title)) { $sourceContent = $note->title; } else { - // @fixme fetch from $sourceUrl? + // @todo FIXME: Fetch from $sourceUrl? // TRANS: Client exception. %s is a source URI. throw new ClientException(sprintf(_m('No content for notice %s.'),$sourceUri)); } @@ -822,7 +824,7 @@ class Ostatus_profile extends Managed_DataObject $options['replies'] = $replies; // Maintain direct reply associations - // @fixme what about conversation ID? + // @todo FIXME: What about conversation ID? if (!empty($activity->context->replyToID)) { $orig = Notice::staticGet('uri', $activity->context->replyToID); @@ -858,7 +860,7 @@ class Ostatus_profile extends Managed_DataObject // Atom enclosures -> attachment URLs foreach ($activity->enclosures as $href) { - // @fixme save these locally or....? + // @todo FIXME: Save these locally or....? $options['urls'][] = $href; } @@ -907,7 +909,7 @@ class Ostatus_profile extends Managed_DataObject // Is the recipient a local user? $user = User::staticGet('uri', $recipient); if ($user) { - // @fixme sender verification, spam etc? + // @todo FIXME: Sender verification, spam etc? $replies[] = $recipient; continue; } @@ -936,7 +938,7 @@ class Ostatus_profile extends Managed_DataObject $oprofile = Ostatus_profile::ensureProfileURI($recipient); if ($oprofile->isGroup()) { // Deliver to local members of this remote group. - // @fixme sender verification? + // @todo FIXME: Sender verification? $groups[] = $oprofile->group_id; } else { // may be canonicalized or something @@ -1129,7 +1131,7 @@ class Ostatus_profile extends Managed_DataObject * * @param DOMElement $feedEl root element of a loaded Atom feed * @param array $hints additional discovery information passed from higher levels - * @fixme should this be marked public? + * @todo FIXME: Should this be marked public? * @return Ostatus_profile * @throws Exception */ @@ -1155,7 +1157,7 @@ class Ostatus_profile extends Managed_DataObject * * @param DOMElement $feedEl root element of a loaded RSS feed * @param array $hints additional discovery information passed from higher levels - * @fixme should this be marked public? + * @todo FIXME: Should this be marked public? * @return Ostatus_profile * @throws Exception */ @@ -1181,7 +1183,7 @@ class Ostatus_profile extends Managed_DataObject } } - // @fixme we should check whether this feed has elements + // @todo FIXME: We should check whether this feed has elements // with different or elements, and... I dunno. // Do something about that. @@ -1219,7 +1221,7 @@ class Ostatus_profile extends Managed_DataObject $this->uri)); } - // @fixme this should be better encapsulated + // @todo FIXME: This should be better encapsulated // ripped from oauthstore.php (for old OMB client) $temp_filename = tempnam(sys_get_temp_dir(), 'listener_avatar'); try { @@ -1233,7 +1235,7 @@ class Ostatus_profile extends Managed_DataObject } else { $id = $this->profile_id; } - // @fixme should we be using different ids? + // @todo FIXME: Should we be using different ids? $imagefile = new ImageFile($id, $temp_filename); $filename = Avatar::filename($id, image_type_to_extension($imagefile->type), @@ -1244,7 +1246,7 @@ class Ostatus_profile extends Managed_DataObject unlink($temp_filename); throw $e; } - // @fixme hardcoded chmod is lame, but seems to be necessary to + // @todo FIXME: Hardcoded chmod is lame, but seems to be necessary to // keep from accidentally saving images from command-line (queues) // that can't be read from web server, which causes hard-to-notice // problems later on: @@ -1253,7 +1255,7 @@ class Ostatus_profile extends Managed_DataObject chmod(Avatar::path($filename), 0644); $profile = $this->localProfile(); - + if (!empty($profile)) { $profile->setOriginal($filename); } @@ -1426,7 +1428,7 @@ class Ostatus_profile extends Managed_DataObject } /** - * @fixme validate stuff somewhere + * @todo FIXME: Validate stuff somewhere. */ /** @@ -1519,7 +1521,7 @@ class Ostatus_profile extends Managed_DataObject $oprofile->profile_id = $profile->insert(); if (!$oprofile->profile_id) { - // TRANS: Server exception. + // TRANS: Server exception. throw new ServerException(_m('Cannot save local profile.')); } } else if ($object->type == ActivityObject::GROUP) { @@ -1652,7 +1654,7 @@ class Ostatus_profile extends Managed_DataObject } } - // @fixme tags/categories + // @todo FIXME: tags/categories // @todo tags from categories if ($profile->id) { @@ -1887,7 +1889,7 @@ class Ostatus_profile extends Managed_DataObject $xrd = $disco->lookup($addr); } catch (Exception $e) { // Save negative cache entry so we don't waste time looking it up again. - // @fixme distinguish temporary failures? + // @todo FIXME: Distinguish temporary failures? self::cacheSet(sprintf('ostatus_profile:webfinger:%s', $addr), null); // TRANS: Exception. throw new Exception(_m('Not a valid webfinger address.')); @@ -1930,14 +1932,14 @@ class Ostatus_profile extends Managed_DataObject return $oprofile; } catch (OStatusShadowException $e) { // We've ended up with a remote reference to a local user or group. - // @fixme ideally we should be able to say who it was so we can + // @todo FIXME: Ideally we should be able to say who it was so we can // go back and refer to it the regular way throw $e; } catch (Exception $e) { common_log(LOG_WARNING, "Failed creating profile from profile URL '$profileUrl': " . $e->getMessage()); // keep looking // - // @fixme this means an error discovering from profile page + // @todo FIXME: This means an error discovering from profile page // may give us a corrupt entry using the webfinger URI, which // will obscure the correct page-keyed profile later on. } From 73806460ce216806ac7a9e5d5648d4f59426e2c8 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 17:38:43 +0200 Subject: [PATCH 032/118] Add translator documentation. Fix incorrect i18n. Whitespace updates. --- classes/Memcached_DataObject.php | 258 ++++++++++++++++--------------- 1 file changed, 130 insertions(+), 128 deletions(-) diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php index e1610c56b2..9cedcc6ff6 100644 --- a/classes/Memcached_DataObject.php +++ b/classes/Memcached_DataObject.php @@ -63,156 +63,158 @@ class Memcached_DataObject extends Safe_DataObject } return $i; } - + /** * Get multiple items from the database by key - * + * * @param string $cls Class to fetch * @param string $keyCol name of column for key * @param array $keyVals key values to fetch * @param boolean $skipNulls return only non-null results? - * + * * @return array Array of objects, in order */ function multiGet($cls, $keyCol, $keyVals, $skipNulls=true) { - $result = self::pivotGet($cls, $keyCol, $keyVals); - - $values = array_values($result); - - if ($skipNulls) { - $tmp = array(); - foreach ($values as $value) { - if (!empty($value)) { - $tmp[] = $value; - } - } - $values = $tmp; - } - - return new ArrayWrapper($values); + $result = self::pivotGet($cls, $keyCol, $keyVals); + + $values = array_values($result); + + if ($skipNulls) { + $tmp = array(); + foreach ($values as $value) { + if (!empty($value)) { + $tmp[] = $value; + } + } + $values = $tmp; + } + + return new ArrayWrapper($values); } - + /** * Get multiple items from the database by key - * + * * @param string $cls Class to fetch * @param string $keyCol name of column for key * @param array $keyVals key values to fetch * @param boolean $otherCols Other columns to hold fixed - * + * * @return array Array mapping $keyVals to objects, or null if not found */ static function pivotGet($cls, $keyCol, $keyVals, $otherCols = array()) { - $result = array_fill_keys($keyVals, null); - - $toFetch = array(); - - foreach ($keyVals as $keyVal) { - - $kv = array_merge($otherCols, array($keyCol => $keyVal)); - - $i = self::multicache($cls, $kv); - - if ($i !== false) { - $result[$keyVal] = $i; - } else if (!empty($keyVal)) { - $toFetch[] = $keyVal; - } - } - - if (count($toFetch) > 0) { + $result = array_fill_keys($keyVals, null); + + $toFetch = array(); + + foreach ($keyVals as $keyVal) { + + $kv = array_merge($otherCols, array($keyCol => $keyVal)); + + $i = self::multicache($cls, $kv); + + if ($i !== false) { + $result[$keyVal] = $i; + } else if (!empty($keyVal)) { + $toFetch[] = $keyVal; + } + } + + if (count($toFetch) > 0) { $i = DB_DataObject::factory($cls); if (empty($i)) { - throw new Exception(_('Cannot instantiate class ' . $cls)); + // TRANS: Exception thrown when a class (%s) could not be instantiated. + throw new Exception(sprintf(_('Cannot instantiate class %s.'),$cls)); } foreach ($otherCols as $otherKeyCol => $otherKeyVal) { $i->$otherKeyCol = $otherKeyVal; } - $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); - if ($i->find()) { - while ($i->fetch()) { - $copy = clone($i); - $copy->encache(); - $result[$i->$keyCol] = $copy; - } - } - - // Save state of DB misses - - foreach ($toFetch as $keyVal) { - if (empty($result[$keyVal])) { - $kv = array_merge($otherCols, array($keyCol => $keyVal)); - // save the fact that no such row exists - $c = self::memcache(); - if (!empty($c)) { - $ck = self::multicacheKey($cls, $kv); - $c->set($ck, null); - } - } - } - } - - return $result; - } - - function listGet($cls, $keyCol, $keyVals) - { - $result = array_fill_keys($keyVals, array()); - - $toFetch = array(); - - foreach ($keyVals as $keyVal) { - $l = self::cacheGet(sprintf("%s:list:%s:%s", $cls, $keyCol, $keyVal)); - if ($l !== false) { - $result[$keyVal] = $l; - } else { - $toFetch[] = $keyVal; - } - } - - if (count($toFetch) > 0) { - $i = DB_DataObject::factory($cls); - if (empty($i)) { - throw new Exception(_('Cannot instantiate class ' . $cls)); - } - $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); - if ($i->find()) { - while ($i->fetch()) { - $copy = clone($i); - $copy->encache(); - $result[$i->$keyCol][] = $copy; - } - } - foreach ($toFetch as $keyVal) - { - self::cacheSet(sprintf("%s:list:%s:%s", $cls, $keyCol, $keyVal), - $result[$keyVal]); - } + $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); + if ($i->find()) { + while ($i->fetch()) { + $copy = clone($i); + $copy->encache(); + $result[$i->$keyCol] = $copy; + } + } + + // Save state of DB misses + + foreach ($toFetch as $keyVal) { + if (empty($result[$keyVal])) { + $kv = array_merge($otherCols, array($keyCol => $keyVal)); + // save the fact that no such row exists + $c = self::memcache(); + if (!empty($c)) { + $ck = self::multicacheKey($cls, $kv); + $c->set($ck, null); + } + } + } + } + + return $result; + } + + function listGet($cls, $keyCol, $keyVals) + { + $result = array_fill_keys($keyVals, array()); + + $toFetch = array(); + + foreach ($keyVals as $keyVal) { + $l = self::cacheGet(sprintf("%s:list:%s:%s", $cls, $keyCol, $keyVal)); + if ($l !== false) { + $result[$keyVal] = $l; + } else { + $toFetch[] = $keyVal; + } + } + + if (count($toFetch) > 0) { + $i = DB_DataObject::factory($cls); + if (empty($i)) { + // TRANS: Exception thrown when a class (%s) could not be instantiated. + throw new Exception(sprintf(_('Cannot instantiate class %s.'),$cls)); + } + $i->whereAddIn($keyCol, $toFetch, $i->columnType($keyCol)); + if ($i->find()) { + while ($i->fetch()) { + $copy = clone($i); + $copy->encache(); + $result[$i->$keyCol][] = $copy; + } + } + foreach ($toFetch as $keyVal) + { + self::cacheSet(sprintf("%s:list:%s:%s", $cls, $keyCol, $keyVal), + $result[$keyVal]); + } + } + + return $result; + } + + function columnType($columnName) + { + $keys = $this->table(); + if (!array_key_exists($columnName, $keys)) { + throw new Exception('Unknown key column ' . $columnName . ' in ' . join(',', array_keys($keys))); + } + + $def = $keys[$columnName]; + + if ($def & DB_DATAOBJECT_INT) { + return 'integer'; + } else { + return 'string'; } - - return $result; } - function columnType($columnName) - { - $keys = $this->table(); - if (!array_key_exists($columnName, $keys)) { - throw new Exception('Unknown key column ' . $columnName . ' in ' . join(',', array_keys($keys))); - } - - $def = $keys[$columnName]; - - if ($def & DB_DATAOBJECT_INT) { - return 'integer'; - } else { - return 'string'; - } - } - /** - * @fixme Should this return false on lookup fail to match staticGet? + * @todo FIXME: Should this return false on lookup fail to match staticGet? */ function pkeyGet($cls, $kv) { @@ -225,13 +227,13 @@ class Memcached_DataObject extends Safe_DataObject return false; } foreach ($kv as $k => $v) { - if (is_null($v)) { - // XXX: possible SQL injection...? Don't - // pass keys from the browser, eh. - $i->whereAdd("$k is null"); - } else { - $i->$k = $v; - } + if (is_null($v)) { + // XXX: possible SQL injection...? Don't + // pass keys from the browser, eh. + $i->whereAdd("$k is null"); + } else { + $i->$k = $v; + } } if ($i->find(true)) { $i->encache(); @@ -562,7 +564,7 @@ class Memcached_DataObject extends Safe_DataObject continue; } if (in_array($func, $ignoreStatic)) { - continue; // @fixme this shouldn't be needed? + continue; // @todo FIXME: This shouldn't be needed? } $here = get_class($frame['object']) . '->' . $func; break; @@ -705,7 +707,7 @@ class Memcached_DataObject extends Safe_DataObject if (!$dsn) { // TRANS: Exception thrown when database name or Data Source Name could not be found. - throw new Exception(_("No database name or DSN found anywhere.")); + throw new Exception(_('No database name or DSN found anywhere.')); } return $dsn; From d756242f645dcce2dffbf679a6d9fb71d01ebe44 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 17:39:39 +0200 Subject: [PATCH 033/118] Add translator documentation. L10n/i18n fixes. Whitespace updates. --- actions/apiconversation.php | 48 +++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 26 deletions(-) diff --git a/actions/apiconversation.php b/actions/apiconversation.php index fefb5b67a5..dae9a41f71 100644 --- a/actions/apiconversation.php +++ b/actions/apiconversation.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * Show a stream of notices in a particular conversation - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -46,12 +46,11 @@ require_once INSTALLDIR . '/lib/apiauth.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class ApiconversationAction extends ApiAuthAction { - protected $conversation = null; - protected $notices = null; - + protected $conversation = null; + protected $notices = null; + /** * For initializing members of the class. * @@ -59,35 +58,36 @@ class ApiconversationAction extends ApiAuthAction * * @return boolean true */ - function prepare($argarray) { parent::prepare($argarray); - + $convId = $this->trimmed('id'); - + if (empty($convId)) { - throw new ClientException(_m('no conversation id')); + // TRANS: Client exception thrown when no conversation ID is given. + throw new ClientException(_('No conversation ID.')); } - + $this->conversation = Conversation::staticGet('id', $convId); - + if (empty($this->conversation)) { - throw new ClientException(sprintf(_m('No conversation with id %d'), $convId), - 404); + // TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). + throw new ClientException(sprintf(_('No conversation with ID %d.'), $convId), + 404); } - + $profile = Profile::current(); - + $stream = new ConversationNoticeStream($convId, $profile); - + $notice = $stream->getNotices(($this->page-1) * $this->count, $this->count, $this->since_id, $this->max_id); - + $this->notices = $notice->fetchAll(); - + return true; } @@ -98,17 +98,16 @@ class ApiconversationAction extends ApiAuthAction * * @return void */ - function handle($argarray=null) { $sitename = common_config('site', 'name'); // TRANS: Timeline title for user and friends. %s is a user nickname. - $title = _("Conversation"); + $title = _m('TITLE', 'Conversation'); $id = common_local_url('apiconversation', array('id' => $this->conversation->id, 'format' => $this->format)); $link = common_local_url('conversation', array('id' => $this->conversation->id)); $self = $id; - + switch($this->format) { case 'xml': $this->showXmlTimeline($this->notices); @@ -168,7 +167,6 @@ class ApiconversationAction extends ApiAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { if ($_SERVER['REQUEST_METHOD'] == 'GET' || @@ -202,7 +200,6 @@ class ApiconversationAction extends ApiAuthAction * * @return string etag http header */ - function etag() { if (!empty($this->notices) && (count($this->notices) > 0)) { @@ -220,7 +217,7 @@ class ApiconversationAction extends ApiAuthAction ) . '"'; } - + return null; } @@ -229,7 +226,6 @@ class ApiconversationAction extends ApiAuthAction * * @return boolean true if delete, else false */ - function requiresAuth() { if ($_SERVER['REQUEST_METHOD'] == 'GET' || @@ -239,4 +235,4 @@ class ApiconversationAction extends ApiAuthAction return true; } } -} \ No newline at end of file +} From b1ff67a55ec9a67086779115ad0963cd8aa114ac Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 18:11:31 +0200 Subject: [PATCH 034/118] Add translator documentation. L10n updates. Whitespace updates. --- lib/groupsnav.php | 6 ++++-- lib/listsnav.php | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/lib/groupsnav.php b/lib/groupsnav.php index bedb9f9b6e..3d282f5e1d 100644 --- a/lib/groupsnav.php +++ b/lib/groupsnav.php @@ -84,8 +84,10 @@ class GroupsNav extends MoreMenu function seeAllItem() { return array('usergroups', array('nickname' => $this->user->nickname), + // TRANS: Link description for seeing all groups. _('See all'), - _('See all groups you belong to')); + // TRANS: Link title for seeing all groups. + _('See all groups you belong to.')); } - + } diff --git a/lib/listsnav.php b/lib/listsnav.php index 412c18ffd9..a2fa0b8cd1 100644 --- a/lib/listsnav.php +++ b/lib/listsnav.php @@ -58,11 +58,11 @@ class ListsNav extends MoreMenu { return 'lists'; } - + function getItems() { $items = array(); - + while ($this->lists->fetch()) { $mode = $this->lists->private ? 'private' : 'public'; $items[] = array('showprofiletag', @@ -84,7 +84,9 @@ class ListsNav extends MoreMenu { return array('peopletagsbyuser', array('nickname' => $this->profile->nickname), + // TRANS: Link description for seeing all lists. _('See all'), - _('See all lists you have created')); + // TRANS: Link title for seeing all lists. + _('See all lists you have created.')); } } From 5d557a265629d6840270ea1942f1d99f557ffc29 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 19 Aug 2011 18:13:25 +0200 Subject: [PATCH 035/118] Add translator documentation. Whitespace updates. --- lib/moremenu.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/moremenu.php b/lib/moremenu.php index 14e221feb6..fa335b3c7b 100644 --- a/lib/moremenu.php +++ b/lib/moremenu.php @@ -4,7 +4,7 @@ * Copyright (C) 2011, StatusNet, Inc. * * A menu with a More... button to show more elements - * + * * PHP version 5 * * This program is free software: you can redistribute it and/or modify @@ -44,12 +44,11 @@ if (!defined('STATUSNET')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ - class MoreMenu extends Menu { const SOFT_MAX = 5; const HARD_MAX = 15; - + /** * Show a menu with a limited number of elements * @@ -57,7 +56,6 @@ class MoreMenu extends Menu * * @return */ - function show() { $items = $this->getItems(); @@ -72,7 +70,6 @@ class MoreMenu extends Menu } if (Event::handle('StartNav', array($this, &$tag, &$items))) { - $this->out->elementStart('ul', $attrs); $total = count($items); @@ -89,10 +86,10 @@ class MoreMenu extends Menu } if ($total > self::SOFT_MAX + 1) { - $this->out->elementStart('li', array('class' => 'more_link')); $this->out->element('a', array('href' => '#', 'onclick' => 'SN.U.showMoreMenuItems("'.$menuID.'"); return false;'), + // TRANS: Link description to show more items in a list. _('More ▼')); $this->out->elementEnd('li'); @@ -112,7 +109,7 @@ class MoreMenu extends Menu } } } - + $this->out->elementEnd('ul'); Event::handle('EndNav', array($this, $tag, $items)); @@ -123,5 +120,4 @@ class MoreMenu extends Menu { return null; } - } From 23e5f25d8d75950f16eecb1345ee42cb365cb222 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Fri, 19 Aug 2011 13:00:22 -0400 Subject: [PATCH 036/118] Couple quick improvements for neo-blue theme. --- theme/neo-blue/css/mp-screen.css | 1 - theme/neo-blue/logo.png | Bin 3893 -> 11512 bytes theme/neo-blue/mobilelogo.png | Bin 990 -> 3672 bytes 3 files changed, 1 deletion(-) diff --git a/theme/neo-blue/css/mp-screen.css b/theme/neo-blue/css/mp-screen.css index 87f8f298f8..998f307ccf 100644 --- a/theme/neo-blue/css/mp-screen.css +++ b/theme/neo-blue/css/mp-screen.css @@ -28,7 +28,6 @@ address { address img { float: left; - background: #fff; padding: 2px 2px 2px 6px; } diff --git a/theme/neo-blue/logo.png b/theme/neo-blue/logo.png index a3c1be35f54898c0383a69cf0ffdeb970a2654f0..3114a6c0597a54eab0be226c23b24f903a45c657 100644 GIT binary patch literal 11512 zcmd5C2{=|+`{1)i_9a_(pCun9LZnbcX>3JPO6$~AroZO@EAuzhv^Uc>)267VNGOFi zLRnHFNo9*l3zA5baR2vw<6igjS(~ZEp*1A~&y)*sx_k;ov$qD`3%DDNn!U>2#U_l=0}Ov@|ee<^959s`=~M zI^xXPOEV~fjsit6fI`BhR0787j#+eVmU%NTh296yxx~dMGswywKP7-pkECOpPL_{| ziq~AVb{lc?RzA_x^npQNQuc(1Jd;Rx`7OT_uz0N|+ibE3*>)g#*ooMA$thVx4$L|E ztXi{;81L*)0FJ16{f6rIeN!_Le=&vd@Lfj08fx^^58zZUB&J#&JaU?-cv4BUwY5<^ zp1-UnqGB%*p1#ZO@7xt8L+1fRK@{Nt3M|aT$!)H_{=FjkQeb$X|004fNFnI%g?c)mrye*Z7DfHP? z6*hsmxR^V9s7{~6eGqU=4AdmVhj>d#GC%g4DNcQ~{PO78ep9W!Tj*;&den$MJC__P zj>e7|iL5P5`=sqJfrYtAw@pQFI~4j1Tsm8Dwx9cQIvgaG?NA9A zxAn-03Uac4o{mlwq~iu!=AY)~AZ|Byv<2QUe0+R;wg;7n;52S&ZEef$leiCp#q*{k zE6eVaZ)l(mQZ(RIAITB?9N_DdeJLkA4t{=@5x9; zT8go$%AY((Q85?G@8sTZ;D^mN!blIfPjS#9+6jqu!M`238XvX>Bwe`I%oPk9V!Edb z$J@i1>axE69a>kUjWU947;1d-8+c?b6VOjfBJFWwK|`^#O8KT5%%uY9Tk1yd6? zC+OeQ{GpbXPblWxmD-rND-?gcz%O6b)YIDyraa5nU4X5pDIp-xxvAd1Z9rF&Gb>`_ zuGF`-wV~naDrky}y{5jN=Fl4%w~tNta$QaD>!ZKGP&l~Lz)Ycoxn+Q}0G=d#tnFzx zBn?niU5oPWKFCi^zm2psRFQ-I7!z$RbxImw!JwohC*(2BN%U&MQS?*DZt3!h$}^zC zDK5>;A5eN$?$gaX4%MYxJZ2iWdb78agViC&@zzq<p5&Q7b7k~#|wvm#!!my!zxGNo5 zXAnbWAjW%gYL;r@!%_x|l(cMO-goP~Nd7p7!!|!Cco)w(f{n$7hiI9@;`sp1o8*<5 zl{c@Zrqe*j9oIL!Bev{3w1=d@IjqNa>|oH-o4R`ZZ7VT;yo>+3%IB{rG&b1bJMORF zxYr!x$pn06r)TCgQ-mFb1xtQPCuzuh=kBo0FTvQSr|=VJyPcNKBiPXrYeQY_;W8sR zhTAOdd_+lxF{kz%0tvE;tbc9}9}@{GxJNc1y7@uhFY1xt3nJRv+rg`BXY@E+T^XsX zDX$4wv`(BvfT11=C!OaUfi!8y5`|ZSMZ(}#UN{n#lUs;}DJrZb>o|w?SbZ)&nGRx< zWuzrHswj8*Sm52GqT=#9!9mOJ&i}o9HlHc5<}t3hH;A_25w{l9C*XNW&eg zA#E)+jqpQTG*~Qwx`M(GR9sSlu4mjqjg3uWVFx!cXSm;8F$q1~CprxgqxLNqiB+)X za21MBPglbMq`)dzFrHF?BK(I71^0_lYim0)GSH=Z(tvTUUA<@|sK?ivLViGZ?>$5i zf91cr$~HTsMKczXy!G2J*|bEBs;%8a3Oxb`7GKi{_?b-IOf;PBw^6eFn& z>)ezKL_aDl5M#)EXvt1^#bmOce;qOC-s@N`CS3 zjgK&CY#R@EGMI!7 zaeBhWy}O$O9yE90bR4fTXM{d4aKB*u5Hzbxxt@K#xTG8h5qoVkWQZ8@@pLu=#Sjj* zlUlFDB$9{p2ZwO3C_X2#j%tnVCYj|9AD8GuIy-O=dDZuzd`{F;TmuPHf3bx zp|-ZZ1-Ac8cQnh-ea;vQPIs60D~x}zUE=i~Y+^mSoA_2$RdL~#orgtzJe-{-JCEy? z7w$}7S7U;ki@h4yUHy|)L!+}ZkCD2qCmuVz1$p`{GgMMk$TehZb5)>@wmKg~dxhw( zwjo;wX=|#Zxq}#<%S5|jAhG1={3^hrFYK+llbytD$@ zrpL|)iRe0)O%Q5`J$L2U%H?zC43cHPn=$Mh+$!eO-UpCT#wWP-def#j#KDGOci0pN z>uUV;E77zo1R95MjP;DwRfjQ}f&@b+k8Wqc$ciLH<$v3EECcF{1tRf-%^~h21L|A{ zq;4tZfe#9HV(1AkL>bFE@w=c97#den0U5-Og)%ZI{pDaS_adDIm*&^mWx z>6^J&1TOXWsjI8Uo({uZ&dknhwi|0+(@wOr`)Ttr$3WW-5Ij@?t9Pliv?Pb(?nZSEgUw*x04)gD?z<4FgEJ+`Y;{#hOwtdCa?psH)X#5mwh!L z!M2icxSM;tI&fYnsPvsA4Cev@oi?&icq=v=?BQt$lRk}*_$mA^093zBg7{X@^A}ZA z_yGq)hpQ<&jxf><<>T|20pGxIG9Yli4+M$9bWi75)4e8t)<$E2{i9-QGb-BIX{?&4 zhzRx|94}u@NB0VgxO#b_gN-P7g?d6Ao)Mmsca2ThTO9E0ES&3uloaI#+)iIl3wxCr zM-TpDGvLM@4K638qeXC?L?%3rmCNVYfJb*lR8*uHqUt8}&5tjD?>{I($!RyaO<;q$ zaYnFz2X9aYHtUDd$KUy;-MG!Y%CUm`K{JklyqrAqvbePD3EABj%}Ip;7tnv)$jsR| z!)r3tKOA%{NSpzl$=1{U)cF2Ag6~3p)7_AQoD4@$h=sCm6Dor&tbqvdr zkDpHxyemrYV%uzrtG!9)tvm^k8a)SbD9+srwl?M#a6NKM0Tv&tCLG>SRN!uMuE?Tq zD*TOQkDq-MA0oCmHzTGPew!Hqe=uCYi-Hqe4vWCU@$+%(-cbkSb?sX;d*(Fz%^}=? zc#m}d1cFo;8~(eZ?&j@$@2cw8XB6aRx!;W?Dy%tv4E<+L{!IRCE|bHg#++xo_PCUC0z zn{c!{BP*wH`){Gx@c*jmr{LYsqGB$UHZ(N$dmQk;7pkp$i|Ge_D)_;sSOa%p=wnOY zQt!pfYIGnpvMBrZJ%0#U6!&YS9mfZZ=B<{aJ1<6YTUg$w_wE;;>BKBynO;!7-gx~Z~1TiHT1#N z9bWQc8W*3$r6qAKuvv>sE4Wn%Hu|nw%k%=_6xE&#+n!C*)AK$1|6~}^cpK6;Lw>;{ zv?MTuYSP}`hTeb#>@C40=RbQs*#Yj-L?0BDS;CkiG~oV^#bR;$g1f;@!otF#@b^VI zozLC;hrhyK9?{u%@^_e;7`%b!3fN8NL#C9Cqzae8oUAtY|*6^GoI^UkkMWyAa z`NIc9_crm>7mT-ClWNc)xp%Qs|5w8Cs`4k5WR;u4dSx`c^BFBIC8<_YR*?zPAE~P< zqfsM`(5FwIPPx@?@2^KRA}DKT6t7c*Vf-?L9U+QHV^ zIx~rP1!PbhaJIIuPyCjx-}hOy&#F8{t2k9()#3z-h|CaX2!xR2p6`!(`7W2lK7m&E zT6eAF+Nq(bbBox>SR~ zm`hQl@|7_WcSAHjGI&bbw&$?3R;z7h|8L3KkT7q~#8mcwLu0EYct|wG?^j>>D}EX| z2q7pgsWRl8zB**h8oIclDj#EvyWbVwFKc^g-1Hv$Z{NBp4WP+47{q}C9Y1o&+T{f+UYJ&cZJ|- z=h1DPtj(FLrp1g-cXo0hSOc>}k|g-3+=M4A}9Ci#fqxBOoq?cM;a9Dw*(;s z>~IRXjNG_k-N(yU#C{3SA^G{ZADJ?7#B_=x0U-no!vI1E001z?5Ekm^6c*|?rJ<=c z=ECJ$hX7zsU*u2}>81%(DI{V$#M*`=iI+zYAM~?AE+e=$!x%%T#@8WK`P!Jwo!hgv_8Vk0P0Q5&Ua?M&_J~C` z-{r7v2q7?=E%5EZ(^Cxw;|Yo)DQkVKxh?L)B`*(GnmrM?{J}v!ijm}>rGJ<={Pvl&!5ZC*4BZ~ zUd+#_t!w%QFgA%q!a-pneoKA5m5T3==1q!^PdrW2G=k(R{l~wf{IT{E6pp{)Te_!{}LV=)%@i4|95K!Rf?Vb$)-HY_~e;uC# z7@OEoQRyaMG%aRS4Ex?}wm{ycn>QbnR4yS9k^ulP7`Iw1O!+`8u*%c*E0QF7?EdQ7 z26NuUo4Z=|9mfHHQOITQ4|_rLI>RtH_uTcF35lz3aK|vdL&^|BuUqp12q6k%oGZ$< zl-U9pK@iYk=!EO}Ma5+mx&stNxGC2mk;-=KQ?-lSN;A!g;mua^8=6O`x}wtDDlzc@WDG z9OV5s{^@n(*oF62tc=TMd6q6)xiKRn?bhrW(I;3;5Cj1#50`+oDJkLc35ln;`s~`V zWj22kbQroC_tybH?0?ejc1P~zTcb17H z5>ZrdeSqSJImn9rDF$OhYg;>(IY<$UTpyL2@a?&i_P;l8^8N=8E8Ck}+FQ#jb*F1| zjR{FfYX-#iP$cOc=M_QEogD3n-zMikxGJ1x0l<#uA?R;xZo7^U8p_>} z!-ocYMn(i*eD}>sP*$PqsL?f5S5(yst~H2IB&;Sk%2Sep@&UB9RaR1H2?bYLyxQRu~M%6`t;je^k{p ze5TcEJD#Q9BuUCivfE(*!!QsS;3W=Ht0w#>35LB?j6_0#f1k5UtyZhQS5&sVy0+15 zD|_L#MMs5)zC1eo8coyva!dZc9?4u#n@koctI+LgZqXN*&6aMt;bCfLiP$dcc{s^d zCneP$KXqjv002P{-5D&uUWG9RJ3ArFni2h;r@Lb3v)3GB;H|5*63CM>M1mkh{i>72 z#w8p*cJk-fe*X8}a^i8uZ>!`001y=5jiUG6N4R>)-m9!j~w%fqF|Rf1S7 z0#_HOJ{K9?-Q-)PlK-z_0{~Q3)z@#_uWmIBZc_R?tgDzOXZ{%05rCX=Pz+IWeHNml^i3b*ZF z$Nr~gScFE&m1!>(j|Ko1WCo1!IctEz7>f}?^#i@g9R_2L*=)fWW5muqz|X^%rfJGn zazfLzy;iH$4}|>gxN1w*hJ>umnJcU@wY0VWV5`dhw3LyaHg!<2uM_tgiJdt2;lCUH zVn|$nCtFsb>*CIXAQ0^RW_J!(x2O?eukq(v-`Mg`UVU!ox{S2xRx{A1wh}9WclU-A z?lqT-vMu9;d(FKbQMP5IaIg9NK!YqPX-#=WRb5k$Lam1j6{PmET4qU3)~X{0tFP_e zx#g#?7K*zTV22+|2ORal>M6UOU~zFbqf~ zcBI@{MsVlZX*A*H7X5a1jQ#t*I{)e`kz*R0T0agA-d|d)Yr4|V)S4}zNN;zg;@#0B z!bbAv(b&{_ zrlU_QEF~q`Bf!sd2tg3t;~6@QP*_x6k1@7z10#t>09;+12p5H;KLGe6gy!;X z#3ls|jjhb8*!b_BHOM~wY{}=tB91Rm`+G{*14BSj5Ekm^GZ>ECf4yh>e}C}NXMgRpyNsC-d6>OxY6OJ()h>eI&_&# zaPDG$;RhcsngsxmwJCE|^h@C{aa}v#PS%3>6S-HCo|nux_uTd9M`blezFoQcv%lH3 zHgp;>!(d~-VzRRr@>kxv`>>I3G+Tl5iBnh3y)ozQK~@uG0tuy3yB-lOK_J27KvL-G z?lRNfUfknrkCM{r9P1eoQ+cQGQ8TyALn#-yxi}?r#ujpQ6$mIG$tTxyR<4Ts_MbVI z=U%vc>j75}F6au2%Jhehp3lm^UHn4#>D}I$ef-qbf3N_3Qhf;kps88U{O^&oUpF?j z^|{o85JCh=^w5nU2xO~B!Jh|#5YaPHS$*x)PuIr(a^qf&wXa$DWvjdQN?Q;Acwxy$ z3m3m_eZ2`GA2$?9_Od^kP-`Cy4)y1jDePU^Ot+C*K>GiS- zT~cRfm(9SmO>a2(-S=k%1VW<6orSG!?QA?kl~vU4I`I7&H6X-1t`C}T%vzFBB4c(XW^^Gli4jlTa1u*Uc0AMg?Iy#Jbzqfd?vGE6Knm(C- zr&y_wJ1(}D+J)NLiCpR%n$Na(7%#QA8-CJiwe|c$EKSoN9Q+|q>*ngTM(yu8JvhkQ zRczPOruU00ItuQU=2q7UZV9?Sv+SiT)P(%;Lf0@qt3v|$qteNgFE*gF`PYj zm0`{L9cTIYctVezyzusuGx&Hq zFo*~Xg5|z_|G}{T;0cC#i`FrG{`^&O_m+7N;F>^=2XQnEy;S2TlD@Zsa< z|I_EJ_@7%YM@tPV+3=-m^Fg0NM!lfHP#~&$OxwwA~ zOk&$kuauAgH;tD1f)bb*5-kOE;6jiEI6xRs9H-+yeg49*V9C146~$?JF#WDRN!>Fh zHIyhR%EE*g_;`63^mR4Bd~i_z`}dFG|Nnn*1t5mJoD_qctW;%EdNmJB0$8%l!QpTQ zprilcayT?L{=m$^MuSQ*NpUey(Fg~?lBIORmc4L3Is=?+E?>FD@aNAz25n7MxV(bA zG(%Nsx)Crby=iMIWVmqYI>U)m7a3Nq+s<(9>{brALMkypA^+y>dkoWnr3{7`OaL76 z+jk!RdGpr2o4fE^D^{I8$Cc-?mN_<4rEe^HYUHaEosE0WkK{{#y&eFJRr^b!L*9%R|Zt^0Od zy?)1b?S`GN-oE{S*M3%3R$$5F$k5(ch*ur0CE=A6Ff+c&$=LP^XrZ`^Pm-#TApd1u zZ8Zi%eGLY6RV7AX9$*6%rLauN!^6eUJz?$vpn8-s1nK~{yz@fdV2&WoaNx(80IKzJU_~nuw zw8|yM!k<5XF&sU9_Ufjs`#>3dzyP?Yy!YU7*_!n`L5+Qa4*3r39005AJ3tS_&zsS9 zouCF16u^=Lv0A_(f8pZwzW@LJuQ_?m-k8Mke`+xrg4h(w5>nj1@XtwXOeG0fSs>WoQrmkN!l~$6|(@f zMBxj-Ym&yp!DY@x;6d3fz(cHD49q9M4Qz_QB`w(tV`O+Ia4;&Vg@~`SJ)J0yX|gny zocINpWR*mV5}hd9jEu*C?#=Sn1VB9;ek{(DX#Zw=KY!2(DYMn~Gm;i;KRoPrd#Qzg zrp9iPw7u+X&|kOx*>#5(ejmj|$jUj}$AA;S&9?UenF1=_U00{dzRA1_CndH zq{kc0_J3_9)+Nz~Uw>LDdw243`{G^yyVLlJyd^VC-D{l0000 Date: Fri, 19 Aug 2011 15:43:56 -0400 Subject: [PATCH 037/118] Reinstate labels for oauth application info. --- actions/showapplication.php | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/actions/showapplication.php b/actions/showapplication.php index f41c57643e..a40e3d9905 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -251,21 +251,19 @@ class ShowApplicationAction extends Action $this->elementStart('div', 'entity_data'); // TRANS: Header on the OAuth application page. $this->element('h2', null, _('Application info')); - $this->element('div', - 'entity_consumer_key', - $consumer->consumer_key); - $this->element('div', - 'entity_consumer_secret', - $consumer->consumer_secret); - - $this->element('div', - 'entity_request_token_url', - common_local_url('ApiOauthRequestToken')); - - $this->element('div', 'entity_access_token_url', common_local_url('ApiOauthAccessToken')); - - $this->element('div', 'entity_authorize_url', common_local_url('ApiOauthAuthorize')); + $this->elementStart('dl'); + $this->element('dt', null, _('Consumer key')); + $this->element('dd', null, $consumer->consumer_key); + $this->element('dt', null, _('Consumer secret')); + $this->element('dd', null, $consumer->consumer_secret); + $this->element('dt', null, _('Request token URL')); + $this->element('dd', null, common_local_url('ApiOauthRequestToken')); + $this->element('dt', null, _('Access token URL')); + $this->element('dd', null, common_local_url('ApiOauthAccessToken')); + $this->element('dt', null, _('Authorize URL')); + $this->element('dd', null, common_local_url('ApiOauthAuthorize')); + $this->elementEnd('dl'); $this->element('p', 'note', // TRANS: Note on the OAuth application page about signature support. From 20f25912d4e110c65d61bcc70b4a85f52b96721b Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Fri, 19 Aug 2011 15:45:17 -0400 Subject: [PATCH 038/118] A little style fixup for oauth applications. --- theme/base/css/display.css | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 6b01c07393..5ec6d81f7a 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -2139,6 +2139,29 @@ max-height:96px; margin-right:18px; float:left; } + +.oauth-desktop-mode #wrap { + min-width: 500px; +} + +.oauth-desktop-mode #content { + width: 480px; + padding: 6px; + margin: 4px 0px 0px 4px; + border-top-left-radius: 7px; + -moz-border-radius-topleft: 7px; + -webkit-border-top-left-radius: 7px; +} + +.oauth-desktop-mode fieldset { + margin-bottom: 10px !important; +} + +#oauth_pin { + text-align: center; + font-size: 3em; +} + #showapplication .entity_profile { width:68%; } @@ -2156,16 +2179,10 @@ margin-bottom:18px; #showapplication .entity_data h2 { display:none; } -#showapplication .entity_data dl { -margin-bottom:18px; -} -#showapplication .entity_data dt { -font-weight:bold; -} #showapplication .entity_data dd { -margin-left:1.795%; font-family:monospace; font-size:1.3em; + margin-bottom: 10px; } .form_data #application_types label.radio, .form_data #default_access_types label.radio { From 1fa689e9133ab105ab33e054aeeadacfb3efef2d Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 20 Aug 2011 20:30:37 +0200 Subject: [PATCH 039/118] tag -> list --- plugins/OStatus/OStatusPlugin.php | 10 +++++----- plugins/OStatus/actions/ostatusinit.php | 2 +- plugins/OStatus/actions/ostatustag.php | 12 ++++++------ plugins/OStatus/actions/usersalmon.php | 12 ++++++------ plugins/OStatus/lib/salmonaction.php | 4 ++-- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 36259b8abb..1c99db8700 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -293,7 +293,7 @@ class OStatusPlugin extends Plugin $action->elementStart('fieldset'); // TRANS: Fieldset legend. - $action->element('legend', null, _m('Tag remote profile')); + $action->element('legend', null, _m('List remote profile')); $action->hidden('token', common_session_token()); $user = common_current_user(); @@ -883,7 +883,7 @@ class OStatusPlugin extends Plugin // TRANS: Title for following a remote list. $act->title = _m('TITLE','Follow list'); // TRANS: Success message for remote list follow through OStatus. - // TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. + // TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. $act->content = sprintf(_m('%1$s is now following people listed in %2$s by %3$s.'), $sub->getBestName(), $oprofile->getBestName(), @@ -933,7 +933,7 @@ class OStatusPlugin extends Plugin // TRANS: Title for unfollowing a remote list. $act->title = _m('Unfollow list'); // TRANS: Success message for remote list unfollow through OStatus. - // TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. + // TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. $act->content = sprintf(_m('%1$s stopped following the list %2$s by %3$s.'), $sub->getBestName(), $oprofile->getBestName(), @@ -1284,8 +1284,8 @@ class OStatusPlugin extends Plugin array('nickname' => $profileUser->nickname)); $output->element('a', array('href' => $url, 'class' => 'entity_remote_tag'), - // TRANS: Link text for a user to tag an OStatus user. - _m('Tag')); + // TRANS: Link text for a user to list an OStatus user. + _m('List')); $output->elementEnd('li'); } } diff --git a/plugins/OStatus/actions/ostatusinit.php b/plugins/OStatus/actions/ostatusinit.php index cba5ff57fc..dc3922896c 100644 --- a/plugins/OStatus/actions/ostatusinit.php +++ b/plugins/OStatus/actions/ostatusinit.php @@ -104,7 +104,7 @@ class OStatusInitAction extends Action // TRANS: Button text to join a group. $submit = _m('BUTTON','Join'); } else if ($this->peopletag && $this->tagger) { - // TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. + // TRANS: Form legend. %1$s is a list, %2$s is a lister's name. $header = sprintf(_m('Subscribe to list %1$s by %2$s'), $this->peopletag, $this->tagger); // TRANS: Button text to subscribe to a list. $submit = _m('BUTTON','Subscribe'); diff --git a/plugins/OStatus/actions/ostatustag.php b/plugins/OStatus/actions/ostatustag.php index 1df74d9079..b94dec12eb 100644 --- a/plugins/OStatus/actions/ostatustag.php +++ b/plugins/OStatus/actions/ostatustag.php @@ -36,8 +36,8 @@ class OStatusTagAction extends OStatusInitAction parent::prepare($args); if (common_logged_in()) { - // TRANS: Client error displayed when trying to tag a local object as if it is remote. - $this->clientError(_m('You can use the local tagging!')); + // TRANS: Client error displayed when trying to list a local object as if it is remote. + $this->clientError(_m('You can use the local list functionality!')); return false; } @@ -51,9 +51,9 @@ class OStatusTagAction extends OStatusInitAction function showContent() { - // TRANS: Header for tagging a remote object. %s is a remote object's name. - $header = sprintf(_m('Tag %s'), $this->nickname); - // TRANS: Button text to tag a remote object. + // TRANS: Header for listing a remote object. %s is a remote object's name. + $header = sprintf(_m('List %s'), $this->nickname); + // TRANS: Button text to list a remote object. $submit = _m('BUTTON','Go'); $this->elementStart('form', array('id' => 'form_ostatus_connect', 'method' => 'post', @@ -68,7 +68,7 @@ class OStatusTagAction extends OStatusInitAction // TRANS: Field label. $this->input('nickname', _m('User nickname'), $this->nickname, // TRANS: Field title. - _m('Nickname of the user you want to tag.')); + _m('Nickname of the user you want to list.')); $this->elementEnd('li'); $this->elementStart('li', array('id' => 'ostatus_profile')); // TRANS: Field label. diff --git a/plugins/OStatus/actions/usersalmon.php b/plugins/OStatus/actions/usersalmon.php index 483de9e507..bc91b31559 100644 --- a/plugins/OStatus/actions/usersalmon.php +++ b/plugins/OStatus/actions/usersalmon.php @@ -201,12 +201,12 @@ class UsersalmonAction extends SalmonAction if (empty($tagged)) { // TRANS: Client exception. - throw new ClientException(_m('Unidentified profile being tagged.')); + throw new ClientException(_m('Unidentified profile being listed.')); } if ($tagged->id !== $this->user->id) { // TRANS: Client exception. - throw new ClientException(_m('This user is not the one being tagged.')); + throw new ClientException(_m('This user is not the one being listed.')); } // save the list @@ -217,7 +217,7 @@ class UsersalmonAction extends SalmonAction $result = Profile_tag::setTag($ptag->tagger, $tagged->id, $ptag->tag); if (!$result) { // TRANS: Client exception. - throw new ClientException(_m('The tag could not be saved.')); + throw new ClientException(_m('The listing could not be saved.')); } } } @@ -235,12 +235,12 @@ class UsersalmonAction extends SalmonAction if (empty($tagged)) { // TRANS: Client exception. - throw new ClientException(_m('Unidentified profile being untagged.')); + throw new ClientException(_m('Unidentified profile being unlisted.')); } if ($tagged->id !== $this->user->id) { // TRANS: Client exception. - throw new ClientException(_m('This user is not the one being untagged.')); + throw new ClientException(_m('This user is not the one being unlisted.')); } // save the list @@ -252,7 +252,7 @@ class UsersalmonAction extends SalmonAction if (!$result) { // TRANS: Client exception. - throw new ClientException(_m('The tag could not be deleted.')); + throw new ClientException(_m('The listing could not be deleted.')); } } } diff --git a/plugins/OStatus/lib/salmonaction.php b/plugins/OStatus/lib/salmonaction.php index 327dd791e3..7cb4ac2fce 100644 --- a/plugins/OStatus/lib/salmonaction.php +++ b/plugins/OStatus/lib/salmonaction.php @@ -181,13 +181,13 @@ class SalmonAction extends Action function handleTag() { // TRANS: Client exception. - throw new ClientException(_m('This target does not understand tag events.')); + throw new ClientException(_m('This target does not understand list events.')); } function handleUntag() { // TRANS: Client exception. - throw new ClientException(_m('This target does not understand untag events.')); + throw new ClientException(_m('This target does not understand unlist events.')); } /** From ab8c166d49433c445d1de186c8e876c41583e927 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 20 Aug 2011 20:33:16 +0200 Subject: [PATCH 040/118] Add translator documentation. --- actions/showapplication.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actions/showapplication.php b/actions/showapplication.php index a40e3d9905..adfd17a06c 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -253,14 +253,19 @@ class ShowApplicationAction extends Action $this->element('h2', null, _('Application info')); $this->elementStart('dl'); + // TRANS: Field label on application page. $this->element('dt', null, _('Consumer key')); $this->element('dd', null, $consumer->consumer_key); + // TRANS: Field label on application page. $this->element('dt', null, _('Consumer secret')); $this->element('dd', null, $consumer->consumer_secret); + // TRANS: Field label on application page. $this->element('dt', null, _('Request token URL')); $this->element('dd', null, common_local_url('ApiOauthRequestToken')); + // TRANS: Field label on application page. $this->element('dt', null, _('Access token URL')); $this->element('dd', null, common_local_url('ApiOauthAccessToken')); + // TRANS: Field label on application page. $this->element('dt', null, _('Authorize URL')); $this->element('dd', null, common_local_url('ApiOauthAuthorize')); $this->elementEnd('dl'); From ed13c9a09840f4ed13473eaa4804cb9b192ba7b1 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sat, 20 Aug 2011 21:30:04 +0200 Subject: [PATCH 041/118] Localisation updates from http://translatewiki.net. --- locale/ar/LC_MESSAGES/statusnet.po | 193 +++++++++----- locale/be-tarask/LC_MESSAGES/statusnet.po | 202 +++++++++----- locale/bg/LC_MESSAGES/statusnet.po | 148 ++++++++--- locale/br/LC_MESSAGES/statusnet.po | 147 ++++++++--- locale/ca/LC_MESSAGES/statusnet.po | 157 +++++++---- locale/cs/LC_MESSAGES/statusnet.po | 142 +++++++--- locale/de/LC_MESSAGES/statusnet.po | 154 +++++++---- locale/en_GB/LC_MESSAGES/statusnet.po | 142 +++++++--- locale/eo/LC_MESSAGES/statusnet.po | 150 ++++++++--- locale/es/LC_MESSAGES/statusnet.po | 158 +++++++---- locale/eu/LC_MESSAGES/statusnet.po | 157 +++++++---- locale/fa/LC_MESSAGES/statusnet.po | 146 +++++++--- locale/fi/LC_MESSAGES/statusnet.po | 153 +++++++---- locale/fr/LC_MESSAGES/statusnet.po | 155 +++++++---- locale/fur/LC_MESSAGES/statusnet.po | 144 +++++++--- locale/gl/LC_MESSAGES/statusnet.po | 146 +++++++--- locale/he/LC_MESSAGES/statusnet.po | 144 +++++++--- locale/hsb/LC_MESSAGES/statusnet.po | 147 ++++++++--- locale/hu/LC_MESSAGES/statusnet.po | 148 ++++++++--- locale/ia/LC_MESSAGES/statusnet.po | 188 ++++++++----- locale/it/LC_MESSAGES/statusnet.po | 150 ++++++++--- locale/ja/LC_MESSAGES/statusnet.po | 249 ++++++++++++------ locale/ka/LC_MESSAGES/statusnet.po | 142 +++++++--- locale/ko/LC_MESSAGES/statusnet.po | 154 +++++++---- locale/mk/LC_MESSAGES/statusnet.po | 180 ++++++++----- locale/ml/LC_MESSAGES/statusnet.po | 144 +++++++--- locale/nb/LC_MESSAGES/statusnet.po | 154 +++++++---- locale/nl/LC_MESSAGES/statusnet.po | 176 +++++++++---- locale/pl/LC_MESSAGES/statusnet.po | 148 ++++++++--- locale/pt/LC_MESSAGES/statusnet.po | 150 ++++++++--- locale/pt_BR/LC_MESSAGES/statusnet.po | 157 +++++++---- locale/ru/LC_MESSAGES/statusnet.po | 156 +++++++---- locale/statusnet.pot | 139 +++++++--- locale/sv/LC_MESSAGES/statusnet.po | 156 +++++++---- locale/te/LC_MESSAGES/statusnet.po | 147 ++++++++--- locale/tl/LC_MESSAGES/statusnet.po | 157 +++++++---- locale/uk/LC_MESSAGES/statusnet.po | 157 +++++++---- locale/zh_CN/LC_MESSAGES/statusnet.po | 155 +++++++---- plugins/APC/locale/APC.pot | 2 +- .../AccountManager/locale/AccountManager.pot | 2 +- plugins/Adsense/locale/Adsense.pot | 2 +- plugins/Aim/locale/Aim.pot | 2 +- .../AnonymousFave/locale/AnonymousFave.pot | 2 +- .../locale/ar/LC_MESSAGES/AnonymousFave.po | 86 ++++++ plugins/ApiLogger/locale/ApiLogger.pot | 2 +- plugins/AutoSandbox/locale/AutoSandbox.pot | 2 +- plugins/Autocomplete/locale/Autocomplete.pot | 2 +- .../locale/ar/LC_MESSAGES/Autocomplete.po | 32 +++ plugins/Awesomeness/locale/Awesomeness.pot | 2 +- plugins/BitlyUrl/locale/BitlyUrl.pot | 2 +- .../locale/nb/LC_MESSAGES/BitlyUrl.po | 19 +- plugins/Blacklist/locale/Blacklist.pot | 2 +- plugins/BlankAd/locale/BlankAd.pot | 2 +- plugins/Blog/locale/Blog.pot | 41 +-- plugins/Blog/locale/ca/LC_MESSAGES/Blog.po | 23 +- plugins/Blog/locale/de/LC_MESSAGES/Blog.po | 22 +- plugins/Blog/locale/ia/LC_MESSAGES/Blog.po | 23 +- plugins/Blog/locale/mk/LC_MESSAGES/Blog.po | 23 +- plugins/Blog/locale/nl/LC_MESSAGES/Blog.po | 23 +- plugins/BlogspamNet/locale/BlogspamNet.pot | 2 +- plugins/Bookmark/locale/Bookmark.pot | 2 +- plugins/CacheLog/locale/CacheLog.pot | 2 +- .../locale/CasAuthentication.pot | 2 +- .../locale/ClientSideShorten.pot | 2 +- .../nb/LC_MESSAGES/ClientSideShorten.po | 9 +- plugins/Comet/locale/Comet.pot | 2 +- .../locale/DirectionDetector.pot | 2 +- plugins/Directory/locale/Directory.pot | 2 +- plugins/DiskCache/locale/DiskCache.pot | 2 +- plugins/Disqus/locale/Disqus.pot | 2 +- .../locale/DomainStatusNetwork.pot | 2 +- .../nb/LC_MESSAGES/DomainStatusNetwork.po | 27 ++ .../locale/DomainWhitelist.pot | 2 +- plugins/Echo/locale/Echo.pot | 2 +- .../locale/EmailAuthentication.pot | 2 +- .../locale/EmailRegistration.pot | 2 +- .../EmailReminder/locale/EmailReminder.pot | 2 +- plugins/EmailSummary/locale/EmailSummary.pot | 2 +- plugins/Event/locale/Event.pot | 35 ++- plugins/Event/locale/ar/LC_MESSAGES/Event.po | 40 ++- plugins/Event/locale/br/LC_MESSAGES/Event.po | 36 ++- plugins/Event/locale/de/LC_MESSAGES/Event.po | 36 ++- plugins/Event/locale/fr/LC_MESSAGES/Event.po | 36 ++- plugins/Event/locale/ia/LC_MESSAGES/Event.po | 49 ++-- plugins/Event/locale/mk/LC_MESSAGES/Event.po | 49 ++-- plugins/Event/locale/ms/LC_MESSAGES/Event.po | 35 ++- plugins/Event/locale/nl/LC_MESSAGES/Event.po | 49 ++-- plugins/Event/locale/pt/LC_MESSAGES/Event.po | 36 ++- plugins/Event/locale/tl/LC_MESSAGES/Event.po | 36 ++- plugins/Event/locale/uk/LC_MESSAGES/Event.po | 37 ++- .../locale/ExtendedProfile.pot | 2 +- .../FacebookBridge/locale/FacebookBridge.pot | 2 +- plugins/FirePHP/locale/FirePHP.pot | 2 +- .../FollowEveryone/locale/FollowEveryone.pot | 2 +- plugins/ForceGroup/locale/ForceGroup.pot | 2 +- plugins/GeoURL/locale/GeoURL.pot | 2 +- plugins/Geonames/locale/Geonames.pot | 2 +- .../locale/GoogleAnalytics.pot | 2 +- plugins/Gravatar/locale/Gravatar.pot | 2 +- .../GroupFavorited/locale/GroupFavorited.pot | 2 +- .../locale/GroupPrivateMessage.pot | 2 +- .../ar/LC_MESSAGES/GroupPrivateMessage.po | 18 +- plugins/Imap/locale/Imap.pot | 2 +- plugins/Imap/locale/nb/LC_MESSAGES/Imap.po | 9 +- .../InProcessCache/locale/InProcessCache.pot | 2 +- .../InfiniteScroll/locale/InfiniteScroll.pot | 2 +- plugins/Irc/locale/Irc.pot | 2 +- .../locale/LdapAuthentication.pot | 2 +- .../locale/LdapAuthorization.pot | 2 +- plugins/LdapCommon/locale/LdapCommon.pot | 2 +- plugins/LilUrl/locale/LilUrl.pot | 2 +- plugins/LinkPreview/locale/LinkPreview.pot | 2 +- plugins/Linkback/locale/Linkback.pot | 2 +- plugins/LogFilter/locale/LogFilter.pot | 2 +- plugins/Mapstraction/locale/Mapstraction.pot | 2 +- .../locale/nb/LC_MESSAGES/Mapstraction.po | 10 +- plugins/Memcache/locale/Memcache.pot | 2 +- plugins/Memcached/locale/Memcached.pot | 2 +- plugins/Meteor/locale/Meteor.pot | 2 +- .../Meteor/locale/fr/LC_MESSAGES/Meteor.po | 11 +- .../Meteor/locale/nb/LC_MESSAGES/Meteor.po | 22 +- plugins/Minify/locale/Minify.pot | 2 +- .../MobileProfile/locale/MobileProfile.pot | 2 +- plugins/ModHelper/locale/ModHelper.pot | 2 +- plugins/ModPlus/locale/ModPlus.pot | 2 +- plugins/Mollom/locale/Mollom.pot | 2 +- plugins/Msn/locale/Msn.pot | 2 +- plugins/NoticeTitle/locale/NoticeTitle.pot | 2 +- plugins/OMB/locale/OMB.pot | 16 +- plugins/OMB/locale/ia/LC_MESSAGES/OMB.po | 59 +++++ plugins/OMB/locale/mk/LC_MESSAGES/OMB.po | 61 +++++ plugins/OMB/locale/nl/LC_MESSAGES/OMB.po | 14 +- plugins/OStatus/locale/OStatus.pot | 110 ++++---- .../OStatus/locale/de/LC_MESSAGES/OStatus.po | 66 +++-- .../OStatus/locale/fr/LC_MESSAGES/OStatus.po | 56 ++-- .../OStatus/locale/ia/LC_MESSAGES/OStatus.po | 85 +++--- .../OStatus/locale/ko/LC_MESSAGES/OStatus.po | 71 +++-- .../OStatus/locale/mk/LC_MESSAGES/OStatus.po | 85 +++--- .../OStatus/locale/nl/LC_MESSAGES/OStatus.po | 83 ++++-- .../OStatus/locale/tl/LC_MESSAGES/OStatus.po | 81 ++++-- .../OStatus/locale/uk/LC_MESSAGES/OStatus.po | 81 ++++-- .../locale/OpenExternalLinkTarget.pot | 2 +- plugins/OpenID/locale/OpenID.pot | 2 +- .../OpenID/locale/fr/LC_MESSAGES/OpenID.po | 13 +- plugins/OpenX/locale/OpenX.pot | 2 +- plugins/Orbited/locale/Orbited.pot | 2 +- .../PiwikAnalytics/locale/PiwikAnalytics.pot | 2 +- plugins/Poll/locale/Poll.pot | 2 +- plugins/PostDebug/locale/PostDebug.pot | 2 +- .../locale/PoweredByStatusNet.pot | 2 +- plugins/PtitUrl/locale/PtitUrl.pot | 2 +- plugins/QnA/locale/QnA.pot | 2 +- plugins/RSSCloud/locale/RSSCloud.pot | 2 +- .../locale/de/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/fr/LC_MESSAGES/RSSCloud.po | 14 +- .../locale/ia/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/mk/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/nl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/tl/LC_MESSAGES/RSSCloud.po | 8 +- .../locale/uk/LC_MESSAGES/RSSCloud.po | 8 +- plugins/Realtime/locale/Realtime.pot | 21 +- .../locale/af/LC_MESSAGES/Realtime.po | 9 +- .../locale/ar/LC_MESSAGES/Realtime.po | 9 +- .../locale/br/LC_MESSAGES/Realtime.po | 9 +- .../locale/ca/LC_MESSAGES/Realtime.po | 9 +- .../locale/de/LC_MESSAGES/Realtime.po | 9 +- .../locale/fr/LC_MESSAGES/Realtime.po | 9 +- .../locale/ia/LC_MESSAGES/Realtime.po | 9 +- .../locale/lv/LC_MESSAGES/Realtime.po | 9 +- .../locale/mk/LC_MESSAGES/Realtime.po | 9 +- .../locale/ne/LC_MESSAGES/Realtime.po | 9 +- .../locale/nl/LC_MESSAGES/Realtime.po | 9 +- .../locale/sv/LC_MESSAGES/Realtime.po | 9 +- .../locale/tl/LC_MESSAGES/Realtime.po | 9 +- .../locale/tr/LC_MESSAGES/Realtime.po | 9 +- .../locale/uk/LC_MESSAGES/Realtime.po | 9 +- plugins/Recaptcha/locale/Recaptcha.pot | 2 +- .../locale/RegisterThrottle.pot | 2 +- .../locale/RequireValidatedEmail.pot | 2 +- .../locale/ReverseUsernameAuthentication.pot | 2 +- plugins/SQLProfile/locale/SQLProfile.pot | 2 +- plugins/SQLStats/locale/SQLStats.pot | 2 +- plugins/Sample/locale/Sample.pot | 2 +- .../Sample/locale/nl/LC_MESSAGES/Sample.po | 10 +- plugins/SearchSub/locale/SearchSub.pot | 2 +- plugins/ShareNotice/locale/ShareNotice.pot | 2 +- plugins/SimpleUrl/locale/SimpleUrl.pot | 2 +- plugins/Sitemap/locale/Sitemap.pot | 2 +- .../locale/SlicedFavorites.pot | 2 +- plugins/SphinxSearch/locale/SphinxSearch.pot | 2 +- plugins/Spotify/locale/Spotify.pot | 2 +- .../locale/StrictTransportSecurity.pot | 2 +- plugins/SubMirror/locale/SubMirror.pot | 2 +- .../locale/SubscriptionThrottle.pot | 2 +- plugins/TabFocus/locale/TabFocus.pot | 2 +- plugins/TagSub/locale/TagSub.pot | 2 +- plugins/TightUrl/locale/TightUrl.pot | 2 +- plugins/TinyMCE/locale/TinyMCE.pot | 2 +- .../TwitterBridge/locale/TwitterBridge.pot | 2 +- plugins/UserFlag/locale/UserFlag.pot | 2 +- plugins/UserLimit/locale/UserLimit.pot | 2 +- plugins/WikiHashtags/locale/WikiHashtags.pot | 2 +- .../WikiHowProfile/locale/WikiHowProfile.pot | 2 +- plugins/XCache/locale/XCache.pot | 2 +- plugins/Xmpp/locale/Xmpp.pot | 2 +- plugins/YammerImport/locale/YammerImport.pot | 2 +- 206 files changed, 5653 insertions(+), 2524 deletions(-) create mode 100644 plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po create mode 100644 plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po create mode 100644 plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po create mode 100644 plugins/OMB/locale/ia/LC_MESSAGES/OMB.po create mode 100644 plugins/OMB/locale/mk/LC_MESSAGES/OMB.po diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index f5c74009c3..11e89a1997 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -15,19 +15,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:37+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:16+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -71,7 +71,7 @@ msgstr "تسجيل" #. TRANS: Checkbox instructions for admin setting "Private". msgid "Prohibit anonymous users (not logged in) from viewing site?" -msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" +msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من مشاهدة الموقع؟" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #. TRANS: Checkbox label to show private tags. @@ -96,11 +96,12 @@ msgstr "عطّل التسجيل الجديد." msgid "Closed" msgstr "مُغلق" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "حفظ إعدادت الوصول" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -429,16 +430,19 @@ msgstr "فشل منع المستخدم." msgid "Unblock user failed." msgstr "فشل إلغاء منع المستخدم." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "محادثة" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "محادثة" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "محادثة" @@ -1717,6 +1721,10 @@ msgstr "أكد العنوان" msgid "The address \"%s\" has been confirmed for your account." msgstr "لقد تم التأكد من عنوان حسابك \"%s\"." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "محادثة" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1787,7 +1795,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "أدخل \"%s\" لتأكيد رغبتك في حذف حسابك." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "احذف حسابك إلى الأبد" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -1932,7 +1941,7 @@ msgstr "احذف هذا المستخدم." #. 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!" -msgstr "هذا الشعار ليس مفضلًا!" +msgstr "هذا الإشعار ليس مفضلًا!" #. TRANS: Title for page on which favorites can be added. msgid "Add to favorites" @@ -2311,7 +2320,7 @@ msgstr "لا عنوان بريد إلكتروني وارد." #. TRANS: Client error displayed when trying to mark a notice as favorite that already is a favorite. msgid "This notice is already a favorite!" -msgstr "هذا الإشعار مفضلة مسبقًا!" +msgstr "هذا الإشعار مفضل سابقا!" #. TRANS: Page title for page on which favorite notices can be unfavourited. msgid "Disfavor favorite." @@ -2371,7 +2380,7 @@ msgstr "المستجدات التي فضلها %1$s في %2$s!" #. TRANS: Title for featured users section. #. TRANS: Menu item title in search group navigation panel. msgid "Featured users" -msgstr "مستخدمون مختارون" +msgstr "مستخدمون مميزون" #. TRANS: Page title for all but first page of featured users. #. TRANS: %d is the page number being displayed. @@ -2652,10 +2661,10 @@ msgstr "إعدادات المراسلة الفورية" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "يمكنك إرسال واستقبال الإشعارات عبر [المراسلة الفورية](%%doc.im%%). اضبط " "عنوانك وإعدادتك أدناه." @@ -3651,8 +3660,9 @@ msgid "Server to direct SSL requests to." msgstr "الخادوم الذي ستوجه طلبات SSL إليه." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "احفظ المسارات" +#, fuzzy +msgid "Save path settings." +msgstr "احفظ إعدادت الموقع." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4145,24 +4155,20 @@ msgid "Public timeline" msgstr "المسار الزمني العام" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "تغذية الردود على %s (آكتفتي ستريمز جيسن)" +msgstr "تغذية المسار الزمني العام (آكتفتي ستريمز جيسن)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "المسار الزمني العام، صفحة %d" +msgstr "تغذية المسار الزمني العام (آرإس​إس 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "المسار الزمني العام، صفحة %d" +msgstr "تغذية المسار الزمني العام (آرإس​إس 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "المسار الزمني العام، صفحة %d" +msgstr "تغذية المسار الزمني العام (أتوم)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4843,6 +4849,27 @@ msgstr "" msgid "Application info" msgstr "معلومات التطبيق" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Request token URL" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "مسار المصدر" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -4965,7 +4992,7 @@ msgstr "الأعضاء" #. TRANS: Text for user user group membership statistics if user is not a member of any group. #. TRANS: Default content for section/sidebar widget. msgid "(None)" -msgstr "(لا شيء)" +msgstr "(لا يوجد)" #. TRANS: Link to all group members from mini list of group members if group has more than n members. msgid "All members" @@ -5415,7 +5442,7 @@ msgstr "نص إشعار الموقع" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "نص إشعار يعم الموقع (255 حرف كحد أقصى؛ يسمح بHTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "احفظ إشعار الموقع." @@ -5611,7 +5638,7 @@ msgstr "بلّغ عن المسار" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "اذف إعدادت الموقع" @@ -6021,7 +6048,7 @@ msgstr "الدعوات مُفعلة" msgid "Whether to allow users to invite new users." msgstr "اسمح للمستخدمين بدعوة مستخدمين جدد." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "احفظ إعدادات المستخدم." @@ -6238,8 +6265,9 @@ msgstr "تعذر تحديث المجموعة المحلية." msgid "Could not create login token for %s" msgstr "لم يمكن إنشاء توكن الولوج ل%s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "!تعذّر حفظ كلمة السر الجديدة." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6970,13 +6998,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "ألغِ" +#, fuzzy +msgid "Cancel application changes." +msgstr "التطبيقات المتصلة" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "احفظ" +#, fuzzy +msgid "Save application changes." +msgstr "تطبيق جديد" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7638,7 +7667,6 @@ msgid "Unable to find services for %s." msgstr "استخدم هذا النموذج لتعدل تطبيقك." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "ألغِ تفضيل هذا الإشعار" @@ -7647,8 +7675,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "ألغِ التفضيل" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "تعذّر إنشاء مفضلة." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "فضّل هذا الإشعار" @@ -7657,6 +7689,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "فضّل" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "تعذّر إنشاء مفضلة." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "آرإس​إس 1.0" @@ -7715,18 +7752,16 @@ msgstr "امنع" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "امنع هذا المستخدم" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. -#, fuzzy msgid "URL of the homepage or blog of the group or topic." -msgstr "مسار صفحة هذا التطبيق" +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. @@ -7741,10 +7776,10 @@ msgstr[4] "صِف المجموعة أو الموضوع" msgstr[5] "صِف المجموعة أو الموضوع" #. TRANS: Field title on group edit form. -#, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." -msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" +msgstr "" +"مكان المجموعة، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"." #. TRANS: Field label on group edit form. msgid "Aliases" @@ -7836,7 +7871,7 @@ msgstr "" #. TRANS: Menu item in primary navigation panel. msgctxt "MENU" msgid "Admin" -msgstr "إداري" +msgstr "أدر" #. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators. #. TRANS: %s is the nickname of the group. @@ -7870,10 +7905,14 @@ msgstr "مجموعات محبوبة" msgid "Active groups" msgstr "مجموعات نشطة" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "شاهد الكل" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +#, fuzzy +msgid "See all groups you belong to." msgstr "شاهد كل المجموعات التي تنتمي إليها" #. TRANS: Title for group tag cloud section. @@ -8022,7 +8061,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "غادر" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#, fuzzy +msgid "See all lists you have created." msgstr "شاهد كل القوائم التي أنشأتها" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8424,8 +8465,9 @@ msgid "Make Admin" msgstr "اجعله إداريًا" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "اجعل هذا المستخدم إداريًا" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8541,6 +8583,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "مزيد ▼" @@ -8633,7 +8676,8 @@ msgid "Repeated by" msgstr "كرره" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "رُد على هذا الإشعار" #. TRANS: Link text in notice list item to reply to a notice. @@ -8641,8 +8685,9 @@ msgid "Reply" msgstr "رُد" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "احذف هذا الإشعار" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "احذف هذا الإشعار." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8698,6 +8743,10 @@ msgstr[3] "صِف المجموعة أو الموضوع في %d حروف" msgstr[4] "صِف المجموعة أو الموضوع في %d حرف" msgstr[5] "صِف المجموعة أو الموضوع في %d حرفًا" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "احفظ" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "احذف هذه القائمة." @@ -9053,7 +9102,7 @@ msgid "" "* Try fewer keywords." msgstr "" "* تأكد من أن كل الكلمات صحيحة التهجئة.\n" -"*حاول بكلمات أخرى.\n" +"* حاول بكلمات أخرى.\n" "* حاول بكلمات أكثر عمومًا.\n" "* حاول بكلمات أقل." @@ -9472,15 +9521,15 @@ 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] "لم يكرر أحد هذا الإشعار" msgstr[1] "كرّر شخص واحد هذا الإشعار" -msgstr[2] "كرّر شخصان هذا الإشعار." +msgstr[2] "كرّر شخصان هذا الإشعار" msgstr[3] "كرّر %d أشخاص هذا الإشعار" msgstr[4] "كرّر %d شخصًا هذا الإشعار" -msgstr[5] "كرّر %d شخص هذا الإشعار." +msgstr[5] "كرّر %d شخص هذا الإشعار" #. TRANS: Form legend. #, php-format @@ -9573,7 +9622,6 @@ msgid "Unsilence this user" msgstr "ألغِ إسكات هذا المستخدم" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "ألغِ الاشتراك بهذا المستخدم" @@ -9583,6 +9631,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "ألغِ الاشتراك" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9715,5 +9768,15 @@ msgstr "ليس عنوان بريد صالح." msgid "Could not find a valid profile for \"%s\"." msgstr "تعذر إيجاد ملف شخصي صالح ل\"%s\"." -#~ msgid "Tagged" -#~ msgstr "الموسومون" +#~ msgid "Save paths" +#~ msgstr "احفظ المسارات" + +#~ msgid "Cancel" +#~ msgstr "ألغِ" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "امنع هذا المستخدم" + +#~ msgid "Delete this notice" +#~ msgstr "احذف هذا الإشعار" diff --git a/locale/be-tarask/LC_MESSAGES/statusnet.po b/locale/be-tarask/LC_MESSAGES/statusnet.po index aeb1c6df73..450a1b4d2b 100644 --- a/locale/be-tarask/LC_MESSAGES/statusnet.po +++ b/locale/be-tarask/LC_MESSAGES/statusnet.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:38+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:17+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-07-21 13:51:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: be-tarask\n" "X-Message-Group: #out-statusnet-core\n" @@ -100,11 +100,12 @@ msgstr "Забараніць новыя рэгістрацыі." msgid "Closed" msgstr "Закрыта" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Захаваць устаноўкі доступу" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -438,15 +439,19 @@ msgstr "Памылка блякаваньня карыстальніка." msgid "Unblock user failed." msgstr "Памылка разблякаваньня карыстальніка." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "няма ідэнтыфікатару размовы" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "Няма размовы з ідэнтыфікатарам %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Размова" @@ -1740,6 +1745,10 @@ msgstr "Пацьвердзіць адрас" msgid "The address \"%s\" has been confirmed for your account." msgstr "Адрас «%s» быў пацьверджаны для Вашага рахунка." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Размова" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1813,7 +1822,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Увядзіце «%s» каб пацьвердзіць, што Вы жадаеце выдаліць Ваш рахунак." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Поўнае выдаленьне Вашага рахунку" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2700,10 +2710,10 @@ msgstr "Налады IM" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Вы можаце дасылаць ці атрымліваць абвешчаньні праз сыстэму імгненных " "паведамленьняў [instant messages](%%doc.im%%). Наладзьце Вашыя адрасы і " @@ -3710,8 +3720,9 @@ msgid "Server to direct SSL requests to." msgstr "Сэрвэр, на які перанакіроўваць SSL-запыты." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Захаваць шляхі" +#, fuzzy +msgid "Save path settings." +msgstr "Захаваць устаноўкі доступу" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3839,7 +3850,7 @@ msgstr "Перайсьці" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3847,7 +3858,7 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"Тут пададзеныя сьпісы створаныя **%s**. Сьпісы — спосаб групоўкі падобных " +"Тут пададзеныя сьпісы створаныя **%s**. Сьпісы — спосаб сартаваньня падобных " "людзей на %%site.name%%, сэрвісе [мікраблёгаў](http://en.wikipedia.org/wiki/" "Micro-blogging), які працуе з дапамогай вольнага праграмнага забесьпячэньня " "[StatusNet](http://status.net/). Вы можаце зь лёгкасьцю сачыць за тым, што " @@ -3873,7 +3884,7 @@ msgstr "Сьпісы з %1$s, старонка %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3881,11 +3892,12 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"Тут пададзеныя сьпісы для **%s**. Сьпісы — спосаб групоўкі падобных людзей " -"на %%%%site.name%%%%, сэрвісе [мікраблёгаў](http://en.wikipedia.org/wiki/" -"Micro-blogging), які працуе з дапамогай вольнага праграмнага забесьпячэньня " -"[StatusNet](http://status.net/). Вы можаце зь лёгкасьцю сачыць за тым, што " -"яны робяць, падпісаўшыся на стужку паведамленьняў гэтага сьпісу." +"Тут пададзеныя сьпісы для **%s**. Сьпісы — спосаб сартаваньня падобных " +"людзей на %%%%site.name%%%%, сэрвісе [мікраблёгаў](http://en.wikipedia.org/" +"wiki/Micro-blogging), які працуе з дапамогай вольнага праграмнага " +"забесьпячэньня [StatusNet](http://status.net/). Вы можаце зь лёгкасьцю " +"сачыць за тым, што яны робяць, падпісаўшыся на стужку паведамленьняў гэтага " +"сьпісу." #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -4071,67 +4083,72 @@ msgstr "Біяграфія" #. TRANS: Field label on group edit form. #. TRANS: Dropdown option for searching in profiles. msgid "Location" -msgstr "" +msgstr "Месцазнаходжаньне" #. TRANS: Tooltip for field label in form for profile settings. #. TRANS: Field title on account registration page. msgid "Where you are, like \"City, State (or Region), Country\"." -msgstr "" +msgstr "Дзе Вы знаходзіцеся, напрыклад, «Горад, штат (вобласьць), краіна»." #. TRANS: Checkbox label in form for profile settings. msgid "Share my current location when posting notices" -msgstr "" +msgstr "Паказваць маё цяперашняе месцазнаходжаньне, падчас адпраўкі запісаў" #. TRANS: Field label in form for profile settings. msgid "Tags" -msgstr "" +msgstr "Тэгі" #. TRANS: Tooltip for field label in form for profile settings. msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- " "separated." msgstr "" +"Тэгі для сябе (літары, лічбы, -, ., і _), падзеленыя коскай ці прагалам." #. TRANS: Dropdownlist label in form for profile settings. msgid "Language" -msgstr "" +msgstr "Мова" #. TRANS: Tooltip for dropdown list label in form for profile settings. msgid "Preferred language." -msgstr "" +msgstr "Мова, якім я аддаю перавагу." #. TRANS: Dropdownlist label in form for profile settings. msgid "Timezone" -msgstr "" +msgstr "Часавы пояс" #. TRANS: Tooltip for dropdown list label in form for profile settings. msgid "What timezone are you normally in?" -msgstr "" +msgstr "У якім часавым поясе Вы знаходзіцеся?" #. TRANS: Checkbox label in form for profile settings. 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. msgid "Subscription policy" -msgstr "" +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." 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 @@ -4141,17 +4158,17 @@ msgstr "" #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Біяграфія занадта доўгая (максымальна %d сымбаль)." +msgstr[1] "Біяграфія занадта доўгая (максымальна %d сымбалі)." #. TRANS: Validation error in form for profile settings. #. TRANS: Client error displayed trying to save site settings without a timezone. msgid "Timezone not selected." -msgstr "" +msgstr "Часавы пояс ня выбраны." #. TRANS: Validation error in form for profile settings. msgid "Language is too long (maximum 50 characters)." -msgstr "" +msgstr "Мова занадта доўгая (максымальна 50 сымбаляў)." #. TRANS: Validation error in form for profile settings. #. TRANS: %s is an invalid tag. @@ -4863,6 +4880,27 @@ msgstr "" msgid "Application info" msgstr "" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Няслушны ключ запыту." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Authorize URL" +msgstr "" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5406,7 +5444,7 @@ msgstr "" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "" @@ -5592,7 +5630,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "" @@ -5988,7 +6026,7 @@ msgstr "" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "" @@ -6188,8 +6226,9 @@ msgstr "" msgid "Could not create login token for %s" msgstr "" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Немагчыма захаваць новы пароль." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6896,13 +6935,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Скасаваць" +#, fuzzy +msgid "Cancel application changes." +msgstr "Далучаныя дастасаваньні" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Захаваць" +#, fuzzy +msgid "Save application changes." +msgstr "Новае дастасаваньне" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7527,7 +7567,6 @@ msgid "Unable to find services for %s." msgstr "" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "" @@ -7536,8 +7575,11 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "" +#. TRANS: Button title for removing the favourite status for a favourite notice. +msgid "Remove this notice from your list of favorite notices." +msgstr "" + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "" @@ -7546,6 +7588,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Гэтае паведамленьне не зьяўляецца ўлюблёным!" + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" @@ -7604,7 +7651,7 @@ msgstr "" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" +msgid "Block this user so that they can no longer post messages to it." msgstr "" #. TRANS: Field title on group edit form. @@ -7743,10 +7790,13 @@ msgstr "" msgid "Active groups" msgstr "" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -7883,8 +7933,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Дастасаваньні, якія Вы зарэгістравалі" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8215,9 +8266,11 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "" +"Толькі адміністратар можа зрабіць іншага карыстальніка адміністратарам." #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8329,6 +8382,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8417,16 +8471,18 @@ msgid "Repeated by" msgstr "" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" -msgstr "" +#, fuzzy +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 "Выдаліць гэтае паведамленьне" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Выдаліць гэтае паведамленьне." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8474,6 +8530,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "" msgstr[1] "" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Захаваць" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "" @@ -9308,7 +9368,6 @@ msgid "Unsilence this user" msgstr "" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "" @@ -9318,6 +9377,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9432,9 +9496,11 @@ msgstr "" msgid "Could not find a valid profile for \"%s\"." msgstr "" -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Узьнікла важная памылка, верагодна зьвязаная з наладамі электроннай " -#~ "пошты. Праверце файлы журналаў для дадатковай інфармацыі." +#~ msgid "Save paths" +#~ msgstr "Захаваць шляхі" + +#~ msgid "Cancel" +#~ msgstr "Скасаваць" + +#~ msgid "Delete this notice" +#~ msgstr "Выдаліць гэтае паведамленьне" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index f689dc8250..0aea5aa61e 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:40+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:19+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -90,11 +90,12 @@ msgstr "Изключване на новите регистрации." msgid "Closed" msgstr "Затворен" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Запазване настройките за достъп" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -417,16 +418,19 @@ msgstr "Грешка при блокиране на потребителя." msgid "Unblock user failed." msgstr "Грешка при разблокиране на потребителя." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Разговор" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Разговор" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Разговор" @@ -1736,6 +1740,10 @@ msgstr "Потвърждаване на адрес" msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресът \"%s\" е потвърден за сметката ви." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Разговор" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1811,7 +1819,7 @@ msgstr "Не можете да изтривате потребители." #. TRANS: Button title for user account deletion. #, fuzzy -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "Не можете да изтривате потребители." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2706,8 +2714,8 @@ msgstr "Настройки за SMS" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Можете да получавате съобщения по Jabber/GTalk [instant messages](%%doc.im%" "%). Въведете адреса си в настройките по-долу." @@ -3751,8 +3759,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Запазване на пътищата" +#, fuzzy +msgid "Save path settings." +msgstr "Запазване настройките на сайта" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4955,6 +4964,28 @@ msgstr "" msgid "Application info" msgstr "Данни за приложението" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Неправилен размер." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Изходен код" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5517,7 +5548,7 @@ msgstr "Изтриване на бележката" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Запазване настройките на сайта" @@ -5719,7 +5750,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Запазване настройките на сайта" @@ -6143,7 +6174,7 @@ msgstr "Поканите са включени" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Запазване настройките на сайта" @@ -6353,8 +6384,9 @@ msgstr "Грешка при обновяване на групата." msgid "Could not create login token for %s" msgstr "Грешка при отбелязване като любима." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Грешка при запазване на новата парола." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7123,13 +7155,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Отказ" +#, fuzzy +msgid "Cancel application changes." +msgstr "Изтриване на приложението" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Запазване" +#, fuzzy +msgid "Save application changes." +msgstr "Ново приложение" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7799,7 +7832,6 @@ msgid "Unable to find services for %s." msgstr "Използвайте тази бланка за създаване на нова група." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Отбелязване като любимо" @@ -7809,8 +7841,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Добавяне към любимите" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Грешка при изтегляне на любимите бележки" + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Отбелязване като любимо" @@ -7820,6 +7856,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Любимо" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Грешка при изтегляне на любимите бележки" + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7880,8 +7921,8 @@ msgstr "Блокиране" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Блокиране на този потребител" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8028,10 +8069,13 @@ msgstr "Популярни бележки" msgid "Active groups" msgstr "Всички групи" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8175,7 +8219,8 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Напускане" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +msgid "See all lists you have created." msgstr "" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8521,9 +8566,10 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" +msgid "Make this user an admin." +msgstr "За да редактирате групата, трябва да сте й администратор." #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8642,6 +8688,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8732,7 +8779,8 @@ msgid "Repeated by" msgstr "Повторено от" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Отговаряне на тази бележка" #. TRANS: Link text in notice list item to reply to a notice. @@ -8740,7 +8788,8 @@ msgid "Reply" msgstr "Отговор" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Изтриване на бележката" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8795,6 +8844,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Опишете групата или темата в до %d букви" msgstr[1] "Опишете групата или темата в до %d букви" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Запазване" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9709,7 +9762,6 @@ msgid "Unsilence this user" msgstr "Заглушаване на този потребител." #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Отписване от този потребител" @@ -9720,6 +9772,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Отписване" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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 @@ -9837,6 +9894,15 @@ msgstr "Неправилен адрес на е-поща." msgid "Could not find a valid profile for \"%s\"." msgstr "Грешка при запазване на профила." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Етикет" +#~ msgid "Save paths" +#~ msgstr "Запазване на пътищата" + +#~ msgid "Cancel" +#~ msgstr "Отказ" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Блокиране на този потребител" + +#~ msgid "Delete this notice" +#~ msgstr "Изтриване на бележката" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index fd28936ede..42efc8d21c 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:42+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:20+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -93,11 +93,12 @@ msgstr "Diweredekaat an enskrivadurioù nevez." msgid "Closed" msgstr "Serr" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Enrollañ an arventennoù moned" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -427,16 +428,19 @@ msgstr "N'eus ket bet tu da stankañ an implijer." msgid "Unblock user failed." msgstr "N'eus ket bet tu da zistankañ an implijer." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Kaozeadenn" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Kaozeadenn" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Kaozeadenn" @@ -1733,6 +1737,10 @@ msgstr "Chomlec'h kadarnaet" msgid "The address \"%s\" has been confirmed for your account." msgstr "Kadarnaet eo bet ar chomlec'h \"%s\" evit ho kont." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Kaozeadenn" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1805,7 +1813,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Ebarzhit \"%s\" evit kadarnaat e fell deoc'h dilemel ho kont." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Dilemel ho kont da vat" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2684,8 +2693,8 @@ msgstr "Arventennoù ar bostelerezh prim" #. TRANS: the order and formatting of link text and link should remain unchanged. #, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. @@ -3723,8 +3732,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Enrollañ an hentadoù." +#, fuzzy +msgid "Save path settings." +msgstr "Enrollañ arventennoù al lec'hienn" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4946,6 +4956,28 @@ msgstr "Adderaouekaat an alc'hwez hag ar sekred" msgid "Application info" msgstr "Titouroù ar poelad" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Jedouer reked direizh." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Mammenn URL" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5515,7 +5547,7 @@ msgstr "" "Testenn an ali diwar-benn al lec'hienn a-bezh (255 arouezenn d'ar muiañ ; " "HTML gweredekaet)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Enrollañ ali ul lec'hienn" @@ -5714,7 +5746,7 @@ msgstr "URL an danevell" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Enrollañ arventennoù al lec'hienn" @@ -6145,7 +6177,7 @@ msgstr "Pedadennoù gweredekaet" msgid "Whether to allow users to invite new users." msgstr "Ma rankomp merañ an dalc'hoù hon unan." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Enrollañ arventennoù an implijer" @@ -6352,8 +6384,9 @@ msgstr "Diposubl eo hizivaat ar strollad." msgid "Could not create login token for %s" msgstr "Diposubl eo krouiñ an aliasoù." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7096,13 +7129,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Nullañ" +#, fuzzy +msgid "Cancel application changes." +msgstr "Poeladoù kevreet." #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Enrollañ" +#, fuzzy +msgid "Save application changes." +msgstr "Arload nevez" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7767,7 +7801,6 @@ msgid "Unable to find services for %s." msgstr "Dibosupl eo nullañ moned ar poellad : " #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Tennañ eus ar pennrolloù" @@ -7777,8 +7810,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Tennañ ar pennroll" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Diposupl eo diskwel ar pennrolloù." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Ouzhpennañ d'ar pennrolloù" @@ -7788,6 +7825,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Pennrolloù" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Diposupl eo diskwel ar pennrolloù." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7847,8 +7889,8 @@ msgstr "Stankañ" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Stankañ an implijer-mañ" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -7991,11 +8033,14 @@ msgstr "Alioù poblek" msgid "Active groups" msgstr "An holl strolladoù" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Diskouez pep tra" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8136,8 +8181,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Kuitaat" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Ar poelladoù ho peus enrollet" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8479,8 +8525,9 @@ msgid "Make Admin" msgstr "Lakaat ur merour" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Lakaat an implijer-mañ da verour" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8599,6 +8646,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8688,7 +8736,8 @@ msgid "Repeated by" msgstr "Adkemeret gant" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Respont d'ar c'hemenn-mañ" #. TRANS: Link text in notice list item to reply to a notice. @@ -8696,7 +8745,8 @@ msgid "Reply" msgstr "Respont" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Dilemel ar c'hemenn-mañ" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8754,6 +8804,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Diskrivit ho poellad gant %d arouezenn" msgstr[1] "Diskrivit ho poellad gant %d arouezenn" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Enrollañ" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9633,7 +9687,6 @@ msgid "Unsilence this user" msgstr "Distankañ an implijer-mañ" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "En em zigoumanantiñ eus an implijer-mañ" @@ -9643,6 +9696,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Digoumanantiñ" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "En em zigoumanantiñ eus an implijer-mañ" + #. 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 @@ -9758,6 +9816,15 @@ msgstr "N'eo ket ur chomlec'h postel reizh." msgid "Could not find a valid profile for \"%s\"." msgstr "Dibosupl eo enrollañ ar profil." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Balizenn" +#~ msgid "Save paths" +#~ msgstr "Enrollañ an hentadoù." + +#~ msgid "Cancel" +#~ msgstr "Nullañ" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Stankañ an implijer-mañ" + +#~ msgid "Delete this notice" +#~ msgstr "Dilemel ar c'hemenn-mañ" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 3b5d9ce505..2cc85bb50b 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:43+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:22+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -103,11 +103,12 @@ msgstr "Inhabilita els nous registres." msgid "Closed" msgstr "Tancat" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Desa els paràmetres d'accés" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -445,15 +446,19 @@ msgstr "Ha fallat el blocatge de l'usuari." msgid "Unblock user failed." msgstr "Ha fallat el desblocatge de l'usuari." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "no hi ha un id de conversa" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "No hi ha cap conversa amb l'id %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversa" @@ -1740,6 +1745,10 @@ msgstr "Confirmeu l'adreça de correu electrònic" msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adreça «%s» ha estat confirmada per al vostre compte." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversa" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1813,7 +1822,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Introduïu «%s» per a confirmar que voleu eliminar el vostre compte." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Elimina permanentment el compte" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2698,10 +2708,10 @@ msgstr "Paràmetres de missatgeria instantània" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Podeu enviar i rebre avisos a través de la missatgeria instantània " "[missatges instantanis](%%doc.im%%) de Jabber/GTalk. Configureu les adreces " @@ -3708,8 +3718,9 @@ msgid "Server to direct SSL requests to." msgstr "Servidor on dirigir les sol·licituds SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Desa els camins" +#, fuzzy +msgid "Save path settings." +msgstr "Desa els paràmetres del lloc." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4931,6 +4942,29 @@ msgstr "Reinicialitza la clau i la secreta" msgid "Application info" msgstr "Informació de l'aplicació" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "El testimoni de sol·licitud no és vàlid." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Testimoni d'accés incorrecte." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL d'origen" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5515,7 +5549,7 @@ msgstr "Text d'avís per a tot el lloc" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Text d'avís per a tot el lloc (màxim 255 caràcters; es permet l'HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Desa l'avís per a tot el lloc." @@ -5711,7 +5745,7 @@ msgstr "Informa de l'URL" msgid "Snapshots will be sent to this URL." msgstr "Les instantànies s'enviaran a aquest URL." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Desa els paràmetres de les instantànies." @@ -6128,7 +6162,7 @@ msgstr "S'han habilitat les invitacions" msgid "Whether to allow users to invite new users." msgstr "Si es permet als usuaris invitar-ne de nous." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Desa els paràmetres d'usuari." @@ -6348,7 +6382,9 @@ msgstr "No s'ha pogut actualitzar el grup local." msgid "Could not create login token for %s" msgstr "No s'ha pogut crear un testimoni d'inici de sessió per a %s" -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "No es pot instanciar la classe " #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7083,13 +7119,14 @@ msgstr "" "Accés per defecte per a l'aplicació: només lectura, o lectura i escriptura" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Cancel·la" +#, fuzzy +msgid "Cancel application changes." +msgstr "Aplicacions connectades" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Desa" +#, fuzzy +msgid "Save application changes." +msgstr "Aplicació nova" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7725,7 +7762,6 @@ msgid "Unable to find services for %s." msgstr "No s'han pogut trobar els serveis de %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Deixa de tenir com a preferit aquest avís" @@ -7734,8 +7770,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Fes que deixi de ser preferit" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "No s'han pogut recuperar els avisos preferits." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Fes preferit aquest avís" @@ -7744,6 +7784,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Preferit" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "No s'han pogut recuperar els avisos preferits." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7802,8 +7847,8 @@ msgstr "Bloca" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloca aquest usuari" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7948,10 +7993,14 @@ msgstr "Grups populars" msgid "Active groups" msgstr "Grups actius" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "Mostra-ho tot" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +#, fuzzy +msgid "See all groups you belong to." msgstr "Mostra tots els grups que pertanyen a" #. TRANS: Title for group tag cloud section. @@ -8093,7 +8142,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Deixa" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#, fuzzy +msgid "See all lists you have created." msgstr "Mostra totes les llistes que heu creat" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8512,8 +8563,9 @@ msgid "Make Admin" msgstr "Fes-lo administrador" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Fes aquest usuari administrador" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8630,6 +8682,7 @@ msgstr "No se sap gestionar aquest tipus d'objectiu." msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "Heu d'implementar adaptNoticeListItem() o bé showNotice()." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "Més ▼" @@ -8720,7 +8773,8 @@ msgid "Repeated by" msgstr "Repetit per" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Respon a aquest avís" #. TRANS: Link text in notice list item to reply to a notice. @@ -8728,8 +8782,9 @@ msgid "Reply" msgstr "Respon" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Elimina aquest avís" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Elimina l'avís." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8777,6 +8832,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Descriviu la llista o la temàtica en %d caràcter." msgstr[1] "Descriviu la llista o la temàtica en %d caràcters." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Desa" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Elimina la llista." @@ -9630,7 +9689,6 @@ msgid "Unsilence this user" msgstr "Dessilencia l'usuari" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Cancel·la la subscripció d'aquest usuari" @@ -9640,6 +9698,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancel·la la subscripció" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Cancel·la la subscripció d'aquest usuari" + #. 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). #, php-format @@ -9754,13 +9817,15 @@ msgstr "No és una adreça de webfinger vàlida." msgid "Could not find a valid profile for \"%s\"." msgstr "No s'ha pogut trobar un perfil de «%s» vàlid." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "S'ha produït un error important, probablement està relacionat amb la " -#~ "configuració del correu. Comproveu els fitxers de registre per a més " -#~ "detalls." +#~ msgid "Save paths" +#~ msgstr "Desa els camins" -#~ msgid "Tagged" -#~ msgstr "Etiquetat" +#~ msgid "Cancel" +#~ msgstr "Cancel·la" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloca aquest usuari" + +#~ msgid "Delete this notice" +#~ msgstr "Elimina aquest avís" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 8ca97da1f0..b1a02d82cb 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:45+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:23+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -94,11 +94,12 @@ msgstr "Znemožnit nové registrace" msgid "Closed" msgstr "Uzavřené" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "uložit nastavení přístupu" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -438,16 +439,19 @@ msgstr "Zablokovat uživatele se nezdařilo." msgid "Unblock user failed." msgstr "Odblokovat uživatele se nezdařilo." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Konverzace" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Konverzace" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Konverzace" @@ -1773,6 +1777,10 @@ msgstr "Heslo znovu" msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" byla potvrzena pro váš účet" +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Konverzace" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1850,7 +1858,7 @@ msgstr "Nemůžete odstranit uživatele." #. TRANS: Button title for user account deletion. #, fuzzy -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "Nemůžete odstranit uživatele." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2755,8 +2763,8 @@ msgstr "Nastavení IM" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Můžete odesílat nebo přijámat oznámení pomocí Jabber/GTalk [zpráv](%%doc.im%" "%) .Zadejte svou adresu a nastavení níže." @@ -3810,8 +3818,9 @@ msgid "Server to direct SSL requests to." msgstr "Server kam směrovat SSL žádosti" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Uložit cesty" +#, fuzzy +msgid "Save path settings." +msgstr "Uložit Nastavení webu" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5064,6 +5073,28 @@ msgstr "Resetovat klíč a tajemství" msgid "Application info" msgstr "Info o aplikaci" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Neplatný token." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Zdrojové URL" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5660,7 +5691,7 @@ msgstr "Text sdělení stránky" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Celo-webové sdělení (255 znaků max., s HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Uložit oznámení stránky" @@ -5861,7 +5892,7 @@ msgstr "Reportovací URL" msgid "Snapshots will be sent to this URL." msgstr "Na tuto adresu budou poslány snímky" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Uložit nastavení snímkování" @@ -6292,7 +6323,7 @@ msgstr "Pozvánky povoleny" msgid "Whether to allow users to invite new users." msgstr "Zda chcete uživatelům umožnit pozvat nové uživatele." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Uložit Nastavení webu" @@ -6519,8 +6550,9 @@ msgstr "Nelze aktualizovat místní skupinu." msgid "Could not create login token for %s" msgstr "Nelze vytvořit přihlašovací token pro %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Nelze uložit nové heslo" #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7272,13 +7304,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "Výchozí přístup pro tuto aplikaci: pouze pro čtení, nebo číst-psát" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Zrušit" +#, fuzzy +msgid "Cancel application changes." +msgstr "Propojené aplikace" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Uložit" +#, fuzzy +msgid "Save application changes." +msgstr "Nová aplikace" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7944,7 +7977,6 @@ msgid "Unable to find services for %s." msgstr "Nelze zrušit přístup aplikace %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Odebrat toto oznámení z oblíbených" @@ -7954,8 +7986,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Znemilostnit oblíbenou" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Nepodařilo se získat oblíbená oznámení." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Přidat toto oznámení do oblíbených" @@ -7965,6 +8001,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Oblíbit" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Nepodařilo se získat oblíbená oznámení." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -8025,7 +8066,7 @@ msgstr "" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" +msgid "Block this user so that they can no longer post messages to it." msgstr "" #. TRANS: Field title on group edit form. @@ -8175,10 +8216,13 @@ msgstr "Populární oznámení" msgid "Active groups" msgstr "Všechny skupiny" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8324,8 +8368,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Opustit" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Aplikace které jste zaregistrovali" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8764,9 +8809,10 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" +msgid "Make this user an admin." +msgstr "Uďelat uživatele adminem skupiny" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8885,6 +8931,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8977,7 +9024,8 @@ msgid "Repeated by" msgstr "Opakováno" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +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. @@ -8985,7 +9033,8 @@ msgid "Reply" msgstr "Odpovědět" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Odstranit toto oznámení" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -9044,6 +9093,10 @@ msgstr[0] "Popište skupinu nebo téma ve %d znacích" msgstr[1] "Popište skupinu nebo téma ve %d znacích" msgstr[2] "Popište skupinu nebo téma ve %d znacích" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Uložit" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9961,7 +10014,6 @@ msgid "Unsilence this user" msgstr "Zrušit utišení tohoto uživatele" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Odhlásit se od tohoto uživatele" @@ -9972,6 +10024,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Odhlásit" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Odhlásit se od tohoto uživatele" + #. 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 @@ -10093,6 +10150,11 @@ msgstr "Není platnou mailovou adresou." msgid "Could not find a valid profile for \"%s\"." msgstr "Nepodařilo se uložit profil." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Značka" +#~ msgid "Save paths" +#~ msgstr "Uložit cesty" + +#~ msgid "Cancel" +#~ msgstr "Zrušit" + +#~ msgid "Delete this notice" +#~ msgstr "Odstranit toto oznámení" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index e734c3067e..b3a18647f7 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -30,17 +30,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:47+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:25+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -117,11 +117,12 @@ msgstr "Neuregistrierungen deaktivieren." msgid "Closed" msgstr "Geschlossen" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Zugangs-Einstellungen speichern" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -457,15 +458,19 @@ msgstr "Blockieren des Benutzers fehlgeschlagen." msgid "Unblock user failed." msgstr "Freigeben des Benutzers fehlgeschlagen." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "keine Unterhaltungs-ID" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "Unterhaltung mit ID %d existiert nicht" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Unterhaltung" @@ -1764,6 +1769,10 @@ msgstr "Adresse bestätigen" msgid "The address \"%s\" has been confirmed for your account." msgstr "Die Adresse „%s“ wurde für dein Konto bestätigt." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Unterhaltung" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1837,7 +1846,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Gib „%s” ein, um zu bestätigen, dass du dein Konto löschen willst." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Dein Konto für immer löschen" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2729,10 +2739,10 @@ msgstr "IM-Einstellungen" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Du kannst Nachrichten mittels [Jabber/GTalk IM](%%doc.im%%) empfangen und " "senden. Stelle deine Adressen und Einstellungen unten ein." @@ -3739,8 +3749,9 @@ msgid "Server to direct SSL requests to." msgstr "Server an den SSL Anfragen gerichtet werden sollen" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Speicherpfade" +#, fuzzy +msgid "Save path settings." +msgstr "Website-Einstellungen speichern" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4991,6 +5002,29 @@ msgstr "Schlüssel zurücksetzen" msgid "Application info" msgstr "Programminformation" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Ungültiges Token." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Schlechter Zugangstoken." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Quelladresse" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5592,7 +5626,7 @@ msgstr "Seitenbenachrichtigung" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Systembenachrichtigung (maximal 255 Zeichen; HTML erlaubt)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Systemnachricht speichern" @@ -5795,7 +5829,7 @@ msgstr "URL melden" msgid "Snapshots will be sent to this URL." msgstr "An diese Adresse werden Snapshots gesendet" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Snapshot-Einstellungen speichern" @@ -6222,7 +6256,7 @@ msgstr "Einladungen aktivieren" msgid "Whether to allow users to invite new users." msgstr "Ist es Benutzern erlaubt, neue Benutzer einzuladen." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Benutzer-Einstellungen speichern" @@ -6448,8 +6482,9 @@ msgstr "Konnte Gruppe nicht aktualisieren." msgid "Could not create login token for %s" msgstr "Konnte keinen Login-Token für %s erstellen" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Kann neues Passwort nicht speichern." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7213,13 +7248,14 @@ msgstr "" "Schreibzugriff" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Abbrechen" +#, fuzzy +msgid "Cancel application changes." +msgstr "Verbundene Programme" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Speichern" +#, fuzzy +msgid "Save application changes." +msgstr "Neues Programm" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7876,7 +7912,6 @@ msgid "Unable to find services for %s." msgstr "Kann Zugang dieses Programm nicht entfernen: %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Aus Favoriten entfernen" @@ -7886,8 +7921,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Aus Favoriten entfernen" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Konnte Favoriten nicht abrufen." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Zu den Favoriten hinzufügen" @@ -7897,6 +7936,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Zu Favoriten hinzufügen" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Konnte Favoriten nicht abrufen." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7957,8 +8001,8 @@ msgstr "Blockieren" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Diesen Benutzer blockieren" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -8105,11 +8149,14 @@ msgstr "Beliebte Nachrichten" msgid "Active groups" msgstr "Alle Gruppen" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Mehr anzeigen" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8260,8 +8307,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Verlassen" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Registrierte Programme" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8702,8 +8750,9 @@ msgid "Make Admin" msgstr "Zum Admin ernennen" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Diesen Benutzer zum Admin ernennen" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8827,6 +8876,7 @@ msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" "Du musst entweder adaptNoticeListItem() oder showNotice() implementieren." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8918,7 +8968,8 @@ msgid "Repeated by" msgstr "Wiederholt von" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Auf diese Nachricht antworten" #. TRANS: Link text in notice list item to reply to a notice. @@ -8926,7 +8977,8 @@ msgid "Reply" msgstr "Antworten" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Nachricht löschen" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8984,6 +9036,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Beschreibe die Gruppe oder das Thema in einem Zeichen" msgstr[1] "Beschreibe die Gruppe oder das Thema in %d Zeichen" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Speichern" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9902,7 +9958,6 @@ msgid "Unsilence this user" msgstr "Benutzer freigeben" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Abonnement von diesem Benutzer abbestellen" @@ -9913,6 +9968,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Abbestellen" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Abonnement von diesem Benutzer abbestellen" + #. 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). #, php-format @@ -10029,13 +10089,15 @@ msgstr "Ungültige E-Mail-Adresse." msgid "Could not find a valid profile for \"%s\"." msgstr "Konnte Profil nicht speichern." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Ein wichtiger Fehler ist aufgetreten, der wahrscheinlich mit dem E-Mail-" -#~ "Setup zu tun hat. Prüfe die Logdateien für weitere Informationen." +#~ msgid "Save paths" +#~ msgstr "Speicherpfade" -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Tag" +#~ msgid "Cancel" +#~ msgstr "Abbrechen" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Diesen Benutzer blockieren" + +#~ msgid "Delete this notice" +#~ msgstr "Nachricht löschen" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index cc4647f0c0..33b4e6ce16 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:48+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:26+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -95,11 +95,12 @@ msgstr "Disable new registrations." msgid "Closed" msgstr "Closed" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Save access settings" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -435,16 +436,19 @@ msgstr "Block user failed." msgid "Unblock user failed." msgstr "Unblock user failed." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Conversation" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Conversation" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversation" @@ -1760,6 +1764,10 @@ msgstr "Confirm address" msgid "The address \"%s\" has been confirmed for your account." msgstr "The address \"%s\" has been confirmed for your account." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversation" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1837,7 +1845,7 @@ msgstr "You cannot delete users." #. TRANS: Button title for user account deletion. #, fuzzy -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "You cannot delete users." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2739,8 +2747,8 @@ msgstr "IM settings" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" "doc.im%%). Configure your address and settings below." @@ -3777,8 +3785,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Save paths" +#, fuzzy +msgid "Save path settings." +msgstr "Save site settings" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5014,6 +5023,28 @@ msgstr "" msgid "Application info" msgstr "Application information" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Invalid request token." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Source URL" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5595,7 +5626,7 @@ msgstr "Site notice text" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Save site notice" @@ -5793,7 +5824,7 @@ msgstr "Report URL" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Save snapshot settings" @@ -6216,7 +6247,7 @@ msgstr "Invitations enabled" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Save site settings" @@ -6430,8 +6461,9 @@ msgstr "Could not update local group." msgid "Could not create login token for %s" msgstr "Could not create login token for %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Can't save new password." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7177,13 +7209,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Cancel" +#, fuzzy +msgid "Cancel application changes." +msgstr "Connected applications" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Save" +#, fuzzy +msgid "Save application changes." +msgstr "New Application" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7833,7 +7866,6 @@ msgid "Unable to find services for %s." msgstr "Use this form to edit your application." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Disfavour this notice" @@ -7843,8 +7875,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Disfavor favourite" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Could not retrieve favourite notices." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Favour this notice" @@ -7854,6 +7890,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favour" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Could not retrieve favourite notices." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" @@ -7914,7 +7955,7 @@ msgstr "" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" +msgid "Block this user so that they can no longer post messages to it." msgstr "" #. TRANS: Field title on group edit form. @@ -8060,10 +8101,13 @@ msgstr "Popular notices" msgid "Active groups" msgstr "All groups" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8206,8 +8250,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Leave" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Applications you have registered" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8560,9 +8605,10 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" +msgid "Make this user an admin." +msgstr "Make user an admin of the group" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8680,6 +8726,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8768,7 +8815,8 @@ msgid "Repeated by" msgstr "Repeated by" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Reply to this notice" #. TRANS: Link text in notice list item to reply to a notice. @@ -8776,7 +8824,8 @@ msgid "Reply" msgstr "Reply" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Delete this notice" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8834,6 +8883,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Describe the group or topic in %d characters" msgstr[1] "Describe the group or topic in %d characters" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Save" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9736,7 +9789,6 @@ msgid "Unsilence this user" msgstr "Unsilence this user" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" @@ -9747,6 +9799,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Unsubscribe" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Unsubscribe from this user" + #. 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). #, php-format @@ -9864,6 +9921,11 @@ msgstr "Not a valid e-mail address." msgid "Could not find a valid profile for \"%s\"." msgstr "Could not save profile." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Tag" +#~ msgid "Save paths" +#~ msgstr "Save paths" + +#~ msgid "Cancel" +#~ msgstr "Cancel" + +#~ msgid "Delete this notice" +#~ msgstr "Delete this notice" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index c0cb0de05c..7a51638ed3 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:50+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:28+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -96,11 +96,12 @@ msgstr "Malpermesi novan registriĝon." msgid "Closed" msgstr "Fermita" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Konservi atingan agordon" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -435,16 +436,19 @@ msgstr "Ne sukcesis bloki uzanton." msgid "Unblock user failed." msgstr "Ne sukcesis malbloki uzanton." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Konversacio" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Konversacio" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Konversacio" @@ -1751,6 +1755,10 @@ msgstr "Konfirmi retadreson" msgid "The address \"%s\" has been confirmed for your account." msgstr "Adreso \"%s\" nun konfirmitas je via konto." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Konversacio" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1830,7 +1838,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Enigu «%s» por konfirmi, ke vi volas forviŝi vian konton." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Forviŝi nemalfareble vian konton" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2723,8 +2732,8 @@ msgstr "Tujmesaĝila agordo." #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Vi povas sendi kaj ricevi avizojn per Jabber/GTalk-[tujmesaĝiloj](%%doc.im%" "%). Jen agordu vian adreson kaj ceteron." @@ -3748,8 +3757,9 @@ msgid "Server to direct SSL requests to." msgstr "Servilo, kien direkti \"SSL\"-petojn" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Konservi lokigilon" +#, fuzzy +msgid "Save path settings." +msgstr "Konservi retejan agordon" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4984,6 +4994,29 @@ msgstr "Rekomencigi ŝlosilon & sekreton" msgid "Application info" msgstr "Aplikaĵa informo" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Nevalida peto-ĵetono." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Fuŝa aliro-ĵetono." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Fonta URL" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5570,7 +5603,7 @@ msgstr "Teksto de reteja anonco." msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Teksto de reteja anonco (apenaŭ 255 literoj; HTML eblas)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Konservi retejan agordon" @@ -5771,7 +5804,7 @@ msgstr "Alraporta URL" msgid "Snapshots will be sent to this URL." msgstr "Momentfotoj sendiĝos al ĉi tiu URL" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Konservi retejan agordon" @@ -6200,7 +6233,7 @@ msgstr "Invito ebliĝis" msgid "Whether to allow users to invite new users." msgstr "Ĉu permesi al uzantoj inviti novan uzantojn." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Konservi retejan agordon" @@ -6416,8 +6449,9 @@ msgstr "Malsukcesis ĝisdatigi lokan grupon." msgid "Could not create login token for %s" msgstr "Malsukcesis krei ensalut-ĵetonon por %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Malsukcesis konservo de nova pasvorto." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7167,13 +7201,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "Defaŭta aliro por la aplikaĵo: nur-lege aŭ leg-skribe." #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Nuligi" +#, fuzzy +msgid "Cancel application changes." +msgstr "Konektita aplikaĵo" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Konservi" +#, fuzzy +msgid "Save application changes." +msgstr "Nova aplikaĵo" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7829,7 +7864,6 @@ msgid "Unable to find services for %s." msgstr "Maleble revoki aliradon al aplikaĵo: %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Forigi ŝatmarkon de ĉi tiu avizo" @@ -7839,8 +7873,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Malŝati ŝataton." +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Malsukcesis ricevi ŝataton." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Ŝati la avizon" @@ -7850,6 +7888,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Ŝati" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Malsukcesis ricevi ŝataton." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7909,8 +7952,8 @@ msgstr "Bloki" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloki ĉi tiun uzanton" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8056,10 +8099,13 @@ msgstr "Popularaj avizoj" msgid "Active groups" msgstr "Ĉiuj grupoj" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8203,8 +8249,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Forlasi" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Aplikoj kiujn vi enskribis" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8637,8 +8684,9 @@ msgid "Make Admin" msgstr "Estrigi" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Estrigi la uzanton" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8758,6 +8806,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8849,7 +8898,8 @@ msgid "Repeated by" msgstr "Ripetita de" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Respondi ĉi tiun avizon" #. TRANS: Link text in notice list item to reply to a notice. @@ -8857,8 +8907,9 @@ msgid "Reply" msgstr "Respondi" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Forigi la avizon" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Forviŝi ĉi tiun avizon." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8915,6 +8966,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Priskribo de grupo aŭ temo, apenaŭ je %d literoj" msgstr[1] "Priskribo de grupo aŭ temo, apenaŭ je %d literoj" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Konservi" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9823,7 +9878,6 @@ msgid "Unsilence this user" msgstr "Nesilentigi la uzanton" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Malaboni la uzanton" @@ -9834,6 +9888,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Malaboni" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Malaboni la uzanton" + #. 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 @@ -9951,6 +10010,15 @@ msgstr "Retpoŝta adreso ne valida" msgid "Could not find a valid profile for \"%s\"." msgstr "Malsukcesis konservi la profilon." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Etikedo" +#~ msgid "Save paths" +#~ msgstr "Konservi lokigilon" + +#~ msgid "Cancel" +#~ msgstr "Nuligi" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloki ĉi tiun uzanton" + +#~ msgid "Delete this notice" +#~ msgstr "Forigi la avizon" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index 67db7121a8..b415c9f17a 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:51+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:30+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -108,11 +108,12 @@ msgstr "Inhabilitar nuevos registros." msgid "Closed" msgstr "Cerrado" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Guardar la configuración de acceso" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -451,16 +452,19 @@ msgstr "Falló bloquear usuario." msgid "Unblock user failed." msgstr "Falló desbloquear usuario." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Conversación" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Conversación" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversación" @@ -1745,6 +1749,10 @@ msgstr "Confirmar la dirección" msgid "The address \"%s\" has been confirmed for your account." msgstr "La dirección \"%s\" fue confirmada para tu cuenta." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversación" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1820,7 +1828,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Introduzca «%s» para confirmar que desea eliminar su cuenta." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Eliminar permanentemente su cuenta" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2721,10 +2730,10 @@ msgstr "Configuración de mensajería instantánea" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Puedes enviar y recibir mensajes vía [mensajería instantána](%%doc.im%%) de " "Jabber/GTalk. Configura tu dirección y opciones abajo." @@ -3748,8 +3757,9 @@ msgid "Server to direct SSL requests to." msgstr "Servidor hacia el cual dirigir las solicitudes SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Guardar rutas" +#, fuzzy +msgid "Save path settings." +msgstr "Guardar la configuración del sitio" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5004,6 +5014,29 @@ msgstr "Reiniciar clave y secreto" msgid "Application info" msgstr "Información de la aplicación" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Token de solicitud inválido." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Token de acceso erróneo." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "La URL de origen" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5606,7 +5639,7 @@ msgstr "" "Texto del mensaje que va a lo ancho del sitio (máximo 255 caracteres; se " "acepta HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Guardar el mensaje del sitio" @@ -5809,7 +5842,7 @@ msgstr "Reportar URL" msgid "Snapshots will be sent to this URL." msgstr "Las capturas se enviarán a este URL" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Guardar la configuración de instantáneas" @@ -6241,7 +6274,7 @@ msgstr "Invitaciones habilitadas" msgid "Whether to allow users to invite new users." msgstr "Si permitir a los usuarios invitar nuevos usuarios." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Guardar la configuración del sitio" @@ -6466,8 +6499,9 @@ msgstr "No se pudo actualizar el grupo local." msgid "Could not create login token for %s" msgstr "No se pudo crear el token de acceso para %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "No se puede guardar la nueva contraseña." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7228,13 +7262,14 @@ msgstr "" "Acceso predeterminado para esta aplicación: sólo lectura o lectura-escritura" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Cancelar" +#, fuzzy +msgid "Cancel application changes." +msgstr "Aplicaciones conectadas" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Guardar" +#, fuzzy +msgid "Save application changes." +msgstr "Nueva aplicación" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7895,7 +7930,6 @@ msgid "Unable to find services for %s." msgstr "No se puede revocar el acceso para la aplicación: %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Excluir este mensaje de mis favoritos" @@ -7905,8 +7939,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Sacar favorito" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "No se pudo recibir avisos favoritos." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Incluir este mensaje en tus favoritos" @@ -7916,6 +7954,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Aceptar" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "No se pudo recibir avisos favoritos." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7976,8 +8019,8 @@ msgstr "Bloquear" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloquear a este usuario" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8125,11 +8168,14 @@ msgstr "Mensajes populares" msgid "Active groups" msgstr "Todos los grupos" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Ver más" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8272,8 +8318,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Abandonar" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Aplicaciones que has registrado" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8714,8 +8761,9 @@ msgid "Make Admin" msgstr "Convertir en administrador" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Convertir a este usuario en administrador" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8837,6 +8885,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8927,7 +8976,8 @@ msgid "Repeated by" msgstr "Repetido por" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Responder a este mensaje." #. TRANS: Link text in notice list item to reply to a notice. @@ -8935,8 +8985,9 @@ msgid "Reply" msgstr "Responder" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Borrar este mensaje" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Eliminar este mensaje" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8993,6 +9044,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Describir al grupo o tema en %d caracteres" msgstr[1] "Describir al grupo o tema en %d caracteres" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Guardar" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9902,7 +9957,6 @@ msgid "Unsilence this user" msgstr "Dejar de silenciar este usuario" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Desuscribirse de este usuario" @@ -9913,6 +9967,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancelar suscripción" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Desuscribirse de este usuario" + #. 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 @@ -10030,14 +10089,15 @@ msgstr "Correo electrónico no válido" msgid "Could not find a valid profile for \"%s\"." msgstr "No se pudo guardar el perfil." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Se ha producido un error importante, probablemente relacionado con la " -#~ "configuración de correo electrónico. Compruebe los archivos de registro " -#~ "para obtener más información." +#~ msgid "Save paths" +#~ msgstr "Guardar rutas" -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Etiqueta" +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloquear a este usuario" + +#~ msgid "Delete this notice" +#~ msgstr "Borrar este mensaje" diff --git a/locale/eu/LC_MESSAGES/statusnet.po b/locale/eu/LC_MESSAGES/statusnet.po index 9dab109cb7..c0ffb5300c 100644 --- a/locale/eu/LC_MESSAGES/statusnet.po +++ b/locale/eu/LC_MESSAGES/statusnet.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:53+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:31+0000\n" "Language-Team: Basque \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: eu\n" "X-Message-Group: #out-statusnet-core\n" @@ -97,11 +97,12 @@ msgstr "Ezgaitu izen-emate berriak." msgid "Closed" msgstr "Itxita" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Gorde atzipen-ezarpenak" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -438,16 +439,19 @@ msgstr "Erabiltzailea blokeatzeak huts egin du." msgid "Unblock user failed." msgstr "Erabiltzailea desblokeatzeak huts egin du." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Elkarrizketa" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Elkarrizketa" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Elkarrizketa" @@ -1727,6 +1731,10 @@ msgstr "Baieztatu helbidea" msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" helbidea baieztatua izan da zure kontuarentzako." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Elkarrizketa" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1802,7 +1810,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Sartu \"%s\" zure kontua ezabatu nahi duzula baieztatzeko." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Zure kontua behin betiko ezabatu" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2690,10 +2699,10 @@ msgstr "BM ezarpenak" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Berehalako mezularitzaren bidez bidal eta jaso ditzakezu oharrak [berehalako " "mezuak](%%doc.im%%). Konfiguratu zure helbidea eta ezarpenak azpian." @@ -3697,8 +3706,9 @@ msgid "Server to direct SSL requests to." msgstr "SSL eskariak bideratzeko zerbitzaria." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Gorde bideak" +#, fuzzy +msgid "Save path settings." +msgstr "Gorde gunearen ezarpenak." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4921,6 +4931,29 @@ msgstr "Berrezarri gakoa eta sekretua" msgid "Application info" msgstr "Aplikazioaren informazioa" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Token okerra." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Atzipen-token okerra." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Iturburu URLa" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5508,7 +5541,7 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" "Gune osoaren oharraren testua (gehienez 255 karaktere; HTMLa baimendua)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Gorde gunearen oharra." @@ -5701,7 +5734,7 @@ msgstr "Jakinarazpenetarako URLa" msgid "Snapshots will be sent to this URL." msgstr "URL honetara bidaliko dira kapturak." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Gorde gunearen ezarpenak." @@ -6113,7 +6146,7 @@ msgstr "Gonbidapenak gaituta" msgid "Whether to allow users to invite new users." msgstr "Onartu erabiltzaileek beste erabiltzaile batzuk gonbidatzea." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Gorde erabiltzailearen ezarpenak." @@ -6331,8 +6364,9 @@ msgstr "Ezin izan da talde lokala eguneratu." msgid "Could not create login token for %s" msgstr "Ezin izan da saioa hasteko tokena sortu %s(e)rako" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Ezin da pasahitz berria gorde." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7066,13 +7100,14 @@ msgstr "" "irakurri-idatzi" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Utzi" +#, fuzzy +msgid "Cancel application changes." +msgstr "Konektaturiko aplikazioak" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Gorde" +#, fuzzy +msgid "Save application changes." +msgstr "Aplikazio berria" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7708,7 +7743,6 @@ msgid "Unable to find services for %s." msgstr "Ezin izan dira %s(r)ako zerbitzuak aurkitu." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Gaitzetsi ohar hau" @@ -7717,8 +7751,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Gaitzetsi gogokoa" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Ezin izan dira gogoko oharrak eskuratu." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Onetsi ohar hau" @@ -7727,6 +7765,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Onetsi" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Ezin izan dira gogoko oharrak eskuratu." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7785,8 +7828,8 @@ msgstr "Blokeatu" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Blokeatu erabiltzaile hau" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7932,11 +7975,14 @@ msgstr "Talde ospetsuak" msgid "Active groups" msgstr "Talde aktiboak" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Erakutsi dena" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8077,8 +8123,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Utzi" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Erregistratu dituzun aplikazioak" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8495,8 +8542,9 @@ msgid "Make Admin" msgstr "Bihurtu administratzaile" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Bihurtu erabiltzaile hau administratzaile" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8612,6 +8660,7 @@ msgstr "Ez da ezaguna nola maneiatu behar diren mota honetako jomugak." msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "adaptNoticeListItem() edo showNotice() implementatu beharko zenuke." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8702,7 +8751,8 @@ msgid "Repeated by" msgstr "Errepikatzailea" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Erantzun ohar honi" #. TRANS: Link text in notice list item to reply to a notice. @@ -8710,8 +8760,9 @@ msgid "Reply" msgstr "Erantzun" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Ezabatu ohar hau" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Ezabatu ohar hau." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8759,6 +8810,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Deskribatu zerrenda edo gaia karaktere %dean." msgstr[1] "Deskribatu zerrenda edo gaia %d karakteretan." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Gorde" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Ezabatu zerrenda hau." @@ -9614,7 +9669,6 @@ msgid "Unsilence this user" msgstr "Kendu isiltasuna erabiltzaile honi" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Kendu erabiltzaile honekiko harpidetza" @@ -9624,6 +9678,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Kendu harpidetza" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Kendu erabiltzaile honekiko harpidetza" + #. 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). #, php-format @@ -9738,13 +9797,15 @@ msgstr "Ezin izan da baliozko webfinger-helbidea aurkitu." msgid "Could not find a valid profile for \"%s\"." msgstr "Ezin izan da baliozko profilik aurkitu \"%s\"(e)rako." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Errore garrantzitsua gertatu da, seguru asko posta elektronikoaren " -#~ "konfigurazioari lotuta. Begiratu egunkari-fitxategietan informazio " -#~ "gehiago jasotzeko." +#~ msgid "Save paths" +#~ msgstr "Gorde bideak" -#~ msgid "Tagged" -#~ msgstr "Etiketatuta" +#~ msgid "Cancel" +#~ msgstr "Utzi" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Blokeatu erabiltzaile hau" + +#~ msgid "Delete this notice" +#~ msgstr "Ezabatu ohar hau" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index dbadd68c98..ede9dcb758 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:33+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -29,9 +29,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.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" -"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -101,11 +101,12 @@ msgstr "غیر فعال کردن نام‌نوبسی تازه" msgid "Closed" msgstr "بسته‌شده" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "ذخیرهٔ تنظیمات دسترسی" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -436,16 +437,19 @@ msgstr "مسدود کردن کاربر شکست خورد." msgid "Unblock user failed." msgstr "باز کردن کاربر ناموفق بود." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "مکالمه" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "مکالمه" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "مکالمه" @@ -1753,6 +1757,10 @@ msgstr "تایید نشانی" msgid "The address \"%s\" has been confirmed for your account." msgstr "نشانی «%s« برای شما تصدیق شد." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "مکالمه" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1826,7 +1834,7 @@ msgstr "«%s» را برای تأیید اینکه می‌خواهید حساب #. TRANS: Button title for user account deletion. #, fuzzy -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "شما نمی‌توانید کاربران را پاک کنید." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2733,8 +2741,8 @@ msgstr "تنظیمات پیام‌رسان فوری" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "شما می‌توانید پیام‌های خود را با استفاده از [پیام‌رسان‌های](%%doc.im%%) Jabber " "یا Gtalk ارسال/دریافت کنید. نشانی خود را در این قسمت تنظیم کنید" @@ -3779,8 +3787,9 @@ msgid "Server to direct SSL requests to." msgstr "کارگزار برای هدایت درخواست‌های SSL به" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "نشانی ذخیره سازی" +#, fuzzy +msgid "Save path settings." +msgstr "ذخیرهٔ تنظیمات وب‌گاه" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5026,6 +5035,28 @@ msgstr "" msgid "Application info" msgstr "اطلاعات برنامه" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "رمز نامعتبر است." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "نشانی اینترنتی منبع" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5625,7 +5656,7 @@ msgstr "متن پیام وب‌گاه" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "متن پیام عمومی وب‌گاه (حداکثر ۲۵۵ نویسه؛ می‌توان از HTML استفاده کرد)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "ذخیرهٔ پیام وب‌گاه" @@ -5827,7 +5858,7 @@ msgstr "نشانی اینترنتی گزارش" msgid "Snapshots will be sent to this URL." msgstr "تصاویر لحظه‌ای به این نشانی اینترنتی فرستاده می‌شوند" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "ذخیرهٔ تنظیمات تصویر لحظه‌ای" @@ -6257,7 +6288,7 @@ msgstr "دعوت نامه ها فعال شدند" msgid "Whether to allow users to invite new users." msgstr "چنان‌که به کاربران اجازهٔ دعوت‌کردن کاربران تازه داده شود." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "ذخیرهٔ تنظیمات وب‌گاه" @@ -6475,8 +6506,9 @@ msgstr "نمی‌توان گروه محلی را به‌هنگام‌سازی ک msgid "Could not create login token for %s" msgstr "نمی‌توان رمز ورود را برای %s ایجاد کرد" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "نمی‌توان گذرواژهٔ جدید را ذخیره کرد." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7231,13 +7263,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "دسترسی پیش‌فرض برای این برنامه: تنها خواندنی یا خواندن-نوشتن" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "انصراف" +#, fuzzy +msgid "Cancel application changes." +msgstr "برنامه‌های وصل‌شده" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "ذخیره‌کردن" +#, fuzzy +msgid "Save application changes." +msgstr "برنامهٔ تازه" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7894,7 +7927,6 @@ msgid "Unable to find services for %s." msgstr "نمی‌توان دسترسی را برای برنامهٔ %s لغو کرد." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "خارج‌کردن این پیام از برگزیده‌ها" @@ -7904,8 +7936,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "خارج‌کردن از برگزیده‌ها" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "نمی‌توان پیام‌های برگزیده را دریافت کرد." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "برگزیده‌کردن این پیام" @@ -7915,6 +7951,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "برگزیده‌کردن" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "نمی‌توان پیام‌های برگزیده را دریافت کرد." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" @@ -7976,8 +8017,8 @@ msgstr "" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "بستن کاربر" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8119,10 +8160,13 @@ msgstr "پیام‌های برگزیده" msgid "Active groups" msgstr "تمام گروه‌ها" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8263,8 +8307,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "ترک کردن" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "برنامه‌هایی که ثبت کرده‌اید" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8700,8 +8745,9 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "کاربر را مدیر کن" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8821,6 +8867,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8912,7 +8959,8 @@ msgid "Repeated by" msgstr "تکرار از" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "به این پیام پاسخ دهید" #. TRANS: Link text in notice list item to reply to a notice. @@ -8920,7 +8968,8 @@ msgid "Reply" msgstr "پاسخ" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "این پیام را پاک کن" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8976,6 +9025,10 @@ msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." msgstr[0] "گروه یا موضوع را در %d نویسه توصیف کنید" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "ذخیره‌کردن" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9882,7 +9935,6 @@ msgid "Unsilence this user" msgstr "این کاربر از حالت سکوت خارج شود" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "لغو مشترک‌شدن از این کاربر" @@ -9893,6 +9945,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "لغو اشتراک" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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 @@ -10006,6 +10063,15 @@ msgstr "یک نشانی پست الکترونیکی معتبر نیست." msgid "Could not find a valid profile for \"%s\"." msgstr "نمی‌توان نمایه را ذخیره کرد." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "برچسب" +#~ msgid "Save paths" +#~ msgstr "نشانی ذخیره سازی" + +#~ msgid "Cancel" +#~ msgstr "انصراف" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "بستن کاربر" + +#~ msgid "Delete this notice" +#~ msgstr "این پیام را پاک کن" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 5db1b39a5a..03243313dd 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:56+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:34+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, fuzzy, php-format @@ -102,11 +102,12 @@ msgstr "Estä uusien käyttäjien rekisteröityminen." msgid "Closed" msgstr "Suljettu" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Tallenna käyttöoikeusasetukset" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -444,16 +445,19 @@ msgstr "Käyttäjän esto epäonnistui." msgid "Unblock user failed." msgstr "Käyttäjän eston poisto epäonnistui." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Keskustelu" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Keskustelu" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Keskustelu" @@ -1732,6 +1736,10 @@ msgstr "Tämän hetken vahvistettu sähköpostiosoite." msgid "The address \"%s\" has been confirmed for your account." msgstr "Osoite \"%s\" on vahvistettu sinun käyttäjätunnuksellesi." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Keskustelu" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1807,7 +1815,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Kirjoita ”%s”, jos haluat todella poistaa käyttäjätilisi." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Poista käyttäjätilini lopullisesti" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2692,8 +2701,8 @@ msgstr "Profiilikuva-asetukset" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Voit lähettää ja vastaanottaa päivityksiä Jabber/GTalk-[pikaviestintä](%%doc." "im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " @@ -3719,8 +3728,9 @@ msgid "Server to direct SSL requests to." 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" -msgstr "Tallenna polut" +#, fuzzy +msgid "Save path settings." +msgstr "Profiilikuva-asetukset" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4965,6 +4975,28 @@ msgstr "" msgid "Application info" msgstr "" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Virheellinen pyyntötunniste." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Lähdekoodi" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5536,7 +5568,7 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" "Kaikilla sivuilla näkyvä ilmoitusteksti (enintään 255 merkkiä; HTML sallittu)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Tallenna ilmoitus." @@ -5735,7 +5767,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Profiilikuva-asetukset" @@ -6164,7 +6196,7 @@ msgstr "Kutsu(t) lähetettiin" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Profiilikuva-asetukset" @@ -6372,8 +6404,9 @@ msgstr "Ei voitu päivittää ryhmää." msgid "Could not create login token for %s" msgstr "Ei voitu lisätä aliasta." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Uutta salasanaa ei voida tallentaa." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7116,13 +7149,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Peruuta" +#, fuzzy +msgid "Cancel application changes." +msgstr "Poista sovellus" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Tallenna" +#, fuzzy +msgid "Save application changes." +msgstr "Uusi sovellus" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7783,7 +7817,6 @@ msgid "Unable to find services for %s." msgstr "Käytä tätä lomaketta muokataksesi ryhmää." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Poista tämä päivitys suosikeista" @@ -7792,8 +7825,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Poista suosikeista" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Ei saatu haettua suosikkipäivityksiä." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Merkitse päivitys suosikkeihin" @@ -7802,6 +7839,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Lisää suosikiksi" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Ei saatu haettua suosikkipäivityksiä." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7862,8 +7904,8 @@ msgstr "Estä" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Estä tämä käyttäjä" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8008,11 +8050,14 @@ msgstr "Suositut ryhmät" msgid "Active groups" msgstr "Aktiiviset ryhmät" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Näytä kaikki" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8153,8 +8198,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Eroa" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Rekisteröimäsi sovellukset" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8507,8 +8553,9 @@ msgid "Make Admin" msgstr "Tee ylläpitäjäksi" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Tee tästä käyttäjästä ylläpitäjä" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8627,6 +8674,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8720,7 +8768,8 @@ msgid "Repeated by" msgstr "Luotu" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Vastaa tähän päivitykseen" #. TRANS: Link text in notice list item to reply to a notice. @@ -8728,8 +8777,9 @@ 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" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Poista tämä päivitys." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8786,6 +8836,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" msgstr[1] "Kuvaile itseäsi ja kiinnostuksen kohteitasi %d merkillä" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Tallenna" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9670,7 +9724,6 @@ msgid "Unsilence this user" msgstr "Poista tämän käyttäjän hiljennys" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Peruuta tämän käyttäjän tilaus" @@ -9681,6 +9734,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Peruuta tilaus" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Peruuta tämän käyttäjän tilaus" + #. 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 @@ -9798,12 +9856,15 @@ msgstr "Tuo ei ole kelvollinen sähköpostiosoite." msgid "Could not find a valid profile for \"%s\"." msgstr "Profiilin tallennus epäonnistui." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Tapahtui kriittinen virhe todennäköisesti liittyen sähköpostiasetuksiin. " -#~ "Tarkista logitiedostot saadaksesi lisätietoja." +#~ msgid "Save paths" +#~ msgstr "Tallenna polut" -#~ msgid "Tagged" -#~ msgstr "Tagatty" +#~ msgid "Cancel" +#~ msgstr "Peruuta" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Estä tämä käyttäjä" + +#~ msgid "Delete this notice" +#~ msgstr "Poista tämä päivitys" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index e9624f7a00..d68e20ba5d 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -29,17 +29,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:58+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -114,11 +114,12 @@ msgstr "Désactiver les nouvelles inscriptions." msgid "Closed" msgstr "Fermé" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Sauvegarder les paramètres d’accès" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -458,15 +459,19 @@ msgstr "Le blocage de l’utilisateur a échoué." msgid "Unblock user failed." msgstr "Le déblocage de l’utilisateur a échoué." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "aucun ID de conversation" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "Aucune conversation avec l’ID %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversation" @@ -1773,6 +1778,10 @@ msgstr "Confirmer l’adresse" msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adresse \"%s\" a été validée pour votre compte." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversation" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1849,7 +1858,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Entrez « %s » pour confirmer que vous souhaitez supprimer votre compte." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Supprimer définitivement votre compte" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2741,8 +2751,8 @@ msgstr "Paramètres de messagerie instantanée" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Vous pouvez envoyer et recevoir des messages via [la messagerie instantanée]" "(%%doc.im%%) Jabber/GTalk. Configurez votre adresse et vos paramètres ci-" @@ -3772,8 +3782,9 @@ msgid "Server to direct SSL requests to." msgstr "Serveur vers lequel diriger les requêtes SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Enregistrer les chemins." +#, fuzzy +msgid "Save path settings." +msgstr "Sauvegarder les paramètres du site" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5011,6 +5022,29 @@ msgstr "Réinitialiser la clé et le secret" msgid "Application info" msgstr "Informations sur l’application" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Jeton de requête incorrect." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Jeton d’accès erroné." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL source" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5611,7 +5645,7 @@ msgstr "" "Texte de l’avis publié sur l’ensemble du site (maximum 255 caractères ; HTML " "autorisé)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Enregistrer l'avis du site" @@ -5813,7 +5847,7 @@ msgstr "URL de rapport" msgid "Snapshots will be sent to this URL." msgstr "Les instantanés seront envoyés à cette URL" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Sauvegarder les paramètres des instantanés" @@ -6241,7 +6275,7 @@ msgid "Whether to allow users to invite new users." msgstr "" "S’il faut autoriser les utilisateurs à inviter de nouveaux utilisateurs." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Sauvegarder les paramètres utilisateur" @@ -6464,8 +6498,9 @@ msgstr "Impossible de mettre à jour le groupe local." msgid "Could not create login token for %s" msgstr "Impossible de créer le jeton d’identification pour %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Impossible d’enregistrer nouveau mot de passe." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7215,13 +7250,14 @@ msgstr "" "écriture" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Annuler" +#, fuzzy +msgid "Cancel application changes." +msgstr "Applications connectées." #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Enregistrer" +#, fuzzy +msgid "Save application changes." +msgstr "Nouvelle application" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7884,7 +7920,6 @@ msgid "Unable to find services for %s." msgstr "Impossible de révoquer l’accès par l’application : %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Retirer des favoris" @@ -7894,8 +7929,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Retirer ce favori" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Impossible d’afficher les favoris." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Ajouter aux favoris" @@ -7905,6 +7944,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Ajouter à mes favoris" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Impossible d’afficher les favoris." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7965,8 +8009,8 @@ msgstr "Bloquer" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloquer cet utilisateur" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -8114,11 +8158,14 @@ msgstr "Avis populaires" msgid "Active groups" msgstr "Tous les groupes" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Voir davantage" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8260,8 +8307,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Quitter" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Applications que vous avez enregistré" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8701,8 +8749,9 @@ msgid "Make Admin" msgstr "Rendre administrateur" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Faire de cet utilisateur un administrateur" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8823,6 +8872,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8913,7 +8963,8 @@ msgid "Repeated by" msgstr "Repris par" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Répondre à cet avis" #. TRANS: Link text in notice list item to reply to a notice. @@ -8921,8 +8972,9 @@ msgid "Reply" msgstr "Répondre" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Supprimer cet avis" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Supprimer cet avis." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8979,6 +9031,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Description du groupe ou du sujet, en %d caractère ou moins" msgstr[1] "Description du groupe ou du sujet, en %d caractères ou moins" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Enregistrer" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9869,7 +9925,6 @@ msgid "Unsilence this user" msgstr "Sortir cet utilisateur du silence" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Ne plus suivre cet utilisateur" @@ -9880,6 +9935,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Désabonnement" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Ne plus suivre cet utilisateur" + #. 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). #, php-format @@ -9997,14 +10057,15 @@ msgstr "Adresse courriel invalide." msgid "Could not find a valid profile for \"%s\"." msgstr "Impossible d’enregistrer le profil." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Une erreur importante s'est produite, probablement liées à la " -#~ "configuration du courriel. Vérifiez les fichiers journaux pour plus " -#~ "d'infos." +#~ msgid "Save paths" +#~ msgstr "Enregistrer les chemins." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Marque" +#~ msgid "Cancel" +#~ msgstr "Annuler" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloquer cet utilisateur" + +#~ msgid "Delete this notice" +#~ msgstr "Supprimer cet avis" diff --git a/locale/fur/LC_MESSAGES/statusnet.po b/locale/fur/LC_MESSAGES/statusnet.po index b8775b8dec..e8a26bbf20 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:59+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:37+0000\n" "Language-Team: Friulian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fur\n" "X-Message-Group: #out-statusnet-core\n" @@ -92,11 +92,12 @@ msgstr "Disative lis gnovis regjistrazions." msgid "Closed" msgstr "Sierât" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Salve lis impuestazions di acès" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -424,15 +425,19 @@ msgstr "" msgid "Unblock user failed." msgstr "" -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "nissun id de tabaiade" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "nissun id de tabaiade" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Tabaiade" @@ -1699,6 +1704,10 @@ msgstr "Conferme la direzion" msgid "The address \"%s\" has been confirmed for your account." msgstr "La direzion \"%s\" e je stade confermade pe tô identitât." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Tabaiade" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1772,7 +1781,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Inserìs \"%s\" par confermâ che tu vuelis eliminâ la tô identitât." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Elimine par simpri la tô identitât" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2634,10 +2644,10 @@ msgstr "Impuestazions IM" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Tu puedis mandâ e ricevi avîs par mieç di [messaçs istantaniis](%%doc.im%%). " "Configure ca sot la tô direzion e lis impuestazions." @@ -3621,8 +3631,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "" +#, fuzzy +msgid "Save path settings." +msgstr "Salve lis impuestazions dal sît." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4801,6 +4812,26 @@ msgstr "" msgid "Application info" msgstr "" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Request token URL" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Authorize URL" +msgstr "" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5373,7 +5404,7 @@ msgstr "" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "" @@ -5560,7 +5591,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "" @@ -5969,7 +6000,7 @@ msgstr "Invîts ativâts" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Salve lis impuestazions dal utent" @@ -6177,7 +6208,9 @@ msgstr "" msgid "Could not create login token for %s" msgstr "" -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "No si pues istanziâ la clas" #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6893,13 +6926,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Scancele" +#, fuzzy +msgid "Cancel application changes." +msgstr "Aplicazions conetudis" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Salve" +#, fuzzy +msgid "Save application changes." +msgstr "Gnove aplicazion" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7535,7 +7569,6 @@ msgid "Unable to find services for %s." msgstr "" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Gjave dai preferîts chest avîs" @@ -7544,8 +7577,11 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Gjave dai preferîts" +#. TRANS: Button title for removing the favourite status for a favourite notice. +msgid "Remove this notice from your list of favorite notices." +msgstr "" + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Preferìs chest avîs" @@ -7554,6 +7590,10 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Preferìs" +#. TRANS: Button title for adding the favourite status to a notice. +msgid "Add this notice to your list of favorite notices." +msgstr "" + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7612,8 +7652,8 @@ msgstr "Bloche" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloche chest utent" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7751,10 +7791,13 @@ msgstr "Grups popolârs" msgid "Active groups" msgstr "Grups atîfs" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "Viôt dut" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -7891,7 +7934,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Lasse" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#, fuzzy +msgid "See all lists you have created." msgstr "Cjale dutis lis listis che tu âs creât" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8227,9 +8272,10 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" +msgid "Make this user an admin." +msgstr "Bloche chest utent" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8341,6 +8387,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "Plui ▼" @@ -8431,7 +8478,8 @@ msgid "Repeated by" msgstr "Ripetût di" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Rispuint a chest avîs" #. TRANS: Link text in notice list item to reply to a notice. @@ -8439,7 +8487,8 @@ msgid "Reply" msgstr "Rispuint" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Elimine chest avîs" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8488,6 +8537,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Descrîf la liste o l'argoment in %d caratar o mancul." msgstr[1] "Descrîf la liste o l'argoment in %d caratars o mancul." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Salve" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Elimine cheste liste" @@ -9326,7 +9379,6 @@ msgid "Unsilence this user" msgstr "No stâ plui fâ tasê chest utent" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Anule la sotscrizion a chest utent" @@ -9336,6 +9388,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Anule la sotscrizion" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Anule la sotscrizion a chest utent" + #. 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). #, php-format @@ -9451,5 +9508,12 @@ msgstr "La direzion di pueste eletroniche no je valide." msgid "Could not find a valid profile for \"%s\"." msgstr "No si à podût cjatâ un profîl valit par \"%s\"," -#~ msgid "Tagged" -#~ msgstr "Etichetât" +#~ msgid "Cancel" +#~ msgstr "Scancele" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloche chest utent" + +#~ msgid "Delete this notice" +#~ msgstr "Elimine chest avîs" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 54e946fd6b..b3514868c5 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:01+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:39+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -91,11 +91,12 @@ msgstr "Desactivar os novos rexistros." msgid "Closed" msgstr "Pechado" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Gardar a configuración de acceso" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -431,16 +432,19 @@ msgstr "Non se puido bloquear o usuario." msgid "Unblock user failed." msgstr "Non se puido desbloquear o usuario." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Conversa" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Conversa" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversa" @@ -1748,6 +1752,10 @@ msgstr "Confirmar o enderezo" msgid "The address \"%s\" has been confirmed for your account." msgstr "Confirmouse o enderezo \"%s\" para a súa conta." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversa" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1825,7 +1833,7 @@ msgstr "Non pode borrar usuarios." #. TRANS: Button title for user account deletion. #, fuzzy -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "Non pode borrar usuarios." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2735,8 +2743,8 @@ msgstr "Configuración da mensaxería instantánea" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Pode enviar e recibir notas mediante [mensaxes instantáneas](%%doc.im%%) de " "Jabber/GTalk. Configure a continuación o seu enderezo e preferencias." @@ -3792,8 +3800,9 @@ msgid "Server to direct SSL requests to." msgstr "Servidor ao que dirixir as solicitudes SSL" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Gardar as rutas" +#, fuzzy +msgid "Save path settings." +msgstr "Gardar a configuración do sitio" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5054,6 +5063,29 @@ msgstr "Restablecer o contrasinal ou a pregunta secreta" msgid "Application info" msgstr "Información da aplicación" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Pase de solicitude incorrecto." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Pase de acceso incorrecto." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL de orixe" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5660,7 +5692,7 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" "Texto da nota global do sitio (255 caracteres como máximo, pode conter HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Gardar a nota do sitio" @@ -5864,7 +5896,7 @@ msgstr "URL de envío" msgid "Snapshots will be sent to this URL." msgstr "As instantáneas enviaranse a este URL" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Gardar a configuración das instantáneas" @@ -6298,7 +6330,7 @@ msgstr "Activáronse as invitacións" msgid "Whether to allow users to invite new users." msgstr "Permitir ou non que os usuarios poidan invitar a novos usuarios." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Gardar a configuración do usuario" @@ -6521,8 +6553,9 @@ msgstr "Non se puido actualizar o grupo local." msgid "Could not create login token for %s" msgstr "Non se puido crear un pase de sesión para %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Non se puido gardar o novo contrasinal." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7286,13 +7319,14 @@ msgstr "" "Permisos por defecto para esta aplicación: lectura ou lectura e escritura" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Cancelar" +#, fuzzy +msgid "Cancel application changes." +msgstr "Aplicacións conectadas" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Gardar" +#, fuzzy +msgid "Save application changes." +msgstr "Aplicación nova" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7957,7 +7991,6 @@ msgid "Unable to find services for %s." msgstr "Non se puido revogar o acceso da aplicación: %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Desmarcar esta nota como favorita" @@ -7967,8 +8000,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Desmarcar como favorita" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Non se puideron obter as notas favoritas." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Marcar esta nota como favorita" @@ -7978,6 +8015,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Marcar como favorito" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Non se puideron obter as notas favoritas." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -8038,8 +8080,8 @@ msgstr "Bloquear" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloquear este usuario" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8189,11 +8231,14 @@ msgstr "Notas populares" msgid "Active groups" msgstr "Todos os grupos" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Mostrar máis" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8336,8 +8381,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Deixar" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Aplicacións que rexistrou" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8769,8 +8815,9 @@ msgid "Make Admin" msgstr "Converter en administrador" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Converter a este usuario en administrador" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8889,6 +8936,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8980,7 +9028,8 @@ msgid "Repeated by" msgstr "Repetida por" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Responder a esta nota" #. TRANS: Link text in notice list item to reply to a notice. @@ -8988,7 +9037,8 @@ msgid "Reply" msgstr "Responder" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Borrar esta nota" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -9046,6 +9096,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Describa o grupo ou o tema en %d caracteres" msgstr[1] "Describa o grupo ou o tema en %d caracteres" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Gardar" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9929,7 +9983,6 @@ msgid "Unsilence this user" msgstr "Darlle voz a este usuario" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Cancelar a subscrición a este usuario" @@ -9940,6 +9993,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancelar a subscrición" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Cancelar a subscrición a este usuario" + #. 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). #, php-format @@ -10057,5 +10115,15 @@ msgstr "O enderezo de correo electrónico é incorrecto." msgid "Could not find a valid profile for \"%s\"." msgstr "Non se puido gardar o perfil." -#~ msgid "Tagged" -#~ msgstr "Etiquetado" +#~ msgid "Save paths" +#~ msgstr "Gardar as rutas" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloquear este usuario" + +#~ msgid "Delete this notice" +#~ msgstr "Borrar esta nota" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 8f245ab6db..2d50876aa7 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:40+0000\n" "Language-Team: Hebrew \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -92,11 +92,12 @@ msgstr "לא לאפשר הרשמות חדשות." msgid "Closed" msgstr "סגורה" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "שמירת הגדרות גישה" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -425,15 +426,19 @@ msgstr "חסימת משתמש נכשלה." msgid "Unblock user failed." msgstr "הסרת החסימה ממשתמש נכשלה." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "אין מזהה שיחה" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "אין שיחה עם מזהה %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "שיחה" @@ -1686,6 +1691,10 @@ msgstr "אשר" msgid "The address \"%s\" has been confirmed for your account." msgstr "הכתובת \"%s\" אושרה עבור חשבונך." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "שיחה" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1755,7 +1764,7 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "" #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2603,8 +2612,8 @@ msgstr "הגדרות הפרופיל" #. TRANS: the order and formatting of link text and link should remain unchanged. #, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. @@ -3578,8 +3587,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "שמירת נתיבים" +#, fuzzy +msgid "Save path settings." +msgstr "שמירת הגדרות אתר." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4707,6 +4717,28 @@ msgstr "" msgid "Application info" msgstr "" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "אסימון בקשה בלתי־תקין." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "כתובת המקור" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5252,7 +5284,7 @@ msgstr "טקסט ההודעה לאתר" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "" @@ -5440,7 +5472,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "" @@ -5836,7 +5868,7 @@ msgstr "" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "" @@ -6036,7 +6068,9 @@ msgstr "לא הצליח עדכון קבוצה מקומית." msgid "Could not create login token for %s" msgstr "לא הצליחה יצירת אסימון התחברות עבור %s" -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, php-format +msgid "Cannot instantiate class %s." msgstr "" #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6748,13 +6782,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "בטל" +#, fuzzy +msgid "Cancel application changes." +msgstr "מחיקת יישום" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "שמור" +#, fuzzy +msgid "Save application changes." +msgstr "מחיקת יישום" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7379,7 +7414,6 @@ msgid "Unable to find services for %s." msgstr "" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "" @@ -7388,8 +7422,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "אחזור עדכונים אהובים לא הצליח." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "לאהוב את העדכון הזה" @@ -7398,6 +7436,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "אחזור עדכונים אהובים לא הצליח." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" @@ -7456,7 +7499,7 @@ msgstr "" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" +msgid "Block this user so that they can no longer post messages to it." msgstr "" #. TRANS: Field title on group edit form. @@ -7595,10 +7638,13 @@ msgstr "" msgid "Active groups" msgstr "" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -7735,7 +7781,8 @@ msgctxt "BUTTON" msgid "Leave" msgstr "" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +msgid "See all lists you have created." msgstr "" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8066,9 +8113,10 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" +msgid "Make this user an admin." +msgstr "לחסום את המשתמש הזה." #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8180,6 +8228,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8268,16 +8317,18 @@ msgid "Repeated by" msgstr "הודהד על־ידי" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" -msgstr "" +#, fuzzy +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 "" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "למחוק את העדכון הזה." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8325,6 +8376,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "" msgstr[1] "" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "שמור" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "" @@ -9159,7 +9214,6 @@ msgid "Unsilence this user" msgstr "לבטל את השתקת המשתמש הזה" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "לבטל את הרישום למשתמש הזה" @@ -9169,6 +9223,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "ביטול מינוי" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9283,9 +9342,8 @@ msgstr "זאת לא כתובת ובפינגר תקינה." msgid "Could not find a valid profile for \"%s\"." msgstr "לא נמצא דף משתמש תקין עבור \"%s\"." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "אירעה שגיאה חשובה, שכנראה קשורה להגדרות דואר אלקטרוני. חפשו מידע נוסף " -#~ "בקובצי יומן." +#~ msgid "Save paths" +#~ msgstr "שמירת נתיבים" + +#~ msgid "Cancel" +#~ msgstr "בטל" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index cf5a5d04d3..1d02ca9b3f 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:04+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:42+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -93,11 +93,12 @@ msgstr "Nowe registrowanja znjemóžnić." msgid "Closed" msgstr "Začinjeny" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Přistupne nastajenja składować" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -425,16 +426,19 @@ msgstr "Blokowanje wužiwarja je so njeporadźiło." msgid "Unblock user failed." msgstr "Wotblokowanje wužiwarja je so njeporadźiło." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Konwersacija" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Konwersacija" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Konwersacija" @@ -1713,6 +1717,10 @@ msgstr "Adresu wobkrućić" msgid "The address \"%s\" has been confirmed for your account." msgstr "Adresa \"%s\" bu za twoje konto wobkrućena." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Konwersacija" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1786,7 +1794,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Zapodaj \"%s\", zo by wobkrućił, zo chceš swoje konto zhašeć." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Twoje konto na přeco zhašeć" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2640,8 +2649,8 @@ msgstr "IM-nastajenja" #. TRANS: the order and formatting of link text and link should remain unchanged. #, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. @@ -3644,8 +3653,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Šćežki składować" +#, fuzzy +msgid "Save path settings." +msgstr "Sydłowe nastajenja składować" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4814,6 +4824,28 @@ msgstr "" msgid "Application info" msgstr "Aplikaciske informacije" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Njepłaćiwy token." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL žórła" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5374,7 +5406,7 @@ msgstr "Tekst sydłoweje zdźělenki" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Sydłowu zdźělenku składować." @@ -5565,7 +5597,7 @@ msgstr "URL rozprawy" msgid "Snapshots will be sent to this URL." msgstr "Njejapke fotki budu so do tutoho URL słać." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Nastajenja wobrazowkoweho fota składować" @@ -5981,7 +6013,7 @@ msgstr "Přeprošenja zmóžnjene" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Wužiwarske nastajenja składować." @@ -6191,8 +6223,9 @@ msgstr "Lokalna skupina njeda so aktualizować." msgid "Could not create login token for %s" msgstr "Njeje móžno było, přizjewjenske znamješko za %s wutworić" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Nowe hesło njeda so składować." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6932,13 +6965,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Přetorhnyć" +#, fuzzy +msgid "Cancel application changes." +msgstr "Zwjazane aplikacije" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Składować" +#, fuzzy +msgid "Save application changes." +msgstr "Nowa aplikacija" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7612,7 +7646,6 @@ msgid "Unable to find services for %s." msgstr "Njemóžno słužby za %s namakać." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Tutu zdźělenku z faworitow wotstronić" @@ -7621,8 +7654,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Z faworitow wotstronić" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Preferowane zdźělenki njedadźa so wobstarać." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Tutu zdźělenku faworitam přidać" @@ -7631,6 +7668,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Faworit" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Preferowane zdźělenki njedadźa so wobstarać." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7691,8 +7733,8 @@ msgstr "Blokować" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Tutoho wužiwarja blokować" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7842,11 +7884,14 @@ msgstr "Woblubowane zdźělenki" msgid "Active groups" msgstr "Wšě skupiny" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Wjace pokazać" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -7996,8 +8041,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Wopušćić" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Aplikacije, za kotrež sy zregistrował" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8336,8 +8382,9 @@ msgid "Make Admin" msgstr "K administratorej činić" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Tutoho wužiwarja k administratorej činić" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8458,6 +8505,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8549,7 +8597,8 @@ msgid "Repeated by" msgstr "Wospjetowany wot" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Na tutu zdźělenku wotmołwić" #. TRANS: Link text in notice list item to reply to a notice. @@ -8557,8 +8606,9 @@ 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ć" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Tutu zdźělenku zhašeć." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8614,6 +8664,10 @@ msgstr[1] "Skupinu abo temu w %d znamješkomaj abo mjenje wopisać" msgstr[2] "Skupinu abo temu w %d znamješkach abo mjenje wopisać" msgstr[3] "Skupinu abo temu w %d znamješkach abo mjenje wopisać" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Składować" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9515,7 +9569,6 @@ msgid "Unsilence this user" msgstr "Tutoho wužiwarja wotprancować" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Tutoho wužiwarja wotskazać" @@ -9526,6 +9579,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Wotskazać" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Tutoho wužiwarja wotskazać" + #. 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). #, php-format @@ -9650,3 +9708,16 @@ msgstr "Njepłaćiwa e-mejlowa adresa." #, fuzzy, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "Profil njeje so składować dał." + +#~ msgid "Save paths" +#~ msgstr "Šćežki składować" + +#~ msgid "Cancel" +#~ msgstr "Přetorhnyć" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Tutoho wužiwarja blokować" + +#~ msgid "Delete this notice" +#~ msgstr "Tutu zdźělenku wušmórnyć" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 4c4fd0800a..f01145be05 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:05+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:44+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -94,11 +94,12 @@ msgstr "Új regisztrációk tiltása." msgid "Closed" msgstr "Zárva" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Hozzáférések beállításainak mentése" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -428,16 +429,19 @@ msgstr "Nem sikerült a felhasználó blokkolása." msgid "Unblock user failed." msgstr "Nem sikerült a felhasználó blokkjának feloldása." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Beszélgetés" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Beszélgetés" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Beszélgetés" @@ -1739,6 +1743,10 @@ msgstr "Cím ellenőrzése" msgid "The address \"%s\" has been confirmed for your account." msgstr "A(z) „%s” cím meg van erősítve a fiókodhoz." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Beszélgetés" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1816,7 +1824,7 @@ msgstr "Nem törölhetsz felhasználókat." #. TRANS: Button title for user account deletion. #, fuzzy -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "Nem törölhetsz felhasználókat." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2707,8 +2715,8 @@ msgstr "IM beállítások" #. TRANS: the order and formatting of link text and link should remain unchanged. #, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. @@ -3737,8 +3745,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Elérési útvonalak mentése" +#, fuzzy +msgid "Save path settings." +msgstr "Mentsük el a webhely beállításait" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4927,6 +4936,29 @@ msgstr "" msgid "Application info" msgstr "" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Érvénytelen kéréstoken." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Hibás hozzáférési token." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "A forrás URL-címe" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5498,7 +5530,7 @@ msgstr "" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "A webhely híre" @@ -5690,7 +5722,7 @@ msgstr "URL jelentése" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Mentsük el a webhely beállításait" @@ -6096,7 +6128,7 @@ msgstr "A meghívások engedélyezve vannak" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Mentsük el a webhely beállításait" @@ -6301,8 +6333,9 @@ msgstr "Nem sikerült frissíteni a helyi csoportot." msgid "Could not create login token for %s" msgstr "Nem sikerült létrehozni %s bejelentkezési tokenjét." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Nem sikerült elmenteni az új jelszót." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7038,13 +7071,14 @@ msgstr "" "Az alkalmazás alapvető hozzáférési módja: csak olvasás, vagy írás és olvasás" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Mégse" +#, fuzzy +msgid "Cancel application changes." +msgstr "Összekapcsolt alkalmazások" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Mentés" +#, fuzzy +msgid "Save application changes." +msgstr "Új alkalmazás" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7691,7 +7725,6 @@ msgid "Unable to find services for %s." msgstr "" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Nem kedvelem ezt a hírt" @@ -7701,8 +7734,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Kedvenc eltávolítása" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Nem sikerült a kedvenc híreket lekérni." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Kedvelem ezt a hírt" @@ -7712,6 +7749,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Kedvelem" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Nem sikerült a kedvenc híreket lekérni." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7772,8 +7814,8 @@ msgstr "Blokkolás" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Felhasználó blokkolása" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -7921,11 +7963,14 @@ msgstr "Népszerű csoportok" msgid "Active groups" msgstr "Aktív csoportok" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Összes megjelenítése" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8067,8 +8112,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Távozzunk" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Általad regisztrált alkalmazások" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8471,9 +8517,10 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" +msgid "Make this user an admin." +msgstr "A felhasználó legyen a csoport kezelője" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8590,6 +8637,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8679,7 +8727,8 @@ msgid "Repeated by" msgstr "Megismételte:" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Válaszoljunk erre a hírre" #. TRANS: Link text in notice list item to reply to a notice. @@ -8687,7 +8736,8 @@ msgid "Reply" msgstr "Válasz" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Töröljük ezt a hírt" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8739,6 +8789,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "" msgstr[1] "" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Mentés" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "A lista törlése." @@ -9628,7 +9682,6 @@ msgid "Unsilence this user" msgstr "" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "" @@ -9639,6 +9692,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Kövessük" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Ezen felhasználók híreire már feliratkoztál:" + #. 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 @@ -9756,5 +9814,15 @@ msgstr "Érvénytelen email cím." msgid "Could not find a valid profile for \"%s\"." msgstr "Nem sikerült menteni a profilt." -#~ msgid "Tagged" -#~ msgstr "Címkézve" +#~ msgid "Save paths" +#~ msgstr "Elérési útvonalak mentése" + +#~ msgid "Cancel" +#~ msgstr "Mégse" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Felhasználó blokkolása" + +#~ msgid "Delete this notice" +#~ msgstr "Töröljük ezt a hírt" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index 9a8f1143e6..9ad51bd3b5 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:07+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:45+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -94,11 +94,12 @@ msgstr "Disactivar le creation de nove contos." msgid "Closed" msgstr "Claudite" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Salveguardar configurationes de accesso" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -434,15 +435,19 @@ msgstr "Le blocada del usator ha fallite." msgid "Unblock user failed." msgstr "Le disblocada del usator ha fallite." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "nulle ID de conversation" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "Il non ha un conversation con ID %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversation" @@ -1728,6 +1733,10 @@ msgstr "Confirmar adresse" msgid "The address \"%s\" has been confirmed for your account." msgstr "Le adresse \"%s\" ha essite confirmate pro tu conto." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversation" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1801,7 +1810,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Entra \"%s\" pro confirmar que tu vole deler tu conto." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Deler permanentemente tu conto" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2684,10 +2694,10 @@ msgstr "Configuration de messageria instantanee" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Tu pote inviar e reciper notas per [messageria instantanee](%%doc.im%%). " "Configura tu adresse e parametros hic infra." @@ -3690,8 +3700,9 @@ msgid "Server to direct SSL requests to." msgstr "Servitor verso le qual diriger le requestas SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Salveguardar camminos" +#, fuzzy +msgid "Save path settings." +msgstr "Salveguardar configurationes del sito." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3819,7 +3830,7 @@ msgstr "Ir" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3830,8 +3841,8 @@ msgstr "" "Istes es listas create per **%s**. Le listas es le medio de classificar " "personas similar in %%%%site.name%%%%, un servicio de [micro-blogging]" "(http://ia.wikipedia.org/wiki/Microblog) a base del software libere " -"[StatusNet](http://status.net/). Tu pote facilemente traciar le activitates " -"de personas similar per subscriber te al chronologia de un lista." +"[StatusNet](http://status.net/). Tu pote facilemente sequer su activitates " +"per subscriber te al chronologia del lista." #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3853,7 +3864,7 @@ msgstr "Listas que contine \"%1$s\", pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3864,8 +3875,8 @@ msgstr "" "Istes es listas pro **%s**. Le listas es le medio de classificar personas " "similar in %%%%site.name%%%%, un servicio de [micro-blogging](http://ia." "wikipedia.org/wiki/Microblog) a base del software libere [StatusNet](http://" -"status.net/). Tu pote facilemente traciar le activitates de personas similar " -"per subscriber te al chronologia de un lista." +"status.net/). Tu pote facilemente sequer su activitates per subscriber te al " +"chronologia del lista." #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -4177,9 +4188,8 @@ msgid "Beyond the page limit (%s)." msgstr "Ultra le limite de pagina (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "Non poteva recuperar le fluxo public." +msgstr "Non poteva recuperar le chronologia public." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4193,24 +4203,20 @@ msgid "Public timeline" msgstr "Chronologia public" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Syndication del fluxo public (Activity Streams JSON)" +msgstr "Syndication del chronologia public (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Syndication del fluxo public (RSS 1.0)" +msgstr "Syndication del chronologia public (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Syndication del fluxo public (RSS 2.0)" +msgstr "Syndication del chronologia public (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Syndication del fluxo public (Atom)" +msgstr "Syndication del chronologia public (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4789,13 +4795,12 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "Le syndication essera restaurate. Per favor attende qualque minutas." #. TRANS: Form instructions for feed restore. -#, fuzzy msgid "" "You can upload a backed-up timeline in Activity Streams format." msgstr "" -"Tu pote incargar un copia de reserva de un fluxo in formato Activity Streams." +"Tu pote incargar un copia de reserva de un chronologia in formato Activity Streams." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -4907,6 +4912,29 @@ msgstr "Reinitialisar clave e secreto" msgid "Application info" msgstr "Info del application" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Indicio de requesta invalide." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Mal indicio de accesso." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL de origine" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5491,7 +5519,7 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" "Le texto del aviso a tote le sito (maximo 255 characteres; HTML permittite)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Salveguardar aviso del sito." @@ -5684,7 +5712,7 @@ msgstr "URL pro reporto" msgid "Snapshots will be sent to this URL." msgstr "Le instantaneos essera inviate a iste URL." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Salveguardar configuration de instantaneos." @@ -6099,7 +6127,7 @@ msgstr "Invitationes activate" msgid "Whether to allow users to invite new users." msgstr "Si le usatores pote invitar nove usatores." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Salveguardar configurationes de usator." @@ -6316,7 +6344,9 @@ msgstr "Non poteva actualisar gruppo local." msgid "Could not create login token for %s" msgstr "Non poteva crear indicio de identification pro %s" -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Impossibile crear un instantia del classe " #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7047,13 +7077,14 @@ msgstr "" "scriptura" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Cancellar" +#, fuzzy +msgid "Cancel application changes." +msgstr "Applicationes connectite" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Salveguardar" +#, fuzzy +msgid "Save application changes." +msgstr "Nove application" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7685,7 +7716,6 @@ msgid "Unable to find services for %s." msgstr "Incapace de trovar servicios pro %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Disfavorir iste nota" @@ -7694,8 +7724,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Disfavorir favorite" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Non poteva recuperar notas favorite." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Favorir iste nota" @@ -7704,6 +7738,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favorir" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Non poteva recuperar notas favorite." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7762,8 +7801,8 @@ msgstr "Blocar" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Blocar iste usator" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7907,10 +7946,14 @@ msgstr "Gruppos popular" msgid "Active groups" msgstr "Gruppos active" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "Vider totes" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +#, fuzzy +msgid "See all groups you belong to." msgstr "Vider tote le gruppos al quales tu pertine" #. TRANS: Title for group tag cloud section. @@ -8054,7 +8097,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Quitar" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#, fuzzy +msgid "See all lists you have created." msgstr "Vider tote le listas que tu ha create" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8469,8 +8514,9 @@ msgid "Make Admin" msgstr "Facer admin" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Facer iste usator un administrator" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8587,6 +8633,7 @@ msgstr "Non sape manear iste typo de destination." msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "Es necessari implementar o adaptNoticeListItem() o showNotice()." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "Plus ▼" @@ -8677,7 +8724,8 @@ msgid "Repeated by" msgstr "Repetite per" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Responder a iste nota" #. TRANS: Link text in notice list item to reply to a notice. @@ -8685,8 +8733,9 @@ msgid "Reply" msgstr "Responder" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Deler iste nota" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Deler iste nota." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8734,6 +8783,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Describe le gruppo o topico in %d character o minus." msgstr[1] "Describe le gruppo o topico in %d characteres o minus." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Salveguardar" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Deler iste lista." @@ -9598,7 +9651,6 @@ msgid "Unsilence this user" msgstr "Non plus silentiar iste usator" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Cancellar subscription a iste usator" @@ -9608,6 +9660,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancellar subscription" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Cancellar subscription a iste usator" + #. 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). #, php-format @@ -9722,12 +9779,15 @@ msgstr "Adresse webfinger invalide." msgid "Could not find a valid profile for \"%s\"." msgstr "Non poteva trovar un profilo valide pro \"%s\"." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Un error importante occurreva, probabilemente connexe al configuration de " -#~ "e-mail. Examina le files de registro pro plus informationes." +#~ msgid "Save paths" +#~ msgstr "Salveguardar camminos" -#~ msgid "Tagged" -#~ msgstr "Etiquettate" +#~ msgid "Cancel" +#~ msgstr "Cancellar" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Blocar iste usator" + +#~ msgid "Delete this notice" +#~ msgstr "Deler iste nota" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 75d1ccdd95..b4c795ce7d 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:09+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:47+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -95,11 +95,12 @@ msgstr "Disabilita la creazione di nuovi account" msgid "Closed" msgstr "Chiuso" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Salva impostazioni di accesso" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -434,16 +435,19 @@ msgstr "Blocco dell'utente non riuscito." msgid "Unblock user failed." msgstr "Sblocco dell'utente non riuscito." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Conversazione" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Conversazione" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversazione" @@ -1747,6 +1751,10 @@ msgstr "Conferma indirizzo" msgid "The address \"%s\" has been confirmed for your account." msgstr "L'indirizzo \"%s\" è stato confermato per il tuo account." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversazione" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1823,7 +1831,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Non puoi eliminare utenti." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Elimina definitivamente il tuo account" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2729,10 +2738,10 @@ msgstr "Impostazioni messaggistica istantanea" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Puoi inviare e ricevere messaggi attraverso i servizi di messaggistica " "istantanea [instant messages](%%doc.im%%). Configura il tuo indirizzo e le " @@ -3787,8 +3796,9 @@ msgid "Server to direct SSL requests to." msgstr "Server a cui dirigere le richieste SSL" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Salva percorsi" +#, fuzzy +msgid "Save path settings." +msgstr "Salva impostazioni" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5019,6 +5029,29 @@ msgstr "Reimposta chiave e segreto" msgid "Application info" msgstr "Informazioni applicazione" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Token non valido." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Token di accesso errato." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL sorgente" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5614,7 +5647,7 @@ msgstr "Testo messaggio del sito" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Testo messaggio del sito (massimo 255 caratteri, HTML consentito)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Salva messaggio" @@ -5815,7 +5848,7 @@ msgstr "URL per la segnalazione" msgid "Snapshots will be sent to this URL." msgstr "Gli snapshot verranno inviati a questo URL" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Salva impostazioni snapshot" @@ -6246,7 +6279,7 @@ msgstr "Inviti abilitati" msgid "Whether to allow users to invite new users." msgstr "Indica se consentire agli utenti di invitarne di nuovi" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Salva impostazioni utente" @@ -6471,8 +6504,9 @@ msgstr "Impossibile aggiornare il gruppo locale." msgid "Could not create login token for %s" msgstr "Impossibile creare il token di accesso per %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Impossibile salvare la nuova password." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7234,13 +7268,14 @@ msgstr "" "Accesso predefinito per questa applicazione, sola lettura o lettura-scrittura" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Annulla" +#, fuzzy +msgid "Cancel application changes." +msgstr "Applicazioni collegate" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Salva" +#, fuzzy +msgid "Save application changes." +msgstr "Nuova applicazione" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7902,7 +7937,6 @@ msgid "Unable to find services for %s." msgstr "Impossibile revocare l'accesso per l'applicazione: %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Togli questo messaggio dai preferiti" @@ -7912,8 +7946,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Rimuovi preferito" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Impossibile recuperare i messaggi preferiti." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Rendi questo messaggio un preferito" @@ -7923,6 +7961,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Preferisci" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Impossibile recuperare i messaggi preferiti." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7983,8 +8026,8 @@ msgstr "Blocca" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Blocca questo utente" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8130,11 +8173,14 @@ msgstr "Messaggi famosi" msgid "Active groups" msgstr "Tutti i gruppi" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Mostra tutto" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8277,8 +8323,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Lascia" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Applicazioni che hai registrato" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8717,8 +8764,9 @@ msgid "Make Admin" msgstr "Rendi amministratore" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Fa diventare questo utente un amministratore" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8838,6 +8886,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8929,7 +8978,8 @@ msgid "Repeated by" msgstr "Ripetuto da" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Rispondi a questo messaggio" #. TRANS: Link text in notice list item to reply to a notice. @@ -8937,7 +8987,8 @@ msgid "Reply" msgstr "Rispondi" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Elimina questo messaggio" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8995,6 +9046,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Descrivi il gruppo o l'argomento in %d caratteri" msgstr[1] "Descrivi il gruppo o l'argomento in %d caratteri" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Salva" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9885,7 +9940,6 @@ msgid "Unsilence this user" msgstr "Fai parlare nuovamente questo utente" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Annulla l'abbonamento da questo utente" @@ -9895,6 +9949,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancella iscrizione" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Annulla l'abbonamento da questo utente" + #. 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 @@ -10011,6 +10070,15 @@ msgstr "Non è un indirizzo email valido." msgid "Could not find a valid profile for \"%s\"." msgstr "Impossibile salvare il profilo." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Etichetta" +#~ msgid "Save paths" +#~ msgstr "Salva percorsi" + +#~ msgid "Cancel" +#~ msgstr "Annulla" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Blocca questo utente" + +#~ msgid "Delete this notice" +#~ msgstr "Elimina questo messaggio" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 7c64962731..ca376a90a3 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:10+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:48+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -97,11 +97,12 @@ msgstr "新規登録を無効。" msgid "Closed" msgstr "閉じられた" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "アクセス設定の保存" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -431,15 +432,19 @@ msgstr "ユーザーのブロックに失敗しました。" msgid "Unblock user failed." msgstr "ユーザーのブロック解除に失敗しました。" -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "会話ID がありません。" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "id %d の会話はありません。" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "会話" @@ -1697,6 +1702,10 @@ msgstr "アドレスの確認" msgid "The address \"%s\" has been confirmed for your account." msgstr "アドレス \"%s\" はあなたのアカウントとして承認されています。" +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "会話" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1771,7 +1780,8 @@ msgstr "" "い。" #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "あなたのアカウントを完全に削除する" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2652,10 +2662,10 @@ msgstr "IM 設定" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "インスタントメッセージ [instant messages] (%%doc.im%%) 経由でつぶやきの送信、" "受信が可能です。あなたのアドレスと以下の設定を行ってください。" @@ -3647,8 +3657,9 @@ msgid "Server to direct SSL requests to." msgstr "ダイレクト SSL リクエストを向けるサーバ" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "保存パス" +#, fuzzy +msgid "Save path settings." +msgstr "サイト設定の保存" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3776,7 +3787,7 @@ msgstr "" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3784,11 +3795,11 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"これは **%s** によって作成されたリストです。リストは、%%site.name%% 上の人々" -"を並べ替える方法です。フリーソフトウェアツール [StatusNet] (http://status." -"net/) を基にした [ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%E3%83%" -"8B%E3%83%96%E3%83%AD%E3%82%B0) サービスです。タグのタイムラインをフォローする" -"事で、みんなが何をしているのか簡単に追跡することができます。" +"これは **%s** によって作成されたリストです。リストは、%%%%site.name%%%% 上の" +"人々を並べ替える方法です。フリーソフトウェアツール [StatusNet] (http://" +"status.net/) を基にした [ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%" +"E3%83%8B%E3%83%96%E3%83%AD%E3%82%B0) サービスです。リストのタイムラインをフォ" +"ローする事で、みんなが何をしているのか簡単に追跡することができます。" #. TRANS: Message displayed on page that displays lists by a user when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -3810,7 +3821,7 @@ msgstr "%1$s のリスト、ページ %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3818,11 +3829,11 @@ msgid "" "tool. You can easily keep track of what they are doing by subscribing to the " "list's timeline." msgstr "" -"これは **%s** のリストです。リストは、%%site.name%% 上の人々を並べ替える方法" -"です。フリーソフトウェアツール [StatusNet] (http://status.net/) を基にした " -"[ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%83%" -"AD%E3%82%B0) サービスです。タグのタイムラインをフォローする事で、みんなが何を" -"しているのか簡単に追跡することができます。" +"これは **%s** のリストです。リストは、%%%%site.name%%%% 上の人々を並べ替える" +"方法です。フリーソフトウェアツール [StatusNet] (http://status.net/) を基にし" +"た [ミニブログ] (http://ja.wikipedia.org/wiki/%E3%83%9F%E3%83%8B%E3%83%96%E3%" +"83%AD%E3%82%B0) サービスです。リストのタイムラインをフォローする事で、みんな" +"が何をしているのか簡単に追跡することができます。" #. TRANS: Message displayed on page that displays lists a user was added to when there are none. #. TRANS: This message contains Markdown links in the form [description](links). @@ -4130,9 +4141,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 timeline." -msgstr "パブリックストリームを取得できません。" +msgstr "パブリックタイムラインを取得できません。" #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4146,24 +4156,20 @@ msgid "Public timeline" msgstr "パブリックタイムライン" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "パブリックストリームフィード (Activity Streams JSON)" +msgstr "パブリックタイムラインのフィード (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "パブリックストリームフィード (RSS 1.0)" +msgstr "パブリックタイムラインのフィード (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "パブリックストリームフィード (RSS 2.0)" +msgstr "パブリックタイムラインのフィード (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "パブリックストリームフィード (Atom)" +msgstr "パブリックタイムラインのフィード (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4564,7 +4570,7 @@ msgstr "" #. TRANS: %s is a username. #, php-format msgid "There was an unexpected error while delisting %s." -msgstr "" +msgstr "%s をリストから除いている間、予期しないエラーが発生しました。" #. TRANS: Client error displayed when an unknown error occurs while listing a user. #. TRANS: %s is a profile URL. @@ -4573,6 +4579,8 @@ msgid "" "There was a problem listing %s. The remote server is probably not responding " "correctly, please try retrying later." msgstr "" +"%s をリストしている時に問題がありました。恐らくリモートサーバが正しく応答して" +"いません。しばらく後に試してください。" #. TRANS: Title after removing a user from a list. msgid "Unlisted" @@ -4848,6 +4856,28 @@ msgstr "key と secret のリセット" msgid "Application info" msgstr "アプリケーション情報" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "リクエストトークンが無効です。" + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "ソース URL" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5429,7 +5459,7 @@ msgstr "サイトのお知らせテキスト" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "サイト全体のお知らせテキスト (最大 255 文字まで; HTML 可)。" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "サイトのお知らせを保存。" @@ -5623,7 +5653,7 @@ msgstr "レポート URL" msgid "Snapshots will be sent to this URL." msgstr "スナップショットは、この URL に送信されます。" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "スナップショット設定の保存。" @@ -6034,7 +6064,7 @@ msgstr "招待が可能" msgid "Whether to allow users to invite new users." msgstr "ユーザーが新しいユーザーを招待するのを許容するかどうか。" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "ユーザー設定を保存します。" @@ -6234,7 +6264,9 @@ msgstr "ローカルグループを更新できませんでした。" msgid "Could not create login token for %s" msgstr "%s 用のログイン・トークンを作成できませんでした" -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "クラスをインスタンス化することはできません " #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6955,13 +6987,14 @@ msgstr "" "ライト" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "中止" +#, fuzzy +msgid "Cancel application changes." +msgstr "接続されたアプリケーション" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "保存" +#, fuzzy +msgid "Save application changes." +msgstr "新しいアプリケーション" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -6983,13 +7016,13 @@ msgstr "リードオンリー" #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type ("read-write" or "read-only") #, php-format msgid "Approved %1$s - \"%2$s\" access." -msgstr "" +msgstr "%1$s に承認 - \"%2$s\" のアクセス。" #. TRANS: Access token in the application list. #. TRANS: %s are the first 7 characters of the access token. #, php-format msgid "Access token starting with: %s" -msgstr "" +msgstr "アクセストークンの先頭文字列: %s" #. TRANS: Button label in application list to revoke access to user data. msgctxt "BUTTON" @@ -7184,7 +7217,7 @@ msgstr "タグ %1$s 解除時のエラー: %2$s" #, php-format msgid "The following tag was removed from user %1$s: %2$s." msgid_plural "The following tags were removed from user %1$s: %2$s." -msgstr[0] "" +msgstr[0] "ユーザー%1$s から次のタグが削除されました: %2$s。" #. TRANS: Whois output. #. TRANS: %1$s nickname of the queried user, %2$s is their profile URL. @@ -7391,7 +7424,7 @@ 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 "tag". msgctxt "COMMANDHELP" @@ -7406,12 +7439,12 @@ 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 ". msgctxt "COMMANDHELP" @@ -7426,7 +7459,7 @@ 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 ". msgctxt "COMMANDHELP" @@ -7436,22 +7469,22 @@ 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 ". msgctxt "COMMANDHELP" @@ -7461,7 +7494,7 @@ 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 ". msgctxt "COMMANDHELP" @@ -7525,7 +7558,7 @@ 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." @@ -7585,7 +7618,6 @@ msgid "Unable to find services for %s." msgstr "%s のサービスを見つけることができません。" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "このつぶやきのお気に入りをやめる" @@ -7594,8 +7626,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "お気に入りをやめる" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "お気に入りのつぶやきを取得できませんでした。" + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "このつぶやきをお気に入りにする" @@ -7604,6 +7640,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "お気に入り" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "お気に入りのつぶやきを取得できませんでした。" + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "" @@ -7631,7 +7672,7 @@ msgstr "フィードの著者がいません。" #. 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 "" +msgstr "ユーザー無しでインポートすることはできません。" #. TRANS: Header for feed links (h2). msgid "Feeds" @@ -7653,7 +7694,7 @@ msgstr "限定リストへタグを選択してください。" #. TRANS: Description on form for granting a role. #, php-format msgid "Grant this user the \"%s\" role" -msgstr "" +msgstr "このユーザーに役割 \"%s\" を付与する" #. TRANS: Button text for the form that will block a user from a group. msgctxt "BUTTON" @@ -7662,8 +7703,8 @@ msgstr "ブロック" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "このユーザーをブロックする" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7706,6 +7747,8 @@ msgstr[0] "" msgid "" "New members must be approved by admin and all posts are forced to be private." msgstr "" +"新しいメンバーは管理者によって承認される必要があり、すべての記事をプライベー" +"トにすることを強制する。" #. TRANS: Indicator in group members list that this user is a group administrator. msgctxt "GROUPADMIN" @@ -7786,7 +7829,7 @@ msgstr "ロゴ" #, php-format msgctxt "TOOLTIP" msgid "Add or edit %s logo" -msgstr "" +msgstr "%s のロゴを追加または編集する" #. TRANS: Group actions header (h2). Text hidden by default. msgid "Group actions" @@ -7800,10 +7843,14 @@ msgstr "人気のグループ" msgid "Active groups" msgstr "活発なグループ" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "全てを見る" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +#, fuzzy +msgid "See all groups you belong to." msgstr "所属する全てのグループを見る" #. TRANS: Title for group tag cloud section. @@ -7937,7 +7984,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "離れる" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#, fuzzy +msgid "See all lists you have created." msgstr "作成したすべてのリストを参照する" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8015,6 +8064,8 @@ 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 でフォロー" +"されることを承認または拒否することができます。" #. TRANS: Common footer block for StatusNet notification emails. #. TRANS: %1$s is the StatusNet sitename, @@ -8052,6 +8103,8 @@ 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 で加入者リストから彼" +"をブロックし、サイト管理者にスパムとしてレポートすることができます。" #. TRANS: Subject of notification mail for new posting email address. #. TRANS: %s is the StatusNet sitename. @@ -8348,8 +8401,9 @@ msgid "Make Admin" msgstr "管理者にする" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "このユーザーを管理者にする" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8449,7 +8503,7 @@ msgstr "" #. TRANS: Client exception thrown when no author for an activity was found. msgid "Cannot get author for activity." -msgstr "" +msgstr "作成者のアクティビティを取得することができません。" #. TRANS: Client exception thrown when ... msgid "Bookmark not posted to this group." @@ -8461,12 +8515,13 @@ msgstr "オブジェクトはこのユーザーに投稿できません。" #. 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 "" +msgstr "ターゲットのこの種類を処理する方法がわかりません。" #. TRANS: Server exception thrown when a micro app plugin developer has not done his job too well. msgid "You must implement either adaptNoticeListItem() or showNotice()." -msgstr "" +msgstr "adaptNoticeListItem() または showNotice() を実相する必要があります。" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "もっと ▼" @@ -8556,7 +8611,8 @@ msgid "Repeated by" msgstr "" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "このつぶやきへ返信" #. TRANS: Link text in notice list item to reply to a notice. @@ -8564,7 +8620,8 @@ msgid "Reply" msgstr "返信" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "このつぶやきを削除" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8612,6 +8669,10 @@ msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." msgstr[0] "リストやトピックの説明を %d 文字以内で記述。" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "保存" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "このユーザーを削除。" @@ -8965,6 +9026,10 @@ msgid "" "* Try more general keywords.\n" "* Try fewer keywords." msgstr "" +"* すべての単語のスペルを確認してください。\n" +"* 別のキーワードを試してみてください。\n" +"* もっと一般的なキーワードを試してみてください。\n" +"* キーワードの数を減らしてみてください。" #. TRANS: Standard search suggestions shown when a search does not give any results. #, php-format @@ -8978,6 +9043,14 @@ msgid "" "* [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)\n" "* [Collecta](http://collecta.com/#q=%s)" msgstr "" +"他の検索エンジンで検索してみることもできます:\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)" #. TRANS: Menu item in search group navigation panel. msgctxt "MENU" @@ -9272,6 +9345,8 @@ 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 バイト以内にする必要があ" +"ります。" #. TRANS: Server exception thrown when an uploaded theme is incomplete. msgid "Invalid theme archive: Missing file css/display.css" @@ -9444,7 +9519,6 @@ msgid "Unsilence this user" msgstr "このユーザーをアンサイレンス" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "ユーザーからのフォローを解除する" @@ -9454,6 +9528,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "フォロー解除" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9567,5 +9646,15 @@ msgstr "有効な webfinger アドレスではありません。" msgid "Could not find a valid profile for \"%s\"." msgstr "\"%s\" の有効なプロファイルが見つかりませんでした。" -#~ msgid "Tagged" -#~ msgstr "タグ" +#~ msgid "Save paths" +#~ msgstr "保存パス" + +#~ msgid "Cancel" +#~ msgstr "中止" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "このユーザーをブロックする" + +#~ msgid "Delete this notice" +#~ msgstr "このつぶやきを削除" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index c284488cce..8ff9f7b54d 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:12+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:50+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -89,11 +89,12 @@ msgstr "ახალი რეგისტრაციების გაუქ msgid "Closed" msgstr "დახურული" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "შეინახე შესვლის პარამეტრები" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -426,16 +427,19 @@ msgstr "მომხმარებლის დაბლოკვა ვერ msgid "Unblock user failed." msgstr "ვერ მოხერხდა მომხმარებელზე ბლოკის მოხსნა." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "საუბარი" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "საუბარი" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "საუბარი" @@ -1739,6 +1743,10 @@ msgstr "მისამართის დასტური" msgid "The address \"%s\" has been confirmed for your account." msgstr "მისამართი \"%s\" დადასტურდა თქვენი ანგარიშისთვის." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "საუბარი" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1816,7 +1824,7 @@ msgstr "თქვენ ვერ შეძლებთ მომხმარე #. TRANS: Button title for user account deletion. #, fuzzy -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "თქვენ ვერ შეძლებთ მომხმარებლების წაშლას." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2723,8 +2731,8 @@ msgstr "IM პარამეტრები" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "თქვენ შეგიძლიათ მიიღოთ და გააგზავნოთ შეტყობინებები Jabber/GTalk [ჩეთით](%%" "doc.im%%). მომართეთ თქვენი მისამართი და პარამეტრები ქვევით." @@ -3767,8 +3775,9 @@ msgid "Server to direct SSL requests to." msgstr "სერვერი რომელზეც მიემართოს SSL მოთხოვნები" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "გზების დამახსოვრება" +#, fuzzy +msgid "Save path settings." +msgstr "საიტის პარამეტრების შენახვა" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5002,6 +5011,28 @@ msgstr "გასაღების და საიდუმლოს გად msgid "Application info" msgstr "ინფო აპლიკაციაზე" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "არასწორი როლი." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "წყაროს URL" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5579,7 +5610,7 @@ msgstr "საიტის შეტყობინების ტექსტ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "საერთო სასაიტო შეტყობინების ტექსტი (მაქს. 255 სიმბოლო; HTML შეიძლება)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "შეინახე საერთოსასაიტო შეტყობინება" @@ -5784,7 +5815,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "მდგომარეობა გაიგზავნება ამ URL-ზე" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "დაიმახსოვრე მდგომარეობის პარამეტრები" @@ -6217,7 +6248,7 @@ msgstr "მოსაწვევები გააქტიურებულ msgid "Whether to allow users to invite new users." msgstr "მიეცეთ თუ არა მომხმარებლებს სხვების მოწვევის უფლება." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "საიტის პარამეტრების შენახვა" @@ -6436,8 +6467,9 @@ msgstr "ლოკალური ჯგუფის განახლება msgid "Could not create login token for %s" msgstr "შესასვლელი ტოკენის შექმნა %s-სთვის ვერ მოხერხდა." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "ვერ ვინახავ ახალ პაროლს." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7195,13 +7227,14 @@ msgstr "" "კითხვა-წერადი" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "გაუქმება" +#, fuzzy +msgid "Cancel application changes." +msgstr "მიერთებული აპლიკაციები" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "შენახვა" +#, fuzzy +msgid "Save application changes." +msgstr "ახალი აპლიკაცია" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7854,7 +7887,6 @@ msgid "Unable to find services for %s." msgstr "%s აპლიკაციის მიერ ზვდომის გაუქმება ვერ ხერხდება." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "ამოშალე რჩეულებიდან ეს შეტყობინება" @@ -7864,8 +7896,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "რჩეულის გაუქმება" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "რჩეული შეტყობინებების გამოთხოვნა ვერ მოხერხდა." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "ჩაამატე რჩეულებში ეს შეტყობინება" @@ -7875,6 +7911,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "რჩეული" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "რჩეული შეტყობინებების გამოთხოვნა ვერ მოხერხდა." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7935,7 +7976,7 @@ msgstr "" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" +msgid "Block this user so that they can no longer post messages to it." msgstr "" #. TRANS: Field title on group edit form. @@ -8081,10 +8122,13 @@ msgstr "პოპულარული შეტყობინებები" msgid "Active groups" msgstr "ყველა ჯგუფი" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8224,8 +8268,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "დატოვება" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "თქვენს მიერ დარეგისტრირებული აპლიკაციები" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8644,9 +8689,10 @@ msgid "Make Admin" msgstr "" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" -msgstr "" +msgid "Make this user an admin." +msgstr "მიანიჭე მომხმარებელს ჯგუფის ადმინობა" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. msgid "There was a database error while saving your file. Please try again." @@ -8764,6 +8810,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8854,7 +8901,8 @@ msgid "Repeated by" msgstr "" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "უპასუხე ამ შეტყობინებას" #. TRANS: Link text in notice list item to reply to a notice. @@ -8862,7 +8910,8 @@ msgid "Reply" msgstr "პასუხი" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "შეტყობინების წაშლა" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8918,6 +8967,10 @@ msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." msgstr[0] "არწერე ჯგუფი ან თემა %d სიმბოლოთი" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "შენახვა" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9824,7 +9877,6 @@ msgid "Unsilence this user" msgstr "ამ მომხმარებლის დადუმების მოხსნა" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "ამ მომხმარებლის გამოწერის გაუქმება" @@ -9835,6 +9887,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "გამოწერის გაუქმება" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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 @@ -9949,6 +10006,11 @@ msgstr "არასწორი ელ. ფოსტის მისამა msgid "Could not find a valid profile for \"%s\"." msgstr "პროფილის შენახვა ვერ მოხერხდა." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "სანიშნე" +#~ msgid "Save paths" +#~ msgstr "გზების დამახსოვრება" + +#~ msgid "Cancel" +#~ msgstr "გაუქმება" + +#~ msgid "Delete this notice" +#~ msgstr "შეტყობინების წაშლა" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 408aa72adf..6169fa1778 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:14+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:51+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -94,11 +94,12 @@ msgstr "신규 등록 차단" msgid "Closed" msgstr "차단" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "접근 권한 설정 저장" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -427,16 +428,19 @@ msgstr "사용자 차단에 실패했습니다." msgid "Unblock user failed." msgstr "사용자 차단 해제에 실패했습니다." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "대화" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "대화" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "대화" @@ -1700,6 +1704,10 @@ msgstr "주소 확인" msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" 주소가 귀하의 계정에 확인되었습니다." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "대화" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1771,7 +1779,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "계정 삭제를 확인하려면 \"%s\"라고 입력하십시오." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "계정 영구히 삭제" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2644,10 +2653,10 @@ msgstr "메신저 설정" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "[메신저를 통해](%%doc.im%%) 글을 보내거나 받을 수 있습니다. 주소 및 메신저 설" "정을 아래에서 설정하십시오." @@ -3634,8 +3643,9 @@ msgid "Server to direct SSL requests to." msgstr "SSL 요청을 리다이렉트할 서버." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "경로 저장" +#, fuzzy +msgid "Save path settings." +msgstr "사이트 설정 저장" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4828,6 +4838,29 @@ msgstr "키 & 비밀값 초기화" msgid "Application info" msgstr "응용 프로그램 정보" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "요청 토큰이 잘못되었습니다." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "접근 토큰이 잘못되었습니다." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "소스 URL" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5405,7 +5438,7 @@ msgstr "사이트 공지 사항 글" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "사이트 전체 공지 사항 글 (최대 255글자, HTML 허용)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "사이트 공지 사항 저장." @@ -5597,7 +5630,7 @@ msgstr "보고 URL" msgid "Snapshots will be sent to this URL." msgstr "스냅샷을 이 URL로 보냅니다." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "스냅샷 설정 저장." @@ -6005,7 +6038,7 @@ msgstr "초대를 사용합니다" msgid "Whether to allow users to invite new users." msgstr "사용자가 새 사용자를 초대하도록 허용할지 여부." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "사용자 설정 저장." @@ -6213,8 +6246,9 @@ msgstr "로컬 그룹을 업데이트 할 수 없습니다." msgid "Could not create login token for %s" msgstr "%s 에 대한 로그인 토큰을 만들 수 없습니다." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "새 비밀번호를 저장할 수 없습니다." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6936,13 +6970,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "이 프로그램의 기본 접근 권한: 읽기 전용, 또는 읽기/쓰기" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "취소" +#, fuzzy +msgid "Cancel application changes." +msgstr "연결한 응용 프로그램" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "저장" +#, fuzzy +msgid "Save application changes." +msgstr "새 응용 프로그램" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7565,7 +7600,6 @@ msgid "Unable to find services for %s." msgstr "%s에 대한 서비스를 찾을 수 없습니다." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "이 글을 좋아하지 않는 것으로 표시합니다" @@ -7574,8 +7608,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "좋아하는 글 취소" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "좋아하는 글을 가져올 수 없습니다." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "이 글을 좋아합니다." @@ -7584,6 +7622,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "좋아함" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "좋아하는 글을 가져올 수 없습니다." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7642,8 +7685,8 @@ msgstr "차단" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "이 사용자 차단" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7778,11 +7821,14 @@ msgstr "인기 그룹" msgid "Active groups" msgstr "활동적인 그룹" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "모두 보기" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -7922,8 +7968,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "떠나기" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "등록한 응용 프로그램" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8337,8 +8384,9 @@ msgid "Make Admin" msgstr "관리자 만들기" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "이 사용자를 관리자로 만들기" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8454,6 +8502,7 @@ msgstr "이 종류의 대상을 처리하는 방법을 알지 못합니다." msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "adaptNoticeListItem() 또는 showNotice() 구현이 필요합니다." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8543,7 +8592,8 @@ msgid "Repeated by" msgstr "반복한 사람" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "이 글에 답장" #. TRANS: Link text in notice list item to reply to a notice. @@ -8551,7 +8601,8 @@ msgid "Reply" msgstr "답장" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "이 글 삭제" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -8599,6 +8650,10 @@ msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." msgstr[0] "" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "저장" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "이 리스트 삭제." @@ -9445,7 +9500,6 @@ msgid "Unsilence this user" msgstr "이 사용자의 벙어리 해제" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "이 사용자에서 구독 해제" @@ -9455,6 +9509,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "구독 해제" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9566,12 +9625,15 @@ msgstr "올바른 메일 주소가 아닙니다." msgid "Could not find a valid profile for \"%s\"." msgstr "프로필을 저장 할 수 없습니다." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "전자메일 설치와 관련된 중요한 오류가 발생했습니다. 로그 파일에서 자세한 내" -#~ "용을 확인하십시오." +#~ msgid "Save paths" +#~ msgstr "경로 저장" -#~ msgid "Tagged" -#~ msgstr "태그 붙음" +#~ msgid "Cancel" +#~ msgstr "취소" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "이 사용자 차단" + +#~ msgid "Delete this notice" +#~ msgstr "이 글 삭제" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index b663314505..324315017a 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:16+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:53+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -97,11 +97,12 @@ msgstr "Оневозможи нови регистрации." msgid "Closed" msgstr "Затворен" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Зачувај нагодувања на пристап" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -436,15 +437,19 @@ msgstr "Блокирањето на корисникот не успеа." msgid "Unblock user failed." msgstr "Не успеа одблокирањето на корисникот." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "нема назнака за разговорот" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "Нема разговор со назнака %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Разговор" @@ -1731,6 +1736,10 @@ msgstr "Потврди адреса" msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресата \"%s\" е потврдена за Вашата сметка." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Разговор" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1803,7 +1812,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Внесете го „%s“ за да потврдите дека сакате да ја избришете сметката." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Трајно бришење на сметката" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2691,10 +2701,10 @@ msgstr "Нагодувања за НП" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Можете да праќате и примате забелешки преку [непосредни пораки](%%doc.im%%). " "Подолу поставете адреси и направете нагодувања." @@ -3698,8 +3708,9 @@ msgid "Server to direct SSL requests to." msgstr "Oпслужувач, кому ќе му се испраќаат SSL-барања." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Зачувај патеки" +#, fuzzy +msgid "Save path settings." +msgstr "Зачувај нагодувања на мреж. место." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3827,7 +3838,7 @@ msgstr "Оди" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3861,7 +3872,7 @@ msgstr "Списоци со %1$s, страница %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4187,9 +4198,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 timeline." -msgstr "Не можам да го вратам јавниот поток." +msgstr "Не можам да ја вратам јавната хронологија." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4203,24 +4213,20 @@ msgid "Public timeline" msgstr "Јавна историја" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Канал на јавниот поток (Activity Streams JSON)" +msgstr "Канал на јавната хронологија (Activity Streams JSON)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Канал на јавниот поток (RSS 1.0)" +msgstr "Канал на јавната хронологија (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Канал на јавниот поток (RSS 2.0)" +msgstr "Канал на јавната хронологија (RSS 2.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Канал на јавниот поток (Atom)" +msgstr "Канал на јавната хронологија (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4805,13 +4811,12 @@ msgstr "" "Каналот ќе биде вратен. Почејате некоја минута за да се појават резултатите." #. TRANS: Form instructions for feed restore. -#, fuzzy msgid "" "You can upload a backed-up timeline in Activity Streams format." msgstr "" -"Можете да опдигнете зачувано резервно емитување во форматот Activity Streams." +"Можете да подигнете зачувана резервна хронологија во форматот Activity Streams." #. TRANS: Title for submit button to confirm upload of a user backup file for account restore. msgid "Upload the file" @@ -4923,6 +4928,29 @@ msgstr "Клуч за промена и тајна" msgid "Application info" msgstr "Инфо за програмот" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Неважечки жетон за барање." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Лош пристапен жетон." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Изворна URL-адреса" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5510,7 +5538,7 @@ msgstr "" "Текст на главната објава по цело мрежно место (највеќе до 255 знаци; " "дозволено и HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Зачувај ја објавата на мреж. место." @@ -5705,7 +5733,7 @@ msgstr "URL на извештајот" msgid "Snapshots will be sent to this URL." msgstr "Снимките ќе се испраќаат на оваа URL-адреса." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Зачувај поставки за снимки." @@ -6119,7 +6147,7 @@ msgstr "Поканите се овозможени" msgid "Whether to allow users to invite new users." msgstr "Дали да им е дозволено на корисниците да канат други корисници." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Зачувај кориснички нагодувања." @@ -6341,7 +6369,9 @@ msgstr "Не можев да ја подновам локалната група msgid "Could not create login token for %s" msgstr "Не можам да создадам најавен жетон за" -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Не можам да ја опримерочам класата " #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7073,13 +7103,14 @@ msgstr "" "Основно-зададен пристап за овој програм: само читање, или читање-пишување" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Откажи" +#, fuzzy +msgid "Cancel application changes." +msgstr "Поврзани програми" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Зачувај" +#, fuzzy +msgid "Save application changes." +msgstr "Нов програм" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7715,7 +7746,6 @@ msgid "Unable to find services for %s." msgstr "Не можам да пронајдам служби за: %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Одбендисај ја забелешкава" @@ -7724,8 +7754,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Тргни од бендисани" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Не можев да ги повратам бендисаните забелешки." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Бендисај ја забелешкава" @@ -7734,6 +7768,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Бендисај" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Не можев да ги повратам бендисаните забелешки." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7792,8 +7831,8 @@ msgstr "Блокирај" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Блокирај го корисников" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7938,10 +7977,14 @@ msgstr "Популарни групи" msgid "Active groups" msgstr "Активни групи" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "Сите" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +#, fuzzy +msgid "See all groups you belong to." msgstr "Сите групи кајшто членувате" #. TRANS: Title for group tag cloud section. @@ -8084,7 +8127,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Напушти" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#, fuzzy +msgid "See all lists you have created." msgstr "Сите списоци што ги имате создадено" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8501,8 +8546,9 @@ msgid "Make Admin" msgstr "Назначи за администратор" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Назначи го корисников за администратор" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8619,6 +8665,7 @@ msgstr "Не знам како да работам со ваква одредн msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "Мора да го спроведете или adaptNoticeListItem() или showNotice()." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "Повеќе ▼" @@ -8709,7 +8756,8 @@ msgid "Repeated by" msgstr "Повторено од" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Одговори на забелешкава" #. TRANS: Link text in notice list item to reply to a notice. @@ -8717,8 +8765,9 @@ msgid "Reply" msgstr "Одговор" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Избриши ја забелешкава" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Избриши ја забелешкава." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8766,6 +8815,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Опишете го списокот или темата со највеќе %d знак" msgstr[1] "Опишете ги списоците или темата со највеќе %d знаци" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Зачувај" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Избриши го списоков." @@ -9621,7 +9674,6 @@ msgid "Unsilence this user" msgstr "Тргни замолчување за овој корисник" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Откажи претплата од овој корсиник" @@ -9631,6 +9683,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Отпиши се" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9747,12 +9804,15 @@ msgstr "Ова не е важечка Webfinger-адреса." msgid "Could not find a valid profile for \"%s\"." msgstr "Не можев да пронајдам важечки профил за „%s“." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Се појави важна грешка, веројатно поврзана со востановката на е-поштата. " -#~ "Проверете ги дневничките податотеки за повеќе информации." +#~ msgid "Save paths" +#~ msgstr "Зачувај патеки" -#~ msgid "Tagged" -#~ msgstr "Означени" +#~ msgid "Cancel" +#~ msgstr "Откажи" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Блокирај го корисников" + +#~ msgid "Delete this notice" +#~ msgstr "Избриши ја забелешкава" diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 54fb0e84af..7a097f363f 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:17+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:54+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -88,11 +88,12 @@ msgstr "പുതിയ രജിസ്ട്രേഷനുകൾ വേണ് msgid "Closed" msgstr "അടച്ചു" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "അഭിഗമ്യതാ സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -414,16 +415,19 @@ msgstr "ഉപയോക്താവിനെ തടയൽ പരാജയപ് msgid "Unblock user failed." msgstr "ഉപയോക്താവിന്റെ തടയൽ നീക്കൽ പരാജയപ്പെട്ടു." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "സംഭാഷണം" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "സംഭാഷണം" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "സംഭാഷണം" @@ -1687,6 +1691,10 @@ msgstr "വിലാസം സ്ഥിരീകരിക്കുക" msgid "The address \"%s\" has been confirmed for your account." msgstr "താങ്കളുടെ അംഗത്വത്തിന് \"%s\" എന്ന വിലാസം സ്ഥിരീകരിച്ചിരിക്കുന്നു." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "സംഭാഷണം" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1758,7 +1766,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "താങ്കളുടെ അംഗത്വം മായ്ക്കണമെന്ന് സ്ഥിരികരിക്കാൻ \"%s\" നൽകുക." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "താങ്കളുടെ അംഗത്വം എന്നെന്നേക്കുമായി മായ്ച്ചുകളയുക" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2634,8 +2643,8 @@ msgstr "ഐ.എം. സജ്ജീകരണങ്ങൾ" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "ജാബ്ബർ/ജിറ്റോക് [തത്സമയ സന്ദേശങ്ങൾ - instant messages] ഉപയോഗിച്ച് താങ്കൾക്ക് അറിയിപ്പുകൾ " "അയയ്ക്കാനും സ്വീകരിക്കാനും കഴിയുന്നതാണ് (%%doc.im%%). താങ്കളുടെ വിലാസവും സജ്ജീകരണങ്ങളും " @@ -3634,8 +3643,9 @@ msgid "Server to direct SSL requests to." msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "" +#, fuzzy +msgid "Save path settings." +msgstr "സൈറ്റ് സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4818,6 +4828,28 @@ msgstr "പുനഃക്രമീകരണ ചാവിയും രഹസ് msgid "Application info" msgstr "" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "അസാധുവായ അഭ്യർത്ഥനാ ചീട്ട്." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "സ്രോതസ്സ് യു.ആർ.എൽ" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5389,7 +5421,7 @@ msgstr "സൈറ്റ് അറിയിപ്പ് എഴുത്ത്" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യുക." @@ -5579,7 +5611,7 @@ msgstr "യൂ.ആർ.എൽ. അറിയിക്കുക" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "സൈറ്റ് സജ്ജീകരണങ്ങൾ ചേവ് ചെയ്യുക" @@ -5992,7 +6024,7 @@ msgstr "ക്ഷണിക്കൽ സജ്ജമാക്കിയിരി msgid "Whether to allow users to invite new users." msgstr "പുതിയ ഉപയോക്താക്കളെ ക്ഷണിക്കാൻ ഉപയോക്താക്കളെ അനുവദിക്കേണ്ടതുണ്ടോ." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "ഉപയോക്തൃ സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക." @@ -6192,8 +6224,9 @@ msgstr "" msgid "Could not create login token for %s" msgstr "" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനാവില്ല." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6932,13 +6965,12 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "റദ്ദാക്കുക" +msgid "Cancel application changes." +msgstr "" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "സേവ് ചെയ്യുക" +msgid "Save application changes." +msgstr "" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7584,7 +7616,6 @@ msgid "Unable to find services for %s." msgstr "" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "" @@ -7593,8 +7624,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ ശേഖരിക്കാൻ കഴിഞ്ഞില്ല." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "" @@ -7603,6 +7638,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "പ്രിയങ്കരങ്ങളായ അറിയിപ്പുകൾ ശേഖരിക്കാൻ കഴിഞ്ഞില്ല." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "ആർ.എസ്.എസ്. 1.0" @@ -7662,8 +7702,8 @@ msgstr "തടയുക" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "ഈ ഉപയോക്താവിനെ തടയുക" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7807,11 +7847,14 @@ msgstr "ജനപ്രിയ അറിയിപ്പുകൾ" msgid "Active groups" msgstr "എല്ലാ സംഘങ്ങളും" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "കൂടുതൽ പ്രദർശിപ്പിക്കുക" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -7953,7 +7996,8 @@ msgctxt "BUTTON" msgid "Leave" msgstr "ഒഴിവായി പോവുക" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +msgid "See all lists you have created." msgstr "" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8292,8 +8336,9 @@ msgid "Make Admin" msgstr "കാര്യനിർവ്വാഹകനാക്കുക" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "ഈ ഉപയോക്താവിനെ കാര്യനിർവ്വാഹകനാക്കുക" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8411,6 +8456,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8502,7 +8548,8 @@ msgid "Repeated by" msgstr "ആവർത്തിച്ചത്" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "ഈ അറിയിപ്പിന് മറുപടിയിടുക" #. TRANS: Link text in notice list item to reply to a notice. @@ -8510,8 +8557,9 @@ msgid "Reply" msgstr "മറുപടി" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8564,6 +8612,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ %d അക്ഷരത്തിൽ കൂടാതെ വിവരിക്കുക." msgstr[1] "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ %d അക്ഷരങ്ങളിൽ കൂടാതെ വിവരിക്കുക." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "സേവ് ചെയ്യുക" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9454,7 +9506,6 @@ msgid "Unsilence this user" msgstr "" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "" @@ -9465,6 +9516,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "വരിക്കാരാകുക" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9581,6 +9637,12 @@ msgstr "സാധുവായ ഇമെയിൽ വിലാസം അല്ല msgid "Could not find a valid profile for \"%s\"." msgstr "ലക്ഷ്യമിട്ട ഉപയോക്താവിനെ കണ്ടെത്താനായില്ല." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "റ്റാഗ്" +#~ msgid "Cancel" +#~ msgstr "റദ്ദാക്കുക" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "ഈ ഉപയോക്താവിനെ തടയുക" + +#~ msgid "Delete this notice" +#~ msgstr "ഈ അറിയിപ്പ് മായ്ക്കുക" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index f9604db6c1..8bc93aa4f5 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:21+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:58+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.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -94,11 +94,12 @@ msgstr "Deaktiver nye registreringer." msgid "Closed" msgstr "Lukket" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Lagre tilgangsinnstillinger" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -432,16 +433,19 @@ msgstr "Blokkering av bruker mislyktes." msgid "Unblock user failed." msgstr "Oppheving av blokkering av bruker mislyktes." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Samtale" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Samtale" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Samtale" @@ -1726,6 +1730,10 @@ msgstr "Bekreft adresse" msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen «%s» har blitt bekreftet for din konto." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Samtale" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1801,7 +1809,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Skriv inn «%s» for å bekrefte at du vil slette kontoen din." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Slett kontoen din permanent" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2693,8 +2702,8 @@ msgstr "Innstillinger for direktemeldinger" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Du kan sende og motta notiser gjennom Jabber/GTalk [direktemeldinger](%%doc." "im%%). Konfigurer adresse og innstillinger under." @@ -3721,8 +3730,9 @@ msgid "Server to direct SSL requests to." msgstr "Tjener SSL-forespørsler skal rettes til." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Lagre stier" +#, fuzzy +msgid "Save path settings." +msgstr "Lagre nettstedsinnstillinger" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4964,6 +4974,28 @@ msgstr "Tilbakestill nøkkel & hemmelighet" msgid "Application info" msgstr "Programinformasjon" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Ugyldig bekreftelsesnøkkel." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Nettadresse til kilde" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5558,7 +5590,7 @@ msgstr "Tekst for nettstedsnotis" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Notistekst for hele nettstedet (maks 255 tegn; HTML tillatt)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Lagre nettstedsnotis" @@ -5759,7 +5791,7 @@ msgstr "Nettadresse til kilde" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Lagre nettstedsinnstillinger" @@ -6186,7 +6218,7 @@ msgstr "Invitasjoner aktivert" msgid "Whether to allow users to invite new users." msgstr "Hvorvidt brukere tillates å invitere nye brukere." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Lagre nettstedsinnstillinger" @@ -6394,8 +6426,9 @@ msgstr "Kunne ikke oppdatere lokal gruppe." msgid "Could not create login token for %s" msgstr "Kunne ikke opprette alias." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Klarer ikke å lagre nytt passord." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7150,13 +7183,14 @@ msgstr "" "skrivetilgang" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Avbryt" +#, fuzzy +msgid "Cancel application changes." +msgstr "Tilkoblede program" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Lagre" +#, fuzzy +msgid "Save application changes." +msgstr "Ny applikasjon" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7821,7 +7855,6 @@ msgid "Unable to find services for %s." msgstr "Kunne ikke fjerne tilgang for applikasjonen: %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. #, fuzzy msgid "Disfavor this notice" msgstr "Slett denne notisen" @@ -7832,8 +7865,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Fjern favoritt" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Kunne ikke hente favorittnotiser." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. #, fuzzy msgid "Favor this notice" msgstr "Repeter denne notisen" @@ -7844,6 +7881,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Favoritter" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Kunne ikke hente favorittnotiser." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7904,8 +7946,8 @@ msgstr "Blokker" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Blokker denne brukeren" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8049,11 +8091,14 @@ msgstr "Populære notiser" msgid "Active groups" msgstr "Alle grupper" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Vis alle" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8196,8 +8241,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Forlat" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Program du har registrert" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8634,8 +8680,9 @@ msgid "Make Admin" msgstr "Gjør til administrator" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Gjør denne burkeren til administrator" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8754,6 +8801,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8846,7 +8894,8 @@ msgid "Repeated by" msgstr "Repetert av" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Svar på denne notisen" #. TRANS: Link text in notice list item to reply to a notice. @@ -8854,8 +8903,9 @@ msgid "Reply" msgstr "Svar" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Slett denne notisen" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Slett denne notisen." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8912,6 +8962,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Beskriv programmet ditt med %d tegn" msgstr[1] "Beskriv programmet ditt med %d tegn" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Lagre" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9831,7 +9885,6 @@ msgid "Unsilence this user" msgstr "Opphev blokkering av denne brukeren" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. #, fuzzy msgid "Unsubscribe from this user" msgstr "Abonner på denne brukeren" @@ -9843,6 +9896,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Abonner" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Abonner på denne brukeren" + #. 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 @@ -9960,13 +10018,15 @@ msgstr "Ugyldig e-postadresse." msgid "Could not find a valid profile for \"%s\"." msgstr "Kunne ikke lagre profil." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "En viktig feil oppstod, sannsynligvis relatert til e-postoppsettet. Sjekk " -#~ "loggfilene for mer informasjon." +#~ msgid "Save paths" +#~ msgstr "Lagre stier" -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Tagger" +#~ msgid "Cancel" +#~ msgstr "Avbryt" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Blokker denne brukeren" + +#~ msgid "Delete this notice" +#~ msgstr "Slett denne notisen" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index ff5fd030c6..1290f9aa63 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:56+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -98,11 +98,12 @@ msgstr "Nieuwe registraties uitschakelen." msgid "Closed" msgstr "Gesloten" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Toegangsinstellingen opslaan" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -443,15 +444,19 @@ msgstr "Het blokkeren van de gebruiker is mislukt." msgid "Unblock user failed." msgstr "Het deblokkeren van de gebruiker is mislukt." -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#, fuzzy +msgid "No conversation ID." msgstr "geen gespreksnummer" -#, php-format -msgid "No conversation with id %d" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." msgstr "Geen gesprek met nummer %d" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Dialoog" @@ -1753,6 +1758,10 @@ msgstr "Adres bevestigen" msgid "The address \"%s\" has been confirmed for your account." msgstr "Het adres \"%s\" is voor uw gebruiker bevestigd." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Dialoog" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. msgid "Conversation feed (Activity Streams JSON)" @@ -1828,7 +1837,8 @@ msgstr "" "verwijderen: \"%s\"." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Uw gebruiker permanent verwijderen" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2724,10 +2734,10 @@ msgstr "IM-instellingen" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "U kunt berichten verzenden en ontvangen via [\"onmiddellijke berichten\"](%%" "doc.im%%). Voer hieronder uw adres in en maak uw instellingen." @@ -3733,8 +3743,9 @@ msgid "Server to direct SSL requests to." msgstr "De server waar SSL-verzoeken heen gestuurd moeten worden." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Opslagpaden" +#, fuzzy +msgid "Save path settings." +msgstr "De websiteinstellingen opslaan." #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -3862,7 +3873,7 @@ msgstr "OK" #. TRANS: Message displayed for anonymous users on page that displays lists by a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists created by **%s**. Lists are how you sort similar people on %" "%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -3896,7 +3907,7 @@ msgstr "Lijsten waar %1$s in is opgenomen, pagina %2$d" #. TRANS: Message displayed for anonymous users on page that displays lists for a user. #. TRANS: This message contains Markdown links in the form [description](links). #. TRANS: %s is a tagger nickname. -#, fuzzy, php-format +#, php-format msgid "" "These are lists for **%s**. lists are how you sort similar people on %%%%" "site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" @@ -4220,9 +4231,8 @@ msgid "Beyond the page limit (%s)." msgstr "Meer dan de paginalimiet (%s)." #. TRANS: Server error displayed when a public timeline cannot be retrieved. -#, fuzzy msgid "Could not retrieve public timeline." -msgstr "Het was niet mogelijk de publieke stream op te halen." +msgstr "Het was niet mogelijk de publieke tijdlijn op te halen." #. TRANS: Title for all public timeline pages but the first. #. TRANS: %d is the page number. @@ -4236,24 +4246,20 @@ msgid "Public timeline" msgstr "Openbare tijdlijn" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Activity Streams JSON)" -msgstr "Publieke streamfeed (JSON-activiteitenstreams)" +msgstr "Publieke tijdlijnfeed (JSON-activiteitenstreams)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 1.0)" -msgstr "Publieke streamfeed (RSS 1.0)" +msgstr "Publieke tijdlijnfeed (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (RSS 2.0)" -msgstr "Publieke streamfeed (RSS 1.0)" +msgstr "Publieke tijdlijnfeed (RSS 1.0)" #. TRANS: Link description for public timeline feed. -#, fuzzy msgid "Public Timeline Feed (Atom)" -msgstr "Publieke streamfeed (Atom)" +msgstr "Publieke tijdlijnfeed (Atom)" #. TRANS: Text displayed for public feed when there are no public notices. #, php-format @@ -4841,7 +4847,6 @@ msgid "Feed will be restored. Please wait a few minutes for results." msgstr "De feed wordt teruggeplaatst. Een paar minuten geduld, alstublieft." #. TRANS: Form instructions for feed restore. -#, fuzzy msgid "" "You can upload a backed-up timeline in Activity Streams format." @@ -4959,6 +4964,29 @@ msgstr "Sleutel en wachtwoord op nieuw instellen" msgid "Application info" msgstr "Applicatieinformatie" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Ongeldig verzoektoken." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Ongeldig toegangstoken." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Bron-URL" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5552,7 +5580,7 @@ msgstr "" "Tekst voor websitebrede aankondiging (maximaal 255 tekens en HTML is " "toegestaan)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Websitebrede mededeling opslaan." @@ -5746,7 +5774,7 @@ msgstr "Rapportage-URL" msgid "Snapshots will be sent to this URL." msgstr "Snapshots worden naar deze URL verzonden." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Snapshotinstellingen opslaan." @@ -6158,7 +6186,7 @@ msgstr "Uitnodigingen ingeschakeld" msgid "Whether to allow users to invite new users." msgstr "Of gebruikers nieuwe gebruikers kunnen uitnodigen." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Gebruikersinstellingen opslaan." @@ -6378,7 +6406,9 @@ msgstr "Het was niet mogelijk de lokale groep bij te werken." msgid "Could not create login token for %s" msgstr "Het was niet mogelijk een aanmeldtoken aan te maken voor %s" -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Kan klasse niet instantiëren " #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7129,13 +7159,14 @@ msgstr "" "Standaardtoegang voor deze applicatie: alleen-lezen of lezen en schrijven" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Annuleren" +#, fuzzy +msgid "Cancel application changes." +msgstr "Verbonden applicaties" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Opslaan" +#, fuzzy +msgid "Save application changes." +msgstr "Nieuwe applicatie" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7779,7 +7810,6 @@ msgid "Unable to find services for %s." msgstr "Er zijn geen diensten aantroffen voor %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Uit de favorietenlijst verwijderen" @@ -7788,8 +7818,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Van favorietenlijst verwijderen" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Het was niet mogelijk de favoriete mededelingen op te halen." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Op de favorietenlijst plaatsen" @@ -7798,6 +7832,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Aan favorietenlijst toevoegen" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Het was niet mogelijk de favoriete mededelingen op te halen." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7856,8 +7895,8 @@ msgstr "Blokkeren" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Deze gebruiker blokkeren" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -8000,10 +8039,14 @@ msgstr "Populaire groepen" msgid "Active groups" msgstr "Actieve groepen" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. msgid "See all" msgstr "Allemaal bekijken" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +#, fuzzy +msgid "See all groups you belong to." msgstr "Alle groepen waartoe u behoort bekijken" #. TRANS: Title for group tag cloud section. @@ -8146,7 +8189,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Verlaten" -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#, fuzzy +msgid "See all lists you have created." msgstr "Alle lijsten bekijken die u hebt aangemaakt" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8564,8 +8609,9 @@ msgid "Make Admin" msgstr "Beheerder maken" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Deze gebruiker beheerder maken" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8682,6 +8728,7 @@ msgstr "Het is niet bekend hoe dit doel afgehandeld moet worden." msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "U moet adaptNoticeListItem() of showNotice() implementeren." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "Meer ▼" @@ -8772,7 +8819,8 @@ msgid "Repeated by" msgstr "Herhaald door" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Op deze mededeling antwoorden" #. TRANS: Link text in notice list item to reply to a notice. @@ -8780,8 +8828,9 @@ msgid "Reply" msgstr "Antwoorden" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Deze mededeling verwijderen" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Deze mededeling verwijderen." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8829,6 +8878,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Beschrijf de lijst of het onderwerp in %d teken of minder." msgstr[1] "Beschrijf de lijst of het onderwerp in %d tekens of minder." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Opslaan" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Deze lijst verwijderen." @@ -9695,7 +9748,6 @@ msgid "Unsilence this user" msgstr "Deze gebruiker de muilkorf afnemen" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Uitschrijven van deze gebruiker" @@ -9705,6 +9757,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Abonnement opheffen" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Uitschrijven van deze gebruiker" + #. 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). #, php-format @@ -9821,12 +9878,15 @@ msgstr "Geen geldig webfingeradres." msgid "Could not find a valid profile for \"%s\"." msgstr "Er is geen geldig profiel voor \"%s\" gevonden." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Er is een grote fout opgetreden. Waarschijnlijk is deze gerelateerd aan " -#~ "de instellingen voor e-mail. Controleer de logboeken voor meer gegevens." +#~ msgid "Save paths" +#~ msgstr "Opslagpaden" -#~ msgid "Tagged" -#~ msgstr "Gelabeld" +#~ msgid "Cancel" +#~ msgstr "Annuleren" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Deze gebruiker blokkeren" + +#~ msgid "Delete this notice" +#~ msgstr "Deze mededeling verwijderen" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index e9813dd9c8..26c8ed63c3 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:22+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:59+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.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2011-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -93,11 +93,12 @@ msgstr "Wyłączenie nowych rejestracji." msgid "Closed" msgstr "Zamknięte" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Zapisz ustawienia dostępu" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -434,16 +435,19 @@ msgstr "Zablokowanie użytkownika nie powiodło się." msgid "Unblock user failed." msgstr "Odblokowanie użytkownika nie powiodło się." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Rozmowa" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Rozmowa" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Rozmowa" @@ -1740,6 +1744,10 @@ msgstr "Potwierdź adres" msgid "The address \"%s\" has been confirmed for your account." msgstr "Adres \"%s\" został potwierdzony dla twojego konta." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Rozmowa" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1815,7 +1823,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Proszę wpisać \"%s\", aby potwierdzić chęć usunięcia konta." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Trwale usuwa konto" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2714,8 +2723,8 @@ msgstr "Ustawienia komunikatora" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Można wysyłać i odbierać wpisy przez [komunikator](%%doc.im%%) Jabber/GTalk. " "Skonfiguruj adres i ustawienia poniżej." @@ -3756,8 +3765,9 @@ msgid "Server to direct SSL requests to." msgstr "Serwer do przekierowywania żądań SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Ścieżki zapisu" +#, fuzzy +msgid "Save path settings." +msgstr "Zapisz ustawienia witryny" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5007,6 +5017,29 @@ msgstr "Przywrócenie klucza i sekretu" msgid "Application info" msgstr "Informacje o aplikacji" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Nieprawidłowy token żądania." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Błędny token dostępu." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Źródłowy adres URL" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5608,7 +5641,7 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" "Tekst wpisu witryny (maksymalnie 255 znaków, można używać znaczników HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Zapisz wpis witryny" @@ -5810,7 +5843,7 @@ msgstr "Adres URL zgłaszania" msgid "Snapshots will be sent to this URL." msgstr "Migawki będą wysyłane na ten adres URL" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Zapisz ustawienia migawki" @@ -6238,7 +6271,7 @@ msgstr "Zaproszenia są włączone" msgid "Whether to allow users to invite new users." msgstr "Czy zezwolić użytkownikom zapraszanie nowych użytkowników." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Zapisz ustawienia użytkownika" @@ -6475,8 +6508,9 @@ msgstr "Nie można zaktualizować lokalnej grupy." msgid "Could not create login token for %s" msgstr "Nie można utworzyć tokenów loginów dla %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Nie można zapisać nowego hasła." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7235,13 +7269,14 @@ msgstr "" "Domyślny dostęp do tej aplikacji: tylko do odczytu lub do odczytu i zapisu" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Anuluj" +#, fuzzy +msgid "Cancel application changes." +msgstr "Połączone aplikacje" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Zapisz" +#, fuzzy +msgid "Save application changes." +msgstr "Nowa aplikacja" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7901,7 +7936,6 @@ msgid "Unable to find services for %s." msgstr "Nie można odnaleźć usług dla %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Usuń ten wpis z ulubionych" @@ -7911,8 +7945,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Usuń wpis z ulubionych" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Nie można odebrać ulubionych wpisów." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Dodaj ten wpis do ulubionych" @@ -7922,6 +7960,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Dodaj do ulubionych" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Nie można odebrać ulubionych wpisów." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7983,8 +8026,8 @@ msgstr "Zablokuj" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Zablokuj tego użytkownika" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -8137,11 +8180,14 @@ msgstr "Popularne wpisy" msgid "Active groups" msgstr "Wszystkie grupy" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Wyświetl więcej" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8287,8 +8333,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Opuść" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Zarejestrowane aplikacje" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8728,8 +8775,9 @@ msgid "Make Admin" msgstr "Uczyń administratorem" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Nadaje temu użytkownikowi uprawnienia administratora" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8849,6 +8897,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8941,7 +8990,8 @@ msgid "Repeated by" msgstr "Powtórzone przez" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Odpowiedz na ten wpis" #. TRANS: Link text in notice list item to reply to a notice. @@ -8949,7 +8999,8 @@ msgid "Reply" msgstr "Odpowiedz" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" +#, fuzzy +msgid "Delete this notice from the timeline." msgstr "Usuń ten wpis" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -9008,6 +9059,10 @@ msgstr[0] "Opisz grupę lub temat w %d znaku." msgstr[1] "Opisz grupę lub temat w %d znakach lub mniej." msgstr[2] "Opisz grupę lub temat w %d znakach lub mniej." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Zapisz" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9921,7 +9976,6 @@ msgid "Unsilence this user" msgstr "Usuń wyciszenie tego użytkownika" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Zrezygnuj z subskrypcji tego użytkownika" @@ -9932,6 +9986,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Zrezygnuj z subskrypcji" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Zrezygnuj z subskrypcji tego użytkownika" + #. 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). #, php-format @@ -10054,6 +10113,15 @@ msgstr "To nie jest prawidłowy adres e-mail." msgid "Could not find a valid profile for \"%s\"." msgstr "Nie można zapisać profilu." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Znacznik" +#~ msgid "Save paths" +#~ msgstr "Ścieżki zapisu" + +#~ msgid "Cancel" +#~ msgstr "Anuluj" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Zablokuj tego użytkownika" + +#~ msgid "Delete this notice" +#~ msgstr "Usuń ten wpis" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 9104b50267..496e968c3a 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:24+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37:01+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -101,11 +101,12 @@ msgstr "Impossibilitar registos novos." msgid "Closed" msgstr "Fechado" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Gravar configurações de acesso" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -443,16 +444,19 @@ msgstr "Bloqueio do utilizador falhou." msgid "Unblock user failed." msgstr "Desbloqueio do utilizador falhou." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Conversação" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Conversação" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversação" @@ -1732,6 +1736,10 @@ msgstr "Confirmar endereço" msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para a sua conta." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversação" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1807,7 +1815,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Coloca \"%s\" para confirmar que desejas apagar a tua conta." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Apagar permanentemente a tua conta" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2703,8 +2712,8 @@ msgstr "Configurações do IM" #. TRANS: the order and formatting of link text and link should remain unchanged. #, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Pode enviar e receber notas através de [mensagens instantâneas](%%doc.im%%) " "Jabber/GTalk. Configure o seu endereço e outras definições abaixo." @@ -3741,8 +3750,9 @@ msgid "Server to direct SSL requests to." msgstr "Servidor para onde encaminhar pedidos SSL" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Gravar localizações" +#, fuzzy +msgid "Save path settings." +msgstr "Gravar configurações do site" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4995,6 +5005,29 @@ msgstr "Reiniciar chave e segredo" msgid "Application info" msgstr "Informação da aplicação" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Chave inválida." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Código de acesso incorrecto." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL de origem" + #. TRANS: Note on the OAuth application page about signature support. #, fuzzy msgid "" @@ -5596,7 +5629,7 @@ msgstr "Texto do aviso do site" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Texto do aviso do site (máx. 255 caracteres; pode usar HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #, fuzzy msgid "Save site notice." msgstr "Gravar aviso do site" @@ -5798,7 +5831,7 @@ msgstr "URL para relatórios" msgid "Snapshots will be sent to this URL." msgstr "Instantâneos serão enviados para esta URL" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "Gravar configurações do instantâneo" @@ -6230,7 +6263,7 @@ msgstr "Convites habilitados" msgid "Whether to allow users to invite new users." msgstr "Permitir, ou não, que utilizadores convidem utilizadores novos." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #, fuzzy msgid "Save user settings." msgstr "Gravar configurações do site" @@ -6454,8 +6487,9 @@ msgstr "Não foi possível actualizar o grupo local." msgid "Could not create login token for %s" msgstr "Não foi possível criar a chave de entrada para %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Não é possível salvar a nova senha." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7216,13 +7250,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "Acesso por omissão para esta aplicação: leitura ou leitura e escrita" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Cancelar" +#, fuzzy +msgid "Cancel application changes." +msgstr "Aplicações ligadas" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Gravar" +#, fuzzy +msgid "Save application changes." +msgstr "Nova aplicação" #. TRANS: Name for an anonymous application in application list. #, fuzzy @@ -7878,7 +7913,6 @@ msgid "Unable to find services for %s." msgstr "Não foi possível retirar acesso da aplicação: %s" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Retirar esta nota das favoritas" @@ -7888,8 +7922,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Retirar das favoritas" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Não foi possível importar notas favoritas." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Eleger esta nota como favorita" @@ -7899,6 +7937,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Eleger como favorita" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Não foi possível importar notas favoritas." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7959,8 +8002,8 @@ msgstr "Bloquear" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloquear este utilizador" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -8106,11 +8149,14 @@ msgstr "Notas populares" msgid "Active groups" msgstr "Todos os grupos" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Mostrar mais" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8253,8 +8299,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Afastar-me" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Aplicações que registou" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8693,8 +8740,9 @@ msgid "Make Admin" msgstr "Tornar Gestor" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Tornar este utilizador um gestor" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8818,6 +8866,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8909,7 +8958,8 @@ msgid "Repeated by" msgstr "Repetida por" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Responder a esta nota" #. TRANS: Link text in notice list item to reply to a notice. @@ -8917,8 +8967,9 @@ msgid "Reply" msgstr "Responder" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Apagar esta nota" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Apagar esta nota." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. #, fuzzy @@ -8975,6 +9026,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Descreva o grupo ou o assunto em %d caracteres" msgstr[1] "Descreva o grupo ou o assunto em %d caracteres" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Gravar" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9890,7 +9945,6 @@ msgid "Unsilence this user" msgstr "Permitir que este utilizador publique notas" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Deixar de subscrever este utilizador" @@ -9901,6 +9955,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Abandonar" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Deixar de subscrever este utilizador" + #. 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 @@ -10018,6 +10077,15 @@ msgstr "Correio electrónico é inválido." msgid "Could not find a valid profile for \"%s\"." msgstr "Não foi possível gravar o perfil." -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Categoria" +#~ msgid "Save paths" +#~ msgstr "Gravar localizações" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloquear este utilizador" + +#~ msgid "Delete this notice" +#~ msgstr "Apagar esta nota" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 20aff03b72..201b178f04 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:26+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37:02+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -101,11 +101,12 @@ msgstr "Desabilita novos registros." msgid "Closed" msgstr "Fechado" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Salvar as configurações de acesso" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -445,16 +446,19 @@ msgstr "Não foi possível bloquear o usuário." msgid "Unblock user failed." msgstr "Não foi possível desbloquear o usuário." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Conversa" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Conversa" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Conversa" @@ -1746,6 +1750,10 @@ msgstr "Confirme o endereço" msgid "The address \"%s\" has been confirmed for your account." msgstr "O endereço \"%s\" foi confirmado para sua conta." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Conversa" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1822,7 +1830,8 @@ msgstr "" "Digite \"%s\" para confirmar que você deseja realmente excluir sua conta." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Excluir sua conta permanentemente" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2711,10 +2720,10 @@ 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Você pode enviar e receber mensagens através de [mensageiros instantâneos](%%" "doc.im%%). Configure seu endereço e suas opções abaixo." @@ -3724,8 +3733,9 @@ msgid "Server to direct SSL requests to." msgstr "Servidor para onde devem ser direcionadas as requisições SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Salvar caminhos" +#, fuzzy +msgid "Save path settings." +msgstr "Salvar as configurações do site" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4950,6 +4960,29 @@ msgstr "Restaurar a chave e o segredo" msgid "Application info" msgstr "Informação da aplicação" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "O token solicitado é inválido." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Token de acesso incorreto." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL da fonte" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5539,7 +5572,7 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" 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. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Salvar as mensagens do site." @@ -5731,7 +5764,7 @@ msgstr "URL para envio" msgid "Snapshots will be sent to this URL." msgstr "As estatísticas serão enviadas para esta URL." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Salvar configurações de estatísticas" @@ -6155,7 +6188,7 @@ msgstr "Convites habilitados" msgid "Whether to allow users to invite new users." msgstr "Define se os usuários podem ou não convidar novos usuários." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Salvar as configurações de usuário." @@ -6372,8 +6405,9 @@ msgstr "Não foi possível atualizar o grupo local." msgid "Could not create login token for %s" msgstr "Não foi possível criar o token de autenticação para %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Não é possível salvar a nova senha." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7107,13 +7141,14 @@ msgstr "" "Acesso padrão para esta aplicação: somente leitura ou leitura e escrita" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Cancelar" +#, fuzzy +msgid "Cancel application changes." +msgstr "Aplicações conectadas" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Salvar" +#, fuzzy +msgid "Save application changes." +msgstr "Nova aplicação" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7751,7 +7786,6 @@ msgid "Unable to find services for %s." msgstr "Não foi possível encontrar serviços para %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Excluir das favoritas" @@ -7760,8 +7794,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Excluir das favoritas" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Não foi possível recuperar as mensagens favoritas." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Acrescentar às favoritas" @@ -7770,6 +7808,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Tornar favorita" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Não foi possível recuperar as mensagens favoritas." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7828,8 +7871,8 @@ msgstr "Bloquear" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Bloquear este usuário" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7977,11 +8020,14 @@ msgstr "Mensagens populares" msgid "Active groups" msgstr "Todos os grupos" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Exibir todas" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8126,8 +8172,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Sair" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Aplicações que você registrou" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8545,8 +8592,9 @@ msgid "Make Admin" msgstr "Tornar administrador" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Torna este usuário um administrador" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8663,6 +8711,7 @@ msgstr "Não sei como manipular esse tipo de destino." msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8753,7 +8802,8 @@ msgid "Repeated by" msgstr "Repetida por" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Responder a esta mensagem" #. TRANS: Link text in notice list item to reply to a notice. @@ -8761,8 +8811,9 @@ msgid "Reply" msgstr "Responder" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Excluir esta mensagem" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Excluir esta mensagem." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8816,6 +8867,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Descreva o grupo ou tópico em %d caracteres." msgstr[1] "Descreva o grupo ou tópico em %d caracteres." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Salvar" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9729,7 +9784,6 @@ msgid "Unsilence this user" msgstr "Encerrar o silenciamento deste usuário" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Cancelar a assinatura deste usuário" @@ -9740,6 +9794,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Cancelar" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Cancelar a assinatura deste usuário" + #. 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 @@ -9857,13 +9916,15 @@ msgstr "Não é um endereço de e-mail válido." msgid "Could not find a valid profile for \"%s\"." msgstr "Não foi possível salvar o perfil." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Ocorreu um erro grava, provavelmente relacionado à configuração de e-" -#~ "mail. Por favor, verifique os arquivos de log para maiores informações." +#~ msgid "Save paths" +#~ msgstr "Salvar caminhos" -#, fuzzy -#~ msgid "Tagged" -#~ msgstr "Etiqueta" +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Bloquear este usuário" + +#~ msgid "Delete this notice" +#~ msgstr "Excluir esta mensagem" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index cdbbeb0f18..b3804faedf 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:27+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37:04+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -105,11 +105,12 @@ msgstr "Отключить новые регистрации." msgid "Closed" msgstr "Закрыта" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Сохранить настройки доступа" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -447,16 +448,19 @@ msgstr "Неудача при блокировке пользователя." msgid "Unblock user failed." msgstr "Неудача при разблокировке пользователя." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Дискуссия" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Дискуссия" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Дискуссия" @@ -1750,6 +1754,10 @@ msgstr "Подтвердить адрес" msgid "The address \"%s\" has been confirmed for your account." msgstr "Адрес «%s» подтверждён для вашего аккаунта." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Дискуссия" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1828,7 +1836,8 @@ msgstr "" "Введите «%s» для подтверждения своего согласия на удаление учётной записи." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Навсегда удалить учётную запись" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2722,10 +2731,10 @@ msgstr "IM-установки" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Вы можете отправлять и получать записи с помощью [сервисов быстрых сообщений]" "(%%doc.im%%). Ниже вы можете изменить ваши адреса и настройки." @@ -3732,8 +3741,9 @@ msgid "Server to direct SSL requests to." msgstr "Сервер, которому направлять SSL-запросы." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Сохранить пути" +#, fuzzy +msgid "Save path settings." +msgstr "Сохранить настройки сайта" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4955,6 +4965,29 @@ msgstr "Сбросить ключ и секретную фразу" msgid "Application info" msgstr "Информация о приложении" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Неправильный запрос токена." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Неверный ключ доступа." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL источника" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5540,7 +5573,7 @@ msgstr "Текст уведомления сайта" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Текст уведомления сайта (максимум 255 символов; допустим HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Сохранить уведомление сайта." @@ -5735,7 +5768,7 @@ msgstr "URL отчёта" msgid "Snapshots will be sent to this URL." msgstr "Снимки будут отправляться по этому URL-адресу." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Сохранить настройки снимка." @@ -6149,7 +6182,7 @@ msgstr "Приглашения включены" msgid "Whether to allow users to invite new users." msgstr "Разрешать ли пользователям приглашать новых пользователей." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Сохранить пользовательские настройки." @@ -6372,8 +6405,9 @@ msgstr "Не удаётся обновить локальную группу." msgid "Could not create login token for %s" msgstr "Не удаётся создать токен входа для %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Не удаётся сохранить новый пароль." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7106,13 +7140,14 @@ msgstr "" "Доступ по умолчанию для этого приложения: только чтение или чтение и запись" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Отменить" +#, fuzzy +msgid "Cancel application changes." +msgstr "Подключённые приложения" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Сохранить" +#, fuzzy +msgid "Save application changes." +msgstr "Новое приложение" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7756,7 +7791,6 @@ msgid "Unable to find services for %s." msgstr "Не удаётся найти сервисы для %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Мне не нравится эта запись" @@ -7765,8 +7799,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Убрать из любимых" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Не удаётся восстановить любимые записи." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Мне нравится эта запись" @@ -7775,6 +7813,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "В любимые" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Не удаётся восстановить любимые записи." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7833,8 +7876,8 @@ msgstr "Заблокировать" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Заблокировать этого пользователя" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7985,11 +8028,14 @@ msgstr "Популярные группы" msgid "Active groups" msgstr "Активные группы" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Показать всех" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8136,8 +8182,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Покинуть" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Приложения, которые вы зарегистрировали" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8555,8 +8602,9 @@ msgid "Make Admin" msgstr "Сделать администратором" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Сделать этого пользователя администратором" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8673,6 +8721,7 @@ msgstr "Способ обработки цели такого типа неиз msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "Вы должны реализовать либо adaptNoticeListItem(), либо showNotice()." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8764,7 +8813,8 @@ msgid "Repeated by" msgstr "Повторено" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Ответить на эту запись" #. TRANS: Link text in notice list item to reply to a notice. @@ -8772,8 +8822,9 @@ msgid "Reply" msgstr "Ответить" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Удалить эту запись" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Удалить эту запись." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8822,6 +8873,10 @@ msgstr[0] "Опишите список или тему, используя до msgstr[1] "Опишите список или тему, используя до %d символов." msgstr[2] "Опишите список или тему, используя до %d символов." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Сохранить" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Удалить этот список." @@ -9682,7 +9737,6 @@ msgid "Unsilence this user" msgstr "Снять заглушение с этого пользователя." #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Отписаться от этого пользователя" @@ -9692,6 +9746,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Отписаться" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9813,12 +9872,15 @@ msgstr "Неверный электронный адрес." msgid "Could not find a valid profile for \"%s\"." msgstr "Не удаётся сохранить профиль." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Произошла важная ошибка, связанная, вероятно, с настройкой электронной " -#~ "почты. Проверьте файлы журналов для получения дополнительной информации." +#~ msgid "Save paths" +#~ msgstr "Сохранить пути" -#~ msgid "Tagged" -#~ msgstr "С тегом" +#~ msgid "Cancel" +#~ msgstr "Отменить" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Заблокировать этого пользователя" + +#~ msgid "Delete this notice" +#~ msgstr "Удалить эту запись" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index adb31ecc15..772bb27e29 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,12 +99,12 @@ msgstr "" msgid "Closed" msgstr "" -#. TRANS: Title for button to save access settings in site admin panel. +#. TRANS: Button title to save access settings in site admin panel. #: actions/accessadminpanel.php:191 -msgid "Save access settings" +msgid "Save access settings." msgstr "" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -427,7 +427,7 @@ msgstr "" #: actions/apiaccountratelimitstatus.php:70 #: actions/apiaccountupdatedeliverydevice.php:92 #: actions/apiaccountupdateprofile.php:94 -#: actions/apiaccountverifycredentials.php:68 actions/apiconversation.php:157 +#: actions/apiaccountverifycredentials.php:68 actions/apiconversation.php:156 #: actions/apidirectmessage.php:157 actions/apifavoritecreate.php:98 #: actions/apifavoritedestroy.php:98 actions/apifriendshipscreate.php:99 #: actions/apifriendshipsdestroy.php:99 actions/apifriendshipsshow.php:124 @@ -589,18 +589,20 @@ msgstr "" msgid "Unblock user failed." msgstr "" -#: actions/apiconversation.php:70 -msgid "no conversation id" +#. TRANS: Client exception thrown when no conversation ID is given. +#: actions/apiconversation.php:69 +msgid "No conversation ID." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). #: actions/apiconversation.php:76 #, php-format -msgid "No conversation with id %d" +msgid "No conversation with ID %d." msgstr "" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). -#: actions/apiconversation.php:106 actions/conversation.php:113 +#: actions/apiconversation.php:105 +msgctxt "TITLE" msgid "Conversation" msgstr "" @@ -2155,6 +2157,11 @@ msgstr "" msgid "The address \"%s\" has been confirmed for your account." msgstr "" +#. TRANS: Title for page with a conversion (multiple notices in context). +#: actions/conversation.php:113 +msgid "Conversation" +msgstr "" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #: actions/conversation.php:146 actions/conversation.php:162 @@ -2238,7 +2245,7 @@ msgstr "" #. TRANS: Button title for user account deletion. #: actions/deleteaccount.php:323 -msgid "Permanently delete your account" +msgid "Permanently delete your account." msgstr "" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -3264,8 +3271,8 @@ msgstr "" #: actions/imsettings.php:69 #, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. @@ -4442,7 +4449,7 @@ msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. #: actions/pathsadminpanel.php:465 -msgid "Save paths" +msgid "Save path settings." msgstr "" #. TRANS: Instructions for the "People search" page. @@ -5779,15 +5786,40 @@ msgstr "" msgid "Application info" msgstr "" +#. TRANS: Field label on application page. +#: actions/showapplication.php:257 +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +#: actions/showapplication.php:260 +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#: actions/showapplication.php:263 +msgid "Request token URL" +msgstr "" + +#. TRANS: Field label on application page. +#: actions/showapplication.php:266 +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#: actions/showapplication.php:269 +msgid "Authorize URL" +msgstr "" + #. TRANS: Note on the OAuth application page about signature support. -#: actions/showapplication.php:272 +#: actions/showapplication.php:275 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:293 +#: actions/showapplication.php:296 msgid "Are you sure you want to reset your consumer key and secret?" msgstr "" @@ -6428,7 +6460,7 @@ msgstr "" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 msgid "Save site notice." msgstr "" @@ -6657,7 +6689,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #: actions/snapshotadminpanel.php:256 msgid "Save snapshot settings." msgstr "" @@ -7134,7 +7166,7 @@ msgstr "" msgid "Whether to allow users to invite new users." msgstr "" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. #: actions/useradminpanel.php:304 msgid "Save user settings." msgstr "" @@ -7370,12 +7402,14 @@ msgstr "" msgid "Could not create login token for %s" msgstr "" -#: classes/Memcached_DataObject.php:128 classes/Memcached_DataObject.php:178 -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#: classes/Memcached_DataObject.php:129 classes/Memcached_DataObject.php:180 +#, php-format +msgid "Cannot instantiate class %s." msgstr "" #. TRANS: Exception thrown when database name or Data Source Name could not be found. -#: classes/Memcached_DataObject.php:708 +#: classes/Memcached_DataObject.php:710 msgid "No database name or DSN found anywhere." msgstr "" @@ -8231,13 +8265,12 @@ msgstr "" #. TRANS: Submit button title. #: lib/applicationeditform.php:353 -msgid "Cancel" +msgid "Cancel application changes." msgstr "" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -#: lib/applicationeditform.php:357 lib/peopletageditform.php:168 -msgid "Save" +#: lib/applicationeditform.php:357 +msgid "Save application changes." msgstr "" #. TRANS: Name for an anonymous application in application list. @@ -8983,8 +9016,7 @@ msgid "Unable to find services for %s." msgstr "" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. -#: lib/disfavorform.php:108 lib/disfavorform.php:140 +#: lib/disfavorform.php:108 msgid "Disfavor this notice" msgstr "" @@ -8994,9 +9026,13 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#: lib/disfavorform.php:140 +msgid "Remove this notice from your list of favorite notices." +msgstr "" + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. -#: lib/favorform.php:108 lib/favorform.php:139 +#: lib/favorform.php:108 msgid "Favor this notice" msgstr "" @@ -9006,6 +9042,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "" +#. TRANS: Button title for adding the favourite status to a notice. +#: lib/favorform.php:139 +msgid "Add this notice to your list of favorite notices." +msgstr "" + #. TRANS: Feed type name. #: lib/feed.php:88 msgid "RSS 1.0" @@ -9078,7 +9119,7 @@ msgstr "" #. TRANS: Submit button title. #: lib/groupblockform.php:128 msgctxt "TOOLTIP" -msgid "Block this user" +msgid "Block this user so that they can no longer post messages to it." msgstr "" #. TRANS: Field title on group edit form. @@ -9240,12 +9281,15 @@ msgstr "" msgid "Active groups" msgstr "" -#: lib/groupsnav.php:87 lib/listsnav.php:87 +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. +#: lib/groupsnav.php:88 lib/listsnav.php:88 msgid "See all" msgstr "" -#: lib/groupsnav.php:88 -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +#: lib/groupsnav.php:90 +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -9408,8 +9452,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "" -#: lib/listsnav.php:88 -msgid "See all lists you have created" +#. TRANS: Link title for seeing all lists. +#: lib/listsnav.php:90 +msgid "See all lists you have created." msgstr "" #. TRANS: Menu item for logging in to the StatusNet site. @@ -9785,7 +9830,7 @@ msgstr "" #. TRANS: Submit button title. #: lib/makeadminform.php:124 msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -9921,7 +9966,8 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" -#: lib/moremenu.php:96 +#. TRANS: Link description to show more items in a list. +#: lib/moremenu.php:93 msgid "More ▼" msgstr "" @@ -10029,7 +10075,7 @@ msgstr "" #. TRANS: Link title in notice list item to reply to a notice. #: lib/noticelistitem.php:629 -msgid "Reply to this notice" +msgid "Reply to this notice." msgstr "" #. TRANS: Link text in notice list item to reply to a notice. @@ -10039,7 +10085,7 @@ msgstr "" #. TRANS: Link title in notice list item to delete a notice. #: lib/noticelistitem.php:657 -msgid "Delete this notice" +msgid "Delete this notice from the timeline." msgstr "" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. @@ -10098,6 +10144,11 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "" msgstr[1] "" +#. TRANS: Button text to save a list. +#: lib/peopletageditform.php:168 +msgid "Save" +msgstr "" + #. TRANS: Button title to delete a list. #: lib/peopletageditform.php:175 msgid "Delete this list." @@ -11104,8 +11155,7 @@ msgid "Unsilence this user" msgstr "" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. -#: lib/unsubscribeform.php:109 lib/unsubscribeform.php:134 +#: lib/unsubscribeform.php:109 msgid "Unsubscribe from this user" msgstr "" @@ -11116,6 +11166,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "" +#. TRANS: Button title on unsubscribe form. +#: lib/unsubscribeform.php:134 +msgid "Unsubscribe from this user." +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). #: lib/usernoprofileexception.php:60 diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 06975f165c..5a66fef63e 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -15,17 +15,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:29+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37:05+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -101,11 +101,12 @@ msgstr "Inaktivera nya registreringar." msgid "Closed" msgstr "Stängd" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Spara inställningar för åtkomst" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -438,16 +439,19 @@ msgstr "Blockering av användare misslyckades." msgid "Unblock user failed." msgstr "Hävning av blockering av användare misslyckades." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Konversationer" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Konversationer" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Konversationer" @@ -1728,6 +1732,10 @@ msgstr "Bekräfta adress" msgid "The address \"%s\" has been confirmed for your account." msgstr "Adressen \"%s\" har blivit bekräftad för ditt konto." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Konversationer" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1803,7 +1811,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Ange \"%s\" för att bekräfta att du vill ta bort ditt konto." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Ta bort ditt konto permanent." #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2689,10 +2698,10 @@ msgstr "Inställningar för snabbmeddelanden" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Du kan skicka och ta emot meddelanden via [snabbmeddelanden](%%doc.im%%). " "Konfigurera adresser och inställningarna nedan." @@ -3686,8 +3695,9 @@ msgid "Server to direct SSL requests to." msgstr "Server att dirigera SSL-begäran till." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Spara sökvägar" +#, fuzzy +msgid "Save path settings." +msgstr "Spara webbplatsinställningar" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4901,6 +4911,29 @@ msgstr "Återställ nyckel & hemlighet" msgid "Application info" msgstr "Information om applikation" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Ogiltig begäran-token." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Felaktig åtkomst-token." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL för källa" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5481,7 +5514,7 @@ msgstr "Text för webbplatsnotis" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "Notistext för hela webbplatsen (max 255 tecken; HTML tillåts)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Spara webbplatsnotis." @@ -5674,7 +5707,7 @@ msgstr "URL för rapport" msgid "Snapshots will be sent to this URL." msgstr "Ögonblicksbilder kommer att skickas till denna webbadress." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Spara inställningar för ögonblicksbild." @@ -6090,7 +6123,7 @@ msgstr "Inbjudningar aktiverade" msgid "Whether to allow users to invite new users." msgstr "Hurvida användare skall tillåtas bjuda in nya användare." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Spara användarinställningar." @@ -6311,8 +6344,9 @@ msgstr "Kunde inte uppdatera lokal grupp." msgid "Could not create login token for %s" msgstr "Kunde inte skapa inloggnings-token för %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Kan inte spara nya lösenordet." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7035,13 +7069,14 @@ msgstr "" "Standardåtkomst för denna applikation: skrivskyddad, eller läs och skriv" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Avbryt" +#, fuzzy +msgid "Cancel application changes." +msgstr "Anslutna applikationer" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Spara" +#, fuzzy +msgid "Save application changes." +msgstr "Ny applikation" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7672,7 +7707,6 @@ msgid "Unable to find services for %s." msgstr "Det gick inte att hitta tjänster för %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Avmarkera denna notis som favorit" @@ -7681,8 +7715,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Ta bort märkning som favorit" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Kunde inte hämta favoritnotiser." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Markera denna notis som favorit" @@ -7691,6 +7729,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Markera som favorit" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Kunde inte hämta favoritnotiser." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7749,8 +7792,8 @@ msgstr "Blockera" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Blockera denna användare" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7894,11 +7937,14 @@ msgstr "Populära grupper" msgid "Active groups" msgstr "Aktiva grupper" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Visa alla" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8041,8 +8087,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Leave" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Applikationer du har registrerat" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8457,8 +8504,9 @@ msgid "Make Admin" msgstr "Gör till administratör" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Gör denna användare till administratör" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8575,6 +8623,7 @@ msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" "Du måste implementera antingen adaptNoticeListItem() eller showNotice()." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8665,7 +8714,8 @@ msgid "Repeated by" msgstr "Upprepad av" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Svara på denna notis" #. TRANS: Link text in notice list item to reply to a notice. @@ -8673,8 +8723,9 @@ msgid "Reply" msgstr "Svara" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Ta bort denna notis" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Ta bort denna notis." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8722,6 +8773,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Beskriv listan eller ämnet med %d tecken." msgstr[1] "Beskriv listan eller ämnet med %d tecken." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Spara" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Ta bort den här listan." @@ -9574,7 +9629,6 @@ msgid "Unsilence this user" msgstr "Häv nedtystning av denna användare" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Avsluta prenumerationen på denna användare" @@ -9584,6 +9638,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Avsluta pren." +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Avsluta prenumerationen på denna användare" + #. 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). #, php-format @@ -9699,12 +9758,15 @@ msgstr "Inte en giltig e-postadress." msgid "Could not find a valid profile for \"%s\"." msgstr "Kunde inte spara profil." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Ett viktigt fel uppstod, förmodligen relaterat till e-postinställningar. " -#~ "Kontrollera loggfiler för mer info." +#~ msgid "Save paths" +#~ msgstr "Spara sökvägar" -#~ msgid "Tagged" -#~ msgstr "Taggade" +#~ msgid "Cancel" +#~ msgstr "Avbryt" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Blockera denna användare" + +#~ msgid "Delete this notice" +#~ msgstr "Ta bort denna notis" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index e87dd57412..5bcc1e5a39 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:30+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37:07+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -89,11 +89,12 @@ msgstr "కొత్త నమోదులను అచేతనంచేయి. msgid "Closed" msgstr "మూసివేయబడింది" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "అందుబాటు అమరికలను భద్రపరచు" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -418,16 +419,19 @@ msgstr "వాడుకరి నిరోధం విఫలమైంది." msgid "Unblock user failed." msgstr "వాడుకరి నిరోధం విఫలమైంది." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "సంభాషణ" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "సంభాషణ" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "సంభాషణ" @@ -1705,6 +1709,10 @@ msgstr "చిరునామాని నిర్ధారించు" msgid "The address \"%s\" has been confirmed for your account." msgstr "\"%s\" అనే చిరునామా మీ ఖాతాకి నిర్ధారితమైంది." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "సంభాషణ" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1776,7 +1784,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "మీ ఖాతాను తొలగించుకోవాలనుకుంటున్నారని నిర్ధారించేందుకు \"%s\" అని టైపుచెయ్యండి." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "మీ ఖాతాని శాశ్వతంగా తొలగించుకోండి" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2662,8 +2671,8 @@ msgstr "IM అమరికలు" #. TRANS: the order and formatting of link text and link should remain unchanged. #, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" #. TRANS: Message given in the IM settings if IM is not enabled on the site. @@ -3670,8 +3679,8 @@ msgstr "" #. TRANS: Button title text to store form data in the Paths admin panel. #, fuzzy -msgid "Save paths" -msgstr "కొత్త సందేశం" +msgid "Save path settings." +msgstr "సైటు అమరికలను భద్రపరచు" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4881,6 +4890,28 @@ msgstr "" msgid "Application info" msgstr "ఉపకరణ సమాచారం" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "తప్పుడు పాత్ర." + +#. TRANS: Field label on application page. +msgid "Access token URL" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "మూలము" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5457,7 +5488,7 @@ msgstr "సైటు గమనిక పాఠ్యం" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "సైటు-వారీ నోటీసు పాఠ్యం (255 అక్షరాలు గరిష్ఠం; HTML ఇవ్వొచ్చు)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "సైటు గమనికను భద్రపరచండి." @@ -5652,7 +5683,7 @@ msgstr "" msgid "Snapshots will be sent to this URL." msgstr "" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. #, fuzzy msgid "Save snapshot settings." msgstr "సైటు అమరికలను భద్రపరచు" @@ -6067,7 +6098,7 @@ msgstr "ఆహ్వానాలని చేతనంచేసాం" msgid "Whether to allow users to invite new users." msgstr "వాడుకరులను కొత్త వారిని ఆహ్వానించడానికి అనుమతించాలా వద్దా." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "వాడుకరి అమరికలను భద్రపరచు." @@ -6268,8 +6299,9 @@ msgstr "స్థానిక గుంపుని తాజాకరించ msgid "Could not create login token for %s" msgstr "మారుపేర్లని సృష్టించలేకపోయాం." -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేకున్నాం." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7002,13 +7034,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "రద్దుచేయి" +#, fuzzy +msgid "Cancel application changes." +msgstr "సంధానిత ఉపకరణాలు" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "భద్రపరచు" +#, fuzzy +msgid "Save application changes." +msgstr "కొత్త ఉపకరణం" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7656,7 +7689,6 @@ msgid "Unable to find services for %s." msgstr "మీ ఉపకరణాన్ని మార్చడానికి ఈ ఫారాన్ని ఉపయోగించండి." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. #, fuzzy msgid "Disfavor this notice" msgstr "ఈ నోటీసుని తొలగించు" @@ -7667,8 +7699,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "ఇష్టాంశాలకు చేర్చు" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "ఈ నోటీసుని పునరావృతించు" @@ -7677,6 +7713,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "ఇష్టపడండి" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "ఇష్టాంశాన్ని సృష్టించలేకపోయాం." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7735,8 +7776,8 @@ msgstr "నిరోధించు" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "ఈ వాడుకరిని నిరోధించు" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. #, fuzzy @@ -7875,11 +7916,14 @@ msgstr "ప్రసిద్ధ గుంపులు" msgid "Active groups" msgstr "క్రియాశీల గుంపులు" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "అన్నీ చూపించు" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8019,8 +8063,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "వైదొలగండి" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "మీరు నమోదు చేసివున్న ఉపకరణాలు" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8431,8 +8476,9 @@ msgid "Make Admin" msgstr "నిర్వాహకున్ని చేయి" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8548,6 +8594,7 @@ msgstr "" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8638,7 +8685,8 @@ msgid "Repeated by" msgstr "%s యొక్క పునరావృతం" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "ఈ నోటీసుపై స్పందించండి" #. TRANS: Link text in notice list item to reply to a notice. @@ -8646,8 +8694,9 @@ msgid "Reply" msgstr "స్పందించండి" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "ఈ నోటీసుని తొలగించు" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "ఈ నోటీసుని తొలగించు." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8699,6 +8748,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి" msgstr[1] "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "భద్రపరచు" + #. TRANS: Button title to delete a list. #, fuzzy msgid "Delete this list." @@ -9561,7 +9614,6 @@ msgid "Unsilence this user" msgstr "ఈ వాడుకరిని తొలగించు" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "ఈ వాడుకరి నుండి చందామాను" @@ -9571,6 +9623,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "చందామాను" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9687,5 +9744,15 @@ msgid "Could not find a valid profile for \"%s\"." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." #, fuzzy -#~ msgid "Tagged" -#~ msgstr "ట్యాగు" +#~ msgid "Save paths" +#~ msgstr "కొత్త సందేశం" + +#~ msgid "Cancel" +#~ msgstr "రద్దుచేయి" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "ఈ వాడుకరిని నిరోధించు" + +#~ msgid "Delete this notice" +#~ msgstr "ఈ నోటీసుని తొలగించు" diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po index f672860136..ee6b4fca72 100644 --- a/locale/tl/LC_MESSAGES/statusnet.po +++ b/locale/tl/LC_MESSAGES/statusnet.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37: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-07-21 13:51:19+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-core\n" @@ -98,11 +98,12 @@ msgstr "Huwag paganahin ang bagong mga pagpapatala." msgid "Closed" msgstr "Nakasara na" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Sagipin ang mga itinakdang mapupuntahan" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -442,16 +443,19 @@ msgstr "Nabigo ang paghadlang ng tagagamit." msgid "Unblock user failed." msgstr "Nabigo ang hindi paghadlang sa tagagamit." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Pag-uusap" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Pag-uusap" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Pag-uusap" @@ -1763,6 +1767,10 @@ msgstr "Tiyakin ang tirahan" msgid "The address \"%s\" has been confirmed for your account." msgstr "Natiyak na ang tirahang \"%s\" para sa akawnt mo." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Pag-uusap" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1840,7 +1848,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Ipasok ang \"%s\" upang tiyakin na nais mong burahin ang akawnt mo." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Permanenteng burahin ang akawnt mo" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2753,10 +2762,10 @@ msgstr "Mga katakdaan ng IM" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Makapagpapadala at makatatanggap ka ng mga pabatid sa pamamagitan ng " "biglaang pagmemensahe [biglang mga mensahe](%%doc.im%%). Iayos ang mga " @@ -3780,8 +3789,9 @@ msgid "Server to direct SSL requests to." msgstr "Tagapaghain kung saan ituturo ang mga kahilingan ng SSL." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Sagipin ang mga landas" +#, fuzzy +msgid "Save path settings." +msgstr "Sagipin ang mga katakdaan ng sityo" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -5042,6 +5052,29 @@ msgstr "Muling itakda ang susi at lihim" msgid "Application info" msgstr "Kabatiran sa aplikasyon" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Hindi katanggap-tanggap na kahalip ng kahilingan." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Masamang kahalip ng pagpunta." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "Pinagmulang URL" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5650,7 +5683,7 @@ msgstr "" "Teksto ng pabatid na pambuong sityo (255 mga panitik ang pinakamataas; " "pinapayagan ang HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Sagipin ang pabatid ng sityo." @@ -5850,7 +5883,7 @@ msgstr "URL ng ulat" msgid "Snapshots will be sent to this URL." msgstr "Ang mga kuha ng kamera ay ipapadala sa URL na ito." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Sagipin ang mga pagtatakda sa kuha ng kamera." @@ -6279,7 +6312,7 @@ msgid "Whether to allow users to invite new users." msgstr "" "Kung papahintulutan ba mga tagagamit na mag-anyaya ng bagong mga tagagamit." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Sagipin ang mga katakdaan ng tagagamit." @@ -6509,8 +6542,9 @@ msgstr "Hindi maisapanahon ang katutubong pangkat." msgid "Could not create login token for %s" msgstr "Hindi malikha ang kahalip ng paglagdang papasok para kay %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Hindi masagip ang bagong hudyat." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7261,13 +7295,14 @@ msgstr "" "makakabasa at makakasulat" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Huwag ituloy" +#, fuzzy +msgid "Cancel application changes." +msgstr "Nakaugnay na mga aplikasyon" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Sagipin" +#, fuzzy +msgid "Save application changes." +msgstr "Bagong aplikasyon" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7913,7 +7948,6 @@ msgid "Unable to find services for %s." msgstr "Hindi matagpuan ang mga palingkuran para sa %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Huwag kagiliwan ang pabatid na ito" @@ -7922,8 +7956,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Huwag kagiliwan ang kinagigiliwan" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Hindi makuhang muli ang kinagigiliwang mga pabatid." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Kagiliwan ang pabatid na ito" @@ -7932,6 +7970,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Kagiliwan" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Hindi makuhang muli ang kinagigiliwang mga pabatid." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7990,8 +8033,8 @@ msgstr "Hadlangan" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Hadlangan ang tagagamit na ito" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -8138,11 +8181,14 @@ msgstr "Tanyag na mga pangkat" msgid "Active groups" msgstr "Masisiglang mga pangkat" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Ipakitang lahat" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8286,8 +8332,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Lumisan" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Ang ipinatala mong mga aplikasyon" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8712,8 +8759,9 @@ msgid "Make Admin" msgstr "Gawing Tagapangasiwa" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Gawing isang tagapangasiwa ang tagagamit na ito" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8834,6 +8882,7 @@ msgstr "" "Dapat mong ipatupad ang iakma ang Bagay ng Talaan ng Pabatid() o ipakita ang " "Pabatid()." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8925,7 +8974,8 @@ msgid "Repeated by" msgstr "Unulit ni" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Tumugon sa pabatid na ito" #. TRANS: Link text in notice list item to reply to a notice. @@ -8933,8 +8983,9 @@ msgid "Reply" msgstr "Tumugon" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Burahin ang pabatid na ito" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Burahin ang pabatid na ito." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8983,6 +9034,10 @@ msgid_plural "Describe the list or topic in %d characters." msgstr[0] "Ilarawan ang talaan o paksa sa loob ng %d panitik." msgstr[1] "Ilarawan ang talaan o paksa sa loob ng %d mga panitik." +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Sagipin" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Burahin ang talaang ito." @@ -9852,7 +9907,6 @@ msgid "Unsilence this user" msgstr "Huwag patahimikin ang tagagamit na ito" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Huwag nang magpasipi mula sa tagagamit na ito" @@ -9862,6 +9916,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Pahintuin na ang pagtanggap ng sipi" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +msgstr "Huwag nang magpasipi mula sa tagagamit na ito" + #. 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). #, php-format @@ -9979,13 +10038,15 @@ msgstr "Hindi isang katanggap-tanggap na tirahan ng e-liham." msgid "Could not find a valid profile for \"%s\"." msgstr "Hindi masagip ang balangkas." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Naganap ang isang mahalagang kamalian, maaaring may kaugnayan sa " -#~ "katakdaan ng e-liham. Suriin ang mga talaksan ng talaan para sa mas " -#~ "marami pang kabatiran." +#~ msgid "Save paths" +#~ msgstr "Sagipin ang mga landas" -#~ msgid "Tagged" -#~ msgstr "Natatakan na" +#~ msgid "Cancel" +#~ msgstr "Huwag ituloy" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Hadlangan ang tagagamit na ito" + +#~ msgid "Delete this notice" +#~ msgstr "Burahin ang pabatid na ito" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 008f136d3f..2bfa68604c 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:33+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37:10+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -100,11 +100,12 @@ msgstr "Скасувати подальшу реєстрацію." msgid "Closed" msgstr "Закрито" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "Зберегти параметри доступу" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -442,16 +443,19 @@ msgstr "Спроба заблокувати користувача невдал msgid "Unblock user failed." msgstr "Спроба розблокувати користувача невдала." +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "Розмова" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "Розмова" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "Розмова" @@ -1757,6 +1761,10 @@ msgstr "Підтвердити адресу" msgid "The address \"%s\" has been confirmed for your account." msgstr "Адресу «%s» підтверджено для вашого акаунту." +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "Розмова" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1833,7 +1841,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "Введіть «%s», тим самим підтверджуючи свою згоду на видалення акаунту." #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "Остаточне і негайне видалення акаунту" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2717,10 +2726,10 @@ msgstr "Налаштування ІМ" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "Ви можете надсилати та отримувати дописи через повідомлення [служби миттєвих " "повідомлень](%%doc.im%%). Вкажіть свою адресу і налаштуйте опції нижче." @@ -3729,8 +3738,9 @@ msgid "Server to direct SSL requests to." msgstr "Сервер на який направляти SSL-запити." #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "Зберегти шляхи" +#, fuzzy +msgid "Save path settings." +msgstr "Зберегти налаштування сайту" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4952,6 +4962,29 @@ msgstr "Призначити новий ключ і таємне слово" msgid "Application info" msgstr "Інфо додатку" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "Неправильний запит токену." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "Токен погодження невірний." + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "URL-адреса" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5539,7 +5572,7 @@ msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "" "Текст повідомлення сайту (255 символів максимум; деякий HTML дозволено)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "Зберегти повідомлення сайту." @@ -5732,7 +5765,7 @@ msgstr "Звітня URL-адреса" msgid "Snapshots will be sent to this URL." msgstr "Знімки надсилатимуться до цієї URL-адреси." -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "Зберегти налаштування знімків." @@ -6147,7 +6180,7 @@ msgid "Whether to allow users to invite new users." msgstr "" "В той чи інший спосіб дозволити користувачам вітати нових користувачів." -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "Зберегти налаштування користувача." @@ -6370,8 +6403,9 @@ msgstr "Не вдається оновити локальну спільноту msgid "Could not create login token for %s" msgstr "Не вдалося створити токен входу для %s" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "Не вдається зберегти новий пароль." #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -7100,13 +7134,14 @@ msgstr "" "Дозвіл за замовчуванням для цього додатку: лише читання або читати-писати" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "Скасувати" +#, fuzzy +msgid "Cancel application changes." +msgstr "Під’єднані додатки" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "Зберегти" +#, fuzzy +msgid "Save application changes." +msgstr "Новий додаток" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7753,7 +7788,6 @@ msgid "Unable to find services for %s." msgstr "Не вдається знайти послуги для %s." #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "Видалити з обраних" @@ -7762,8 +7796,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "Видалити з обраних" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "Не можна відновити обрані дописи." + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "Позначити як обране" @@ -7772,6 +7810,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "Обрати" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "Не можна відновити обрані дописи." + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7830,8 +7873,8 @@ msgstr "Блок" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "Блокувати користувача" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7981,11 +8024,14 @@ msgstr "Популярні спільноти" msgid "Active groups" msgstr "Активні спільноти" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "Показати всіх" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -8132,8 +8178,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "Залишити" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "Додатки, які ви зареєстрували" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8553,8 +8600,9 @@ msgid "Make Admin" msgstr "Зробити адміном" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "Надати цьому користувачеві права адміністратора" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8669,6 +8717,7 @@ msgstr "Не знаю, як обробити ціль такого типу." msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "Ви повинні виконати або adaptNoticeListItem(), або showNotice()." +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8760,7 +8809,8 @@ msgid "Repeated by" msgstr "Повторено" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "Відповісти на цей допис" #. TRANS: Link text in notice list item to reply to a notice. @@ -8768,8 +8818,9 @@ msgid "Reply" msgstr "Відповісти" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "Видалити допис" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "Видалити допис." #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8818,6 +8869,10 @@ msgstr[0] "Опишіть список або тему, вкладаючись msgstr[1] "Опишіть список або тему, вкладаючись у %d знаків" msgstr[2] "Опишіть список або тему, вкладаючись у %d знаків" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "Зберегти" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "Видалити цей список." @@ -9680,7 +9735,6 @@ msgid "Unsilence this user" msgstr "Витягти кляп, дозволити базікати знов" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" @@ -9690,6 +9744,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "Відписатись" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9809,13 +9868,15 @@ msgstr "Це недійсна електронна адреса." msgid "Could not find a valid profile for \"%s\"." msgstr "Не вдалося зберегти профіль." -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "Трапилася важлива помилка, ймовірно, пов’язана з налаштуванням " -#~ "електронної пошти. Перевірте файли конфігурації для отримання докладнішої " -#~ "інформації." +#~ msgid "Save paths" +#~ msgstr "Зберегти шляхи" -#~ msgid "Tagged" -#~ msgstr "З теґом" +#~ msgid "Cancel" +#~ msgstr "Скасувати" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "Блокувати користувача" + +#~ msgid "Delete this notice" +#~ msgstr "Видалити допис" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 32e562e7bc..0c30edf16d 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -18,17 +18,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:35+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:37:11+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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-07-21 13:51:19+0000\n" +"X-POT-Import-Date: 2011-08-16 06:58:31+0000\n" #. TRANS: Database error message. #, php-format @@ -99,11 +99,12 @@ msgstr "禁止新用户注册。" msgid "Closed" msgstr "封闭(不允许新用户注册)" -#. TRANS: Title for button to save access settings in site admin panel. -msgid "Save access settings" +#. TRANS: Button title to save access settings in site admin panel. +#, fuzzy +msgid "Save access settings." msgstr "保存访问设置" -#. TRANS: Tooltip for button to save access settings in site admin panel. +#. TRANS: Button text to save access settings in site admin panel. #. TRANS: Button label to save e-mail preferences. #. TRANS: Button label to save IM preferences. #. TRANS: Button text in the license admin panel. @@ -428,16 +429,19 @@ msgstr "屏蔽用户失败。" msgid "Unblock user failed." msgstr "取消屏蔽用户失败。" +#. TRANS: Client exception thrown when no conversation ID is given. #, fuzzy -msgid "no conversation id" +msgid "No conversation ID." msgstr "对话" -#, php-format -msgid "No conversation with id %d" -msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing conversation ID (%d). +#, fuzzy, php-format +msgid "No conversation with ID %d." +msgstr "对话" #. TRANS: Timeline title for user and friends. %s is a user nickname. -#. TRANS: Title for page with a conversion (multiple notices in context). +#, fuzzy +msgctxt "TITLE" msgid "Conversation" msgstr "对话" @@ -1694,6 +1698,10 @@ msgstr "确认地址" msgid "The address \"%s\" has been confirmed for your account." msgstr "你账户的地址 \"%s\" 已被确认。" +#. TRANS: Title for page with a conversion (multiple notices in context). +msgid "Conversation" +msgstr "对话" + #. TRANS: Title for link to notice feed. #. TRANS: %s is a user nickname. #, fuzzy @@ -1765,7 +1773,8 @@ msgid "Enter \"%s\" to confirm that you want to delete your account." msgstr "输入\"%s\",以确认您要删除您的帐户。" #. TRANS: Button title for user account deletion. -msgid "Permanently delete your account" +#, fuzzy +msgid "Permanently delete your account." msgstr "永久删除您的帐户" #. TRANS: Client error displayed trying to delete an application while not logged in. @@ -2625,10 +2634,10 @@ msgstr "IM 设置" #. 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. -#, php-format +#, fuzzy, php-format msgid "" -"You can send and receive notices through instant messaging [instant messages]" -"(%%doc.im%%). Configure your addresses and settings below." +"You can send and receive notices through [instant messaging](%%doc.im%%). " +"Configure your addresses and settings below." msgstr "" "你可以通过即时通讯 [即时通讯工具](%%doc.im%%)发送和接收消息。在这里配置它们。" @@ -3602,8 +3611,9 @@ msgid "Server to direct SSL requests to." msgstr "直接SSL请求的服务器" #. TRANS: Button title text to store form data in the Paths admin panel. -msgid "Save paths" -msgstr "保存路径" +#, fuzzy +msgid "Save path settings." +msgstr "保存网站设置。" #. TRANS: Instructions for the "People search" page. #. TRANS: %%site.name%% is the name of the StatusNet site. @@ -4767,6 +4777,29 @@ msgstr "重置key和secret" msgid "Application info" msgstr "应用程序信息" +#. TRANS: Field label on application page. +msgid "Consumer key" +msgstr "" + +#. TRANS: Field label on application page. +msgid "Consumer secret" +msgstr "" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Request token URL" +msgstr "无效的 token。" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Access token URL" +msgstr "无效的 access token。" + +#. TRANS: Field label on application page. +#, fuzzy +msgid "Authorize URL" +msgstr "来源网址" + #. TRANS: Note on the OAuth application page about signature support. msgid "" "Note: HMAC-SHA1 signatures are supported. The plaintext signature method is " @@ -5332,7 +5365,7 @@ msgstr "网站公告文字" msgid "Site-wide notice text (255 characters maximum; HTML allowed)" msgstr "整个网站的公告文字(最长255字符;可使用HTML)" -#. TRANS: Title for button to save site notice in admin panel. +#. TRANS: Button title to save site notice in admin panel. msgid "Save site notice." msgstr "保存网站公告。" @@ -5521,7 +5554,7 @@ msgstr "报告 URL" msgid "Snapshots will be sent to this URL." msgstr "快照将被发送到这个 URL。" -#. TRANS: Title for button to save snapshot settings. +#. TRANS: Button title to save snapshot settings. msgid "Save snapshot settings." msgstr "保存快照设置" @@ -5923,7 +5956,7 @@ msgstr "邀请已启用" msgid "Whether to allow users to invite new users." msgstr "是否允许用户发送注册邀请。" -#. TRANS: Title for button to save user settings in user admin panel. +#. TRANS: Button title to save user settings in user admin panel. msgid "Save user settings." msgstr "保存用户设置。" @@ -6125,8 +6158,9 @@ msgstr "无法更新本地小组。" msgid "Could not create login token for %s" msgstr "无法创建别名。" -#, fuzzy -msgid "Cannot instantiate class " +#. TRANS: Exception thrown when a class (%s) could not be instantiated. +#, fuzzy, php-format +msgid "Cannot instantiate class %s." msgstr "无法保存新密码。" #. TRANS: Exception thrown when database name or Data Source Name could not be found. @@ -6840,13 +6874,14 @@ msgid "Default access for this application: read-only, or read-write" msgstr "该应用默认的访问权限:只读或读写" #. TRANS: Submit button title. -msgid "Cancel" -msgstr "取消" +#, fuzzy +msgid "Cancel application changes." +msgstr "关联的应用" #. TRANS: Submit button title. -#. TRANS: Button text to save a list. -msgid "Save" -msgstr "保存" +#, fuzzy +msgid "Save application changes." +msgstr "新应用" #. TRANS: Name for an anonymous application in application list. msgid "Unknown application" @@ -7467,7 +7502,6 @@ msgid "Unable to find services for %s." msgstr "无法找到 %s 的服务。" #. TRANS: Form legend for removing the favourite status for a favourite notice. -#. TRANS: Title for button text for removing the favourite status for a favourite notice. msgid "Disfavor this notice" msgstr "取消收藏这个消息" @@ -7476,8 +7510,12 @@ msgctxt "BUTTON" msgid "Disfavor favorite" msgstr "不赞成的最爱" +#. TRANS: Button title for removing the favourite status for a favourite notice. +#, fuzzy +msgid "Remove this notice from your list of favorite notices." +msgstr "无法获取收藏的消息。" + #. TRANS: Form legend for adding the favourite status to a notice. -#. TRANS: Title for button text for adding the favourite status to a notice. msgid "Favor this notice" msgstr "收藏" @@ -7486,6 +7524,11 @@ msgctxt "BUTTON" msgid "Favor" msgstr "请" +#. TRANS: Button title for adding the favourite status to a notice. +#, fuzzy +msgid "Add this notice to your list of favorite notices." +msgstr "无法获取收藏的消息。" + #. TRANS: Feed type name. msgid "RSS 1.0" msgstr "RSS 1.0" @@ -7544,8 +7587,8 @@ msgstr "屏蔽" #. TRANS: Submit button title. msgctxt "TOOLTIP" -msgid "Block this user" -msgstr "屏蔽这个用户" +msgid "Block this user so that they can no longer post messages to it." +msgstr "" #. TRANS: Field title on group edit form. msgid "URL of the homepage or blog of the group or topic." @@ -7680,11 +7723,14 @@ msgstr "热门的小组" msgid "Active groups" msgstr "活跃的小组" +#. TRANS: Link description for seeing all groups. +#. TRANS: Link description for seeing all lists. #, fuzzy msgid "See all" msgstr "显示全部" -msgid "See all groups you belong to" +#. TRANS: Link title for seeing all groups. +msgid "See all groups you belong to." msgstr "" #. TRANS: Title for group tag cloud section. @@ -7818,8 +7864,9 @@ msgctxt "BUTTON" msgid "Leave" msgstr "离开" +#. TRANS: Link title for seeing all lists. #, fuzzy -msgid "See all lists you have created" +msgid "See all lists you have created." msgstr "你已经登记的程序。" #. TRANS: Menu item for logging in to the StatusNet site. @@ -8250,8 +8297,9 @@ msgid "Make Admin" msgstr "设置管理员" #. TRANS: Submit button title. +#, fuzzy msgctxt "TOOLTIP" -msgid "Make this user an admin" +msgid "Make this user an admin." msgstr "将这个用户设为管理员" #. TRANS: Client exception thrown when a database error was thrown during a file upload operation. @@ -8364,6 +8412,7 @@ msgstr "不知道如何处理这种类型的目标。" msgid "You must implement either adaptNoticeListItem() or showNotice()." msgstr "" +#. TRANS: Link description to show more items in a list. msgid "More ▼" msgstr "" @@ -8451,7 +8500,8 @@ msgid "Repeated by" msgstr "转发来自" #. TRANS: Link title in notice list item to reply to a notice. -msgid "Reply to this notice" +#, fuzzy +msgid "Reply to this notice." msgstr "回复" #. TRANS: Link text in notice list item to reply to a notice. @@ -8459,8 +8509,9 @@ msgid "Reply" msgstr "回复" #. TRANS: Link title in notice list item to delete a notice. -msgid "Delete this notice" -msgstr "删除" +#, fuzzy +msgid "Delete this notice from the timeline." +msgstr "删除此通知。" #. TRANS: Title for repeat form status in notice list when a notice has been repeated. msgid "Notice repeated." @@ -8510,6 +8561,10 @@ msgid "Describe the list or topic in %d character." msgid_plural "Describe the list or topic in %d characters." msgstr[0] "用不超过%d个字符描述你的应用" +#. TRANS: Button text to save a list. +msgid "Save" +msgstr "保存" + #. TRANS: Button title to delete a list. msgid "Delete this list." msgstr "删除此列表。" @@ -9340,7 +9395,6 @@ msgid "Unsilence this user" msgstr "取消对这个用户的禁言" #. TRANS: Form legend on unsubscribe form. -#. TRANS: Button title on unsubscribe form. msgid "Unsubscribe from this user" msgstr "取消关注这个用户" @@ -9350,6 +9404,11 @@ msgctxt "BUTTON" msgid "Unsubscribe" msgstr "取消关注" +#. TRANS: Button title on unsubscribe form. +#, fuzzy +msgid "Unsubscribe from this user." +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). #, php-format @@ -9461,11 +9520,15 @@ msgstr "不是有效的电子邮件。" msgid "Could not find a valid profile for \"%s\"." msgstr "无法保存个人信息。" -#~ msgid "" -#~ "An important error occured, probably related to email setup. Check " -#~ "logfiles for more info." -#~ msgstr "" -#~ "出现了一个重要错误,可能与电子邮件设置有关。详细信息请检查日志文件。" +#~ msgid "Save paths" +#~ msgstr "保存路径" -#~ msgid "Tagged" -#~ msgstr "标签" +#~ msgid "Cancel" +#~ msgstr "取消" + +#~ msgctxt "TOOLTIP" +#~ msgid "Block this user" +#~ msgstr "屏蔽这个用户" + +#~ msgid "Delete this notice" +#~ msgstr "删除" diff --git a/plugins/APC/locale/APC.pot b/plugins/APC/locale/APC.pot index ed57d068d9..aa73c25298 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/AccountManager.pot b/plugins/AccountManager/locale/AccountManager.pot index 455f4be251..516a727710 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Adsense.pot b/plugins/Adsense/locale/Adsense.pot index cf4e1c0e65..ab94d9fa87 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Aim.pot b/plugins/Aim/locale/Aim.pot index 68092ec1ea..ce08d2710e 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index 344e159520..a5e34833af 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ar/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po new file mode 100644 index 0000000000..4e251c1fd0 --- /dev/null +++ b/plugins/AnonymousFave/locale/ar/LC_MESSAGES/AnonymousFave.po @@ -0,0 +1,86 @@ +# Translation of StatusNet - AnonymousFave 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 - AnonymousFave\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34:26+0000\n" +"Language-Team: Arabic \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-06-05 21:49:09+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-anonymousfave\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#, php-format +msgid "Could not update favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Server exception. +#. TRANS: %d is the notice ID (number). +#, php-format +msgid "Could not create favorite tally for notice ID %d." +msgstr "" + +#. TRANS: Client error. +msgid "" +"Could not disfavor notice! Please make sure your browser has cookies enabled." +msgstr "" + +#. TRANS: Client error. +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#. TRANS: Client error. +msgid "This notice is not a favorite!" +msgstr "هذا الإشعار ليس مفضلًا!" + +#. TRANS: Server error. +msgid "Could not delete favorite." +msgstr "تعذّر حذف المفضلة." + +#. TRANS: Title. +msgid "Add to favorites" +msgstr "أضف إلى المفضلات" + +#. TRANS: Label for tally for number of times a notice was favored. +msgid "Favored" +msgstr "مفضل" + +#. TRANS: Server exception. +msgid "Could not create anonymous user session." +msgstr "" + +#. TRANS: Plugin description. +msgid "Allow anonymous users to favorite notices." +msgstr "اسمح للمستخدمين المجهولين بتفضيل الإشعارات." + +#. TRANS: Client error. +msgid "" +"Could not favor notice! Please make sure your browser has cookies enabled." +msgstr "" + +#. TRANS: Client error. +msgid "This notice is already a favorite!" +msgstr "هذا الإشعار مفضل سابقا!" + +#. TRANS: Server error. +msgid "Could not create favorite." +msgstr "تعذّر إنشاء مفضلة." + +#. TRANS: Title. +msgid "Disfavor favorite" +msgstr "إلغاء التفضيل" diff --git a/plugins/ApiLogger/locale/ApiLogger.pot b/plugins/ApiLogger/locale/ApiLogger.pot index d201951d07..a47df6f976 100644 --- a/plugins/ApiLogger/locale/ApiLogger.pot +++ b/plugins/ApiLogger/locale/ApiLogger.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/AutoSandbox.pot b/plugins/AutoSandbox/locale/AutoSandbox.pot index 1d94f3f2de..4ce6cd8f33 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Autocomplete.pot b/plugins/Autocomplete/locale/Autocomplete.pot index 8ab4dab32c..f2cbbe50ae 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ar/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po new file mode 100644 index 0000000000..87a1154111 --- /dev/null +++ b/plugins/Autocomplete/locale/ar/LC_MESSAGES/Autocomplete.po @@ -0,0 +1,32 @@ +# Translation of StatusNet - Autocomplete 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 - Autocomplete\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34: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-06-05 21:49:45+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ar\n" +"X-Message-Group: #out-statusnet-plugin-autocomplete\n" +"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " +"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " +"99) ? 4 : 5 ) ) ) );\n" + +#. TRANS: Plugin description. +msgid "The autocomplete plugin adds autocompletion for @ replies." +msgstr "" + +#. TRANS: Client exception in autocomplete plugin. +msgid "Access forbidden." +msgstr "الوصول محظور." diff --git a/plugins/Awesomeness/locale/Awesomeness.pot b/plugins/Awesomeness/locale/Awesomeness.pot index 8b72a298a1..f7b6a02a2b 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/BitlyUrl.pot b/plugins/BitlyUrl/locale/BitlyUrl.pot index 4b29dcadd6..e6f97854f9 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po index 718bee7768..d8ebba15ff 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:19:57+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34: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-06-05 21:49:47+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-bitlyurl\n" @@ -37,20 +37,17 @@ msgstr "" "tillater deg å bruke bit.lys sporingsfunksjoner og egendefinerte domener." #. TRANS: Client error displayed when using too long a key. -#, fuzzy msgid "Invalid login. Maximum length is 255 characters." -msgstr "Ugyldig pålogging. Maks lengde er 255 tegn." +msgstr "Ugyldig brukernavn. Maks lengde er 255 tegn." #. TRANS: Client error displayed when using too long a key. -#, fuzzy msgid "Invalid API key. Maximum length is 255 characters." msgstr "Ugyldig API-nøkkel. Maks lengde er 255 tegn." #. TRANS: Fieldset legend in administration panel for bit.ly username and API key. -#, fuzzy msgctxt "LEGEND" msgid "Credentials" -msgstr "Attester" +msgstr "Påloggingsinformasjon" #. TRANS: Form guide in administration panel for bit.ly URL shortening. msgid "Leave these empty to use global default credentials." @@ -78,9 +75,8 @@ msgid "Save bit.ly settings" msgstr "Lagre bit.ly-innstillinger" #. TRANS: Exception thrown when bit.ly URL shortening plugin was configured incorrectly. -#, fuzzy msgid "You must specify a serviceUrl for bit.ly URL shortening." -msgstr "Du må angi en serviceUrl for bit.ly-forkortelse." +msgstr "Du må angi en serviceUrl for bit.ly URL-forkortelse." #. TRANS: Plugin description. %1$s is the URL shortening service base URL (for example "bit.ly"). #, php-format @@ -92,6 +88,5 @@ msgid "bit.ly" msgstr "bit.ly" #. TRANS: Title for menu item in administration menus for bit.ly URL shortening settings. -#, fuzzy msgid "bit.ly URL shortening." -msgstr "bit.ly URL-forkortelse" +msgstr "bit.ly URL-forkortelse." diff --git a/plugins/Blacklist/locale/Blacklist.pot b/plugins/Blacklist/locale/Blacklist.pot index 5ee8eadf24..c274d5348f 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/BlankAd.pot b/plugins/BlankAd/locale/BlankAd.pot index bb522be448..42b22433e8 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Blog/locale/Blog.pot b/plugins/Blog/locale/Blog.pot index 8dbe2ba52b..2043b1dad9 100644 --- a/plugins/Blog/locale/Blog.pot +++ b/plugins/Blog/locale/Blog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -36,61 +36,72 @@ msgstr "" msgid "Blog entry saved" msgstr "" -#: BlogPlugin.php:123 +#. TRANS: Plugin description. +#: BlogPlugin.php:124 msgid "Let users write and share long-form texts." msgstr "" -#: BlogPlugin.php:129 +#. TRANS: Blog application title. +#: BlogPlugin.php:131 +msgctxt "TITLE" msgid "Blog" msgstr "" #. TRANS: Exception thrown when there are too many activity objects. -#: BlogPlugin.php:146 +#: BlogPlugin.php:148 msgid "Too many activity objects." msgstr "" -#. TRANS: Exception thrown when blog plugin comes across a non-event type object. -#: BlogPlugin.php:153 +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. +#: BlogPlugin.php:155 msgid "Wrong type for object." msgstr "" #. TRANS: Exception thrown when blog plugin comes across a undefined verb. -#: BlogPlugin.php:167 +#: BlogPlugin.php:169 msgid "Unknown verb for blog entries." msgstr "" +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#: BlogPlugin.php:181 +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing blog entry. -#: showblogentry.php:61 showblogentry.php:68 +#: showblogentry.php:60 showblogentry.php:67 msgid "No such entry." msgstr "" +#. TRANS: Title for a blog entry without a title. #: showblogentry.php:84 msgid "Untitled" msgstr "" #. TRANS: Field label on blog entry form. -#: blogentryform.php:93 +#: blogentryform.php:92 msgctxt "LABEL" msgid "Title" msgstr "" #. TRANS: Field title on blog entry form. -#: blogentryform.php:96 +#: blogentryform.php:95 msgid "Title of the blog entry." msgstr "" -#. TRANS: Field label on event form. -#: blogentryform.php:103 +#. TRANS: Field label on blog entry form. +#: blogentryform.php:102 msgctxt "LABEL" msgid "Text" msgstr "" -#. TRANS: Field title on event form. -#: blogentryform.php:106 +#. TRANS: Field title on blog entry form. +#: blogentryform.php:105 msgid "Text of the blog entry." msgstr "" -#: blogentryform.php:129 +#. TRANS: Button text to save a blog entry. +#: blogentryform.php:128 msgctxt "BUTTON" msgid "Save" msgstr "" diff --git a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po index 25b3e9fcf6..91d97f05bf 100644 --- a/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ca/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:01+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -37,9 +37,13 @@ msgstr "Cal un contingut." msgid "Blog entry saved" msgstr "S'ha desat l'entrada de blog." +#. TRANS: Plugin description. msgid "Let users write and share long-form texts." msgstr "Permet als usuaris escriure i compartir textos de formularis llargs." +#. TRANS: Blog application title. +#, fuzzy +msgctxt "TITLE" msgid "Blog" msgstr "Blog" @@ -47,7 +51,7 @@ msgstr "Blog" msgid "Too many activity objects." msgstr "Masses objectes d'activitat." -#. TRANS: Exception thrown when blog plugin comes across a non-event type object. +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. msgid "Wrong type for object." msgstr "Tipus d'objecte incorrecte." @@ -55,10 +59,16 @@ msgstr "Tipus d'objecte incorrecte." msgid "Unknown verb for blog entries." msgstr "Verb desconegut de les entrades de blog." +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." msgstr "No existeix l'entrada." +#. TRANS: Title for a blog entry without a title. msgid "Untitled" msgstr "Sense títol" @@ -71,15 +81,16 @@ msgstr "Títol" msgid "Title of the blog entry." msgstr "Títol de l'entrada de blog." -#. TRANS: Field label on event form. +#. TRANS: Field label on blog entry form. msgctxt "LABEL" msgid "Text" msgstr "Text" -#. TRANS: Field title on event form. +#. TRANS: Field title on blog entry form. msgid "Text of the blog entry." msgstr "Text de l'entrada de blog." +#. TRANS: Button text to save a blog entry. msgctxt "BUTTON" msgid "Save" msgstr "Desa" diff --git a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po index 277eee74ca..ec5db72900 100644 --- a/plugins/Blog/locale/de/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/de/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -37,9 +37,12 @@ msgstr "Inhalt erforderlich." msgid "Blog entry saved" msgstr "Blog-Eintrag gespeichert" +#. TRANS: Plugin description. msgid "Let users write and share long-form texts." msgstr "" +#. TRANS: Blog application title. +msgctxt "TITLE" msgid "Blog" msgstr "" @@ -47,7 +50,7 @@ msgstr "" msgid "Too many activity objects." msgstr "" -#. TRANS: Exception thrown when blog plugin comes across a non-event type object. +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. msgid "Wrong type for object." msgstr "" @@ -55,10 +58,16 @@ msgstr "" msgid "Unknown verb for blog entries." msgstr "" +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." msgstr "Kein solcher Eintrag" +#. TRANS: Title for a blog entry without a title. msgid "Untitled" msgstr "Ohne Titel" @@ -71,15 +80,16 @@ msgstr "Titel" msgid "Title of the blog entry." msgstr "Titel des Blog-Eintrags" -#. TRANS: Field label on event form. +#. TRANS: Field label on blog entry form. msgctxt "LABEL" msgid "Text" msgstr "" -#. TRANS: Field title on event form. +#. TRANS: Field title on blog entry form. msgid "Text of the blog entry." msgstr "Text des Blog-Eintrages" +#. TRANS: Button text to save a blog entry. msgctxt "BUTTON" msgid "Save" msgstr "Speichern" diff --git a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po index de226ce026..3280c30bab 100644 --- a/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/ia/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -37,9 +37,13 @@ msgstr "Contento requirite." msgid "Blog entry saved" msgstr "Articulo de blog salveguardate" +#. TRANS: Plugin description. msgid "Let users write and share long-form texts." msgstr "Permitte que usatores scribe e divide textos longe." +#. TRANS: Blog application title. +#, fuzzy +msgctxt "TITLE" msgid "Blog" msgstr "Blog" @@ -47,7 +51,7 @@ msgstr "Blog" msgid "Too many activity objects." msgstr "Troppo de objectos de activitate." -#. TRANS: Exception thrown when blog plugin comes across a non-event type object. +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. msgid "Wrong type for object." msgstr "Typo errate pro iste objecto." @@ -55,10 +59,16 @@ msgstr "Typo errate pro iste objecto." msgid "Unknown verb for blog entries." msgstr "Verbo incognite pro articulos de blog." +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." msgstr "Articulo non existe." +#. TRANS: Title for a blog entry without a title. msgid "Untitled" msgstr "Sin titulo" @@ -71,15 +81,16 @@ msgstr "Titulo" msgid "Title of the blog entry." msgstr "Le titulo del articulo de blog." -#. TRANS: Field label on event form. +#. TRANS: Field label on blog entry form. msgctxt "LABEL" msgid "Text" msgstr "Texto" -#. TRANS: Field title on event form. +#. TRANS: Field title on blog entry form. msgid "Text of the blog entry." msgstr "Le texto del articulo de blog." +#. TRANS: Button text to save a blog entry. msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" diff --git a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po index ba617e8484..50dcbca281 100644 --- a/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/mk/LC_MESSAGES/Blog.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -37,11 +37,15 @@ msgstr "Се бара содржина." msgid "Blog entry saved" msgstr "Блоговскиот запис е зачуван." +#. TRANS: Plugin description. msgid "Let users write and share long-form texts." msgstr "" "Им овозможува на корисниците да пишуваат и споделуваат текстови во долг " "облик." +#. TRANS: Blog application title. +#, fuzzy +msgctxt "TITLE" msgid "Blog" msgstr "Блог" @@ -49,7 +53,7 @@ msgstr "Блог" msgid "Too many activity objects." msgstr "Премногу објекти на активност." -#. TRANS: Exception thrown when blog plugin comes across a non-event type object. +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. msgid "Wrong type for object." msgstr "Погрешен тип на објект." @@ -57,10 +61,16 @@ msgstr "Погрешен тип на објект." msgid "Unknown verb for blog entries." msgstr "Непознат глаголот за блоговските записи." +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." msgstr "Нема таква ставка." +#. TRANS: Title for a blog entry without a title. msgid "Untitled" msgstr "Без наслов" @@ -73,15 +83,16 @@ msgstr "Наслов" msgid "Title of the blog entry." msgstr "Наслов на блоговскиот запис." -#. TRANS: Field label on event form. +#. TRANS: Field label on blog entry form. msgctxt "LABEL" msgid "Text" msgstr "Текст" -#. TRANS: Field title on event form. +#. TRANS: Field title on blog entry form. msgid "Text of the blog entry." msgstr "Текст на блоговскиот запис." +#. TRANS: Button text to save a blog entry. msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" diff --git a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po index cd11c1eac0..643f5433bd 100644 --- a/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po +++ b/plugins/Blog/locale/nl/LC_MESSAGES/Blog.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Blog\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34: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-07-01 11:17:57+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-blog\n" @@ -38,9 +38,13 @@ msgstr "Inhoud is verplicht." msgid "Blog entry saved" msgstr "Blogbericht is opgeslagen" +#. TRANS: Plugin description. msgid "Let users write and share long-form texts." msgstr "Laat gebruikers langere teksten schrijven en delen." +#. TRANS: Blog application title. +#, fuzzy +msgctxt "TITLE" msgid "Blog" msgstr "Blog" @@ -48,7 +52,7 @@ msgstr "Blog" msgid "Too many activity objects." msgstr "Te veel activiteitobjecten." -#. TRANS: Exception thrown when blog plugin comes across a non-event type object. +#. TRANS: Exception thrown when blog plugin comes across a non-blog entry type object. msgid "Wrong type for object." msgstr "Verkeerde type voor object." @@ -56,10 +60,16 @@ msgstr "Verkeerde type voor object." msgid "Unknown verb for blog entries." msgstr "Onbekende werkwoord voor blogberichten." +#. TRANS: Exception thrown when requesting a non-existing blog entry for notice. +#, php-format +msgid "No blog entry for notice %s." +msgstr "" + #. TRANS: Client exception thrown when referring to a non-existing blog entry. msgid "No such entry." msgstr "Geen dergelijke vermelding." +#. TRANS: Title for a blog entry without a title. msgid "Untitled" msgstr "Zonder titel" @@ -72,15 +82,16 @@ msgstr "Titel" msgid "Title of the blog entry." msgstr "Titel van het blogbericht." -#. TRANS: Field label on event form. +#. TRANS: Field label on blog entry form. msgctxt "LABEL" msgid "Text" msgstr "Tekst" -#. TRANS: Field title on event form. +#. TRANS: Field title on blog entry form. msgid "Text of the blog entry." msgstr "Tekst van het blogbericht." +#. TRANS: Button text to save a blog entry. msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" diff --git a/plugins/BlogspamNet/locale/BlogspamNet.pot b/plugins/BlogspamNet/locale/BlogspamNet.pot index 333dc0b554..6dda202df0 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot index 0b01354048..3d91a2f5e2 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/CacheLog.pot b/plugins/CacheLog/locale/CacheLog.pot index 6d2e69113c..97a75c1780 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/CasAuthentication.pot b/plugins/CasAuthentication/locale/CasAuthentication.pot index efa5355cf1..e64c89ac44 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ClientSideShorten.pot b/plugins/ClientSideShorten/locale/ClientSideShorten.pot index 3b90996cb3..ebfc59c543 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po index 79dad3e2b5..ffc55cc138 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:10+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34:49+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-06-05 21:49:52+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-clientsideshorten\n" @@ -30,6 +30,5 @@ msgstr "" "forkorter URL-er mens de skrives inn, og før notisen sendes inn." #. TRANS: Client exception thrown when a text argument is not present. -#, fuzzy msgid "\"text\" argument must be specified." -msgstr "'text'-argument må spesifiseres." +msgstr "«text»-argumentet må spesifiseres." diff --git a/plugins/Comet/locale/Comet.pot b/plugins/Comet/locale/Comet.pot index 948a8b4395..a89a28aa85 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index f9d740a141..d65b0e0075 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Directory.pot b/plugins/Directory/locale/Directory.pot index 596468b472..76252c14f3 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/DiskCache.pot b/plugins/DiskCache/locale/DiskCache.pot index dfa579ebf9..3038be05f9 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Disqus.pot b/plugins/Disqus/locale/Disqus.pot index 580ec7da5b..a67a9b2834 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/DomainStatusNetwork/locale/DomainStatusNetwork.pot b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot index 7b2136962c..bd8554316e 100644 --- a/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot +++ b/plugins/DomainStatusNetwork/locale/DomainStatusNetwork.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po new file mode 100644 index 0000000000..e762fc5fc4 --- /dev/null +++ b/plugins/DomainStatusNetwork/locale/nb/LC_MESSAGES/DomainStatusNetwork.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - DomainStatusNetwork to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Exported from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - DomainStatusNetwork\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:34:57+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-06-18 16:19:16+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-domainstatusnetwork\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Plugin description. +msgid "A plugin that maps a single status_network to an email domain." +msgstr "" +"En utvidelse som kartlegger et enkelt status_network til et e-postdomene." diff --git a/plugins/DomainWhitelist/locale/DomainWhitelist.pot b/plugins/DomainWhitelist/locale/DomainWhitelist.pot index e78741e1d5..8d53be03e5 100644 --- a/plugins/DomainWhitelist/locale/DomainWhitelist.pot +++ b/plugins/DomainWhitelist/locale/DomainWhitelist.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Echo.pot b/plugins/Echo/locale/Echo.pot index a5f3606302..786869b5d6 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/EmailAuthentication.pot b/plugins/EmailAuthentication/locale/EmailAuthentication.pot index 04609d1404..bfd5c5993c 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/EmailRegistration/locale/EmailRegistration.pot b/plugins/EmailRegistration/locale/EmailRegistration.pot index b584b4d8d8..0cb8c756b5 100644 --- a/plugins/EmailRegistration/locale/EmailRegistration.pot +++ b/plugins/EmailRegistration/locale/EmailRegistration.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/EmailReminder/locale/EmailReminder.pot b/plugins/EmailReminder/locale/EmailReminder.pot index 3c86d208dd..5e0e62d278 100644 --- a/plugins/EmailReminder/locale/EmailReminder.pot +++ b/plugins/EmailReminder/locale/EmailReminder.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/EmailSummary.pot b/plugins/EmailSummary/locale/EmailSummary.pot index a848f6e48f..aacccf485a 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Event/locale/Event.pot b/plugins/Event/locale/Event.pot index f54989d1c3..4a69550881 100644 --- a/plugins/Event/locale/Event.pot +++ b/plugins/Event/locale/Event.pot @@ -8,26 +8,38 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#. TRANS: 0 minutes abbreviated. Used in a list. #: eventtimelist.php:90 -msgid "hour" +msgid "(0 min)" msgstr "" -#: eventtimelist.php:91 -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +#: eventtimelist.php:94 +msgid "(30 min)" msgstr "" -#: eventtimelist.php:92 -msgid "mins" +#. TRANS: 1 hour. Used in a list. +#: eventtimelist.php:98 +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#: eventtimelist.php:102 +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. #: Happening.php:125 msgid "Event already exists." @@ -52,11 +64,18 @@ msgid "" "$s " msgstr "" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +#: timelist.php:65 +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. #: timelist.php:73 msgid "Unexpected form submission." msgstr "" -#: timelist.php:81 +#. TRANS: Client error displayed when using an action in a non-AJAX way. +#: timelist.php:82 msgid "This action is AJAX only." msgstr "" @@ -67,8 +86,6 @@ msgstr "" msgid "No such RSVP." msgstr "" -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. #: showrsvp.php:68 newrsvp.php:82 newrsvp.php:89 cancelrsvp.php:96 #: showevent.php:60 showevent.php:68 diff --git a/plugins/Event/locale/ar/LC_MESSAGES/Event.po b/plugins/Event/locale/ar/LC_MESSAGES/Event.po index 494fda2725..abdeb95bd5 100644 --- a/plugins/Event/locale/ar/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ar/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-event\n" @@ -23,15 +23,29 @@ msgstr "" "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -msgid "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "" @@ -57,9 +71,15 @@ msgstr "" "$s (%6$s): %7" "$s " +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -69,8 +89,6 @@ msgstr "" msgid "No such RSVP." msgstr "" -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "" @@ -409,7 +427,3 @@ msgstr "الحضور:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "نعم: %1$d لا: %2$d ربما: %3$d" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "المكان" diff --git a/plugins/Event/locale/br/LC_MESSAGES/Event.po b/plugins/Event/locale/br/LC_MESSAGES/Event.po index 1a56a26f06..8bd691ccee 100644 --- a/plugins/Event/locale/br/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/br/LC_MESSAGES/Event.po @@ -9,27 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "An darvoud zo anezhañ dija." @@ -51,9 +61,15 @@ msgid "" "$s " msgstr "" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -63,8 +79,6 @@ msgstr "" msgid "No such RSVP." msgstr "N'eus ket eus an RSVP-se." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "N'eus ket eus an darvoud-se." @@ -402,7 +416,3 @@ msgstr "" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ya : %1$d Nann : %2$d Marteze : %3$d" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Lec'hiadur" diff --git a/plugins/Event/locale/de/LC_MESSAGES/Event.po b/plugins/Event/locale/de/LC_MESSAGES/Event.po index 41d5152d56..c168be4f21 100644 --- a/plugins/Event/locale/de/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/de/LC_MESSAGES/Event.po @@ -9,27 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Ereignis existiert bereits." @@ -55,9 +65,15 @@ msgstr "" "$s (%6$s): %7" "$s " +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -67,8 +83,6 @@ msgstr "" msgid "No such RSVP." msgstr "Keine solche Antwortanfrage." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Kein solches Ereignis." @@ -407,7 +421,3 @@ msgstr "Teilnehmende:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ja: %1$d Nein: %2$d Vielleicht: %3$d" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Örtlichkeit" diff --git a/plugins/Event/locale/fr/LC_MESSAGES/Event.po b/plugins/Event/locale/fr/LC_MESSAGES/Event.po index 2ac87cf9dc..0629b94078 100644 --- a/plugins/Event/locale/fr/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/fr/LC_MESSAGES/Event.po @@ -13,27 +13,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -msgid "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Cet événement existe déjà." @@ -59,9 +69,15 @@ msgstr "" "$s (%6$s): %7" "$s " +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -71,8 +87,6 @@ msgstr "" msgid "No such RSVP." msgstr "RSVP introuvable." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Evénement introuvable." @@ -411,7 +425,3 @@ msgstr "Participants :" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Oui : %1$d Non : %2$d Peut-être : %3$d" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Emplacement" diff --git a/plugins/Event/locale/ia/LC_MESSAGES/Event.po b/plugins/Event/locale/ia/LC_MESSAGES/Event.po index e67f14d98d..a34ed96041 100644 --- a/plugins/Event/locale/ia/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ia/LC_MESSAGES/Event.po @@ -9,26 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" -msgstr "" +#. TRANS: 1 hour. Used in a list. +#, fuzzy +msgid "(1 hour)" +msgstr "hora" + +#. TRANS: Number of hours (%d). Used in a list. +#, fuzzy, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "hora" +msgstr[1] "hora" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." @@ -55,11 +66,17 @@ msgstr "" "$s (%6$s): %7" "$s " -msgid "Unexpected form submission." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." msgstr "" +#. TRANS: Client error when submitting a form with unexpected information. +msgid "Unexpected form submission." +msgstr "Submission de formulario inexpectate." + +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." -msgstr "" +msgstr "Iste action pote esser exequite solmente per AJAX." #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". @@ -67,8 +84,6 @@ msgstr "" msgid "No such RSVP." msgstr "Iste RSVP non existe." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Iste evento non existe." @@ -191,7 +206,7 @@ msgstr "Le hora a que le evento fini." #. TRANS: Field label on event form. msgctxt "LABEL" msgid "Where?" -msgstr "" +msgstr "Ubi?" #. TRANS: Field title on event form. msgid "Event location." @@ -408,6 +423,8 @@ msgstr "Presente:" msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Si: %1$d No: %2$d Forsan: %3$d" -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Loco" +#~ msgid "hrs" +#~ msgstr "hrs" + +#~ msgid "mins" +#~ msgstr "mins" diff --git a/plugins/Event/locale/mk/LC_MESSAGES/Event.po b/plugins/Event/locale/mk/LC_MESSAGES/Event.po index 91df5a4527..e081eaa8e5 100644 --- a/plugins/Event/locale/mk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/mk/LC_MESSAGES/Event.po @@ -9,26 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" -msgstr "" +#. TRANS: 1 hour. Used in a list. +#, fuzzy +msgid "(1 hour)" +msgstr "час" + +#. TRANS: Number of hours (%d). Used in a list. +#, fuzzy, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "час" +msgstr[1] "час" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." @@ -55,11 +66,17 @@ msgstr "" "$s (%6$s): %7" "$s " -msgid "Unexpected form submission." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." msgstr "" +#. TRANS: Client error when submitting a form with unexpected information. +msgid "Unexpected form submission." +msgstr "Неочекувано поднесување на образец." + +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." -msgstr "" +msgstr "Ова дејство е само за AJAX." #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". @@ -67,8 +84,6 @@ msgstr "" msgid "No such RSVP." msgstr "Нема таков одѕив." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Нема таков настан." @@ -191,7 +206,7 @@ msgstr "Во колку часот завршува настанот." #. TRANS: Field label on event form. msgctxt "LABEL" msgid "Where?" -msgstr "" +msgstr "Каде?" #. TRANS: Field title on event form. msgid "Event location." @@ -408,6 +423,8 @@ msgstr "Присуство:" msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Да: %1$d Не: %2$d Можеби: %3$d" -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Место" +#~ msgid "hrs" +#~ msgstr "часа" + +#~ msgid "mins" +#~ msgstr "минути" diff --git a/plugins/Event/locale/ms/LC_MESSAGES/Event.po b/plugins/Event/locale/ms/LC_MESSAGES/Event.po index d4d839fde9..89e6638818 100644 --- a/plugins/Event/locale/ms/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/ms/LC_MESSAGES/Event.po @@ -9,27 +9,36 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35:11+0000\n" "Language-Team: Malay \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ms\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgid "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Acara sudah wujud." @@ -55,9 +64,15 @@ msgstr "" "$s (%6$s): %7" "$s " +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -67,8 +82,6 @@ msgstr "" msgid "No such RSVP." msgstr "RSVP ini tidak wujud." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Acara ini tidak wujud." @@ -407,7 +420,3 @@ msgstr "Hadir:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ya: %1$d Tidak: %2$d Mungkin: %3$d" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Lokasi" diff --git a/plugins/Event/locale/nl/LC_MESSAGES/Event.po b/plugins/Event/locale/nl/LC_MESSAGES/Event.po index 08f19cedd6..846f8c4d9b 100644 --- a/plugins/Event/locale/nl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/nl/LC_MESSAGES/Event.po @@ -10,26 +10,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" -msgstr "" +#. TRANS: 1 hour. Used in a list. +#, fuzzy +msgid "(1 hour)" +msgstr "uur" + +#. TRANS: Number of hours (%d). Used in a list. +#, fuzzy, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "uur" +msgstr[1] "uur" #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." @@ -56,11 +67,17 @@ msgstr "" "$s (%6$s): %7" "$s " -msgid "Unexpected form submission." +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." msgstr "" +#. TRANS: Client error when submitting a form with unexpected information. +msgid "Unexpected form submission." +msgstr "Het formulier is onverwacht ingezonden." + +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." -msgstr "" +msgstr "Deze handeling kan alleen via AJAX uitgevoerd worden." #. TRANS: Client exception thrown when referring to a non-existing RSVP. #. TRANS: RSVP stands for "Please reply". @@ -68,8 +85,6 @@ msgstr "" msgid "No such RSVP." msgstr "Het verzoek tot antwoorden kon niet worden gevonden." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Dat evenement bestaat niet." @@ -193,7 +208,7 @@ msgstr "Tijd waarop het evenement eindigt." #. TRANS: Field label on event form. msgctxt "LABEL" msgid "Where?" -msgstr "" +msgstr "Waar?" #. TRANS: Field title on event form. msgid "Event location." @@ -412,6 +427,8 @@ msgstr "Aanwezig:" msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Ja: %1$d Nee: %2$d Misschien: %3$d" -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Locatie" +#~ msgid "hrs" +#~ msgstr "uur" + +#~ msgid "mins" +#~ msgstr "min" diff --git a/plugins/Event/locale/pt/LC_MESSAGES/Event.po b/plugins/Event/locale/pt/LC_MESSAGES/Event.po index 1aecf44461..d536847dbb 100644 --- a/plugins/Event/locale/pt/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/pt/LC_MESSAGES/Event.po @@ -9,27 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:32+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-plugin-event\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "O evento já existe." @@ -51,9 +61,15 @@ msgid "" "$s " msgstr "" +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -63,8 +79,6 @@ msgstr "" msgid "No such RSVP." msgstr "" -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "" @@ -397,7 +411,3 @@ msgstr "" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Local" diff --git a/plugins/Event/locale/tl/LC_MESSAGES/Event.po b/plugins/Event/locale/tl/LC_MESSAGES/Event.po index ff20c2a5c8..f5d20fdbbd 100644 --- a/plugins/Event/locale/tl/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/tl/LC_MESSAGES/Event.po @@ -9,27 +9,37 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:33+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Umiiral na ang kaganapan." @@ -55,9 +65,15 @@ msgstr "" "$s (%6$s): %7" "$s " +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -67,8 +83,6 @@ msgstr "" msgid "No such RSVP." msgstr "Walang ganyang paghiling ng pagtugon." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Walang ganyang kaganapan." @@ -410,7 +424,3 @@ msgstr "Dadalo:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Oo: %1$d Hindi: %2$d Baka: %3$d" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Kinalalagyan" diff --git a/plugins/Event/locale/uk/LC_MESSAGES/Event.po b/plugins/Event/locale/uk/LC_MESSAGES/Event.po index c949f1475b..aaf3cd3a5c 100644 --- a/plugins/Event/locale/uk/LC_MESSAGES/Event.po +++ b/plugins/Event/locale/uk/LC_MESSAGES/Event.po @@ -9,28 +9,39 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Event\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:33+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:38+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 "hour" +#. TRANS: 0 minutes abbreviated. Used in a list. +msgid "(0 min)" msgstr "" -msgid "hrs" +#. TRANS: 30 minutes abbreviated. Used in a list. +msgid "(30 min)" msgstr "" -msgid "mins" +#. TRANS: 1 hour. Used in a list. +msgid "(1 hour)" msgstr "" +#. TRANS: Number of hours (%d). Used in a list. +#, php-format +msgid "(%d hour)" +msgid_plural "(%d hours)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #. TRANS: Client exception thrown when trying to create an event that already exists. msgid "Event already exists." msgstr "Подія вже існує." @@ -56,9 +67,15 @@ msgstr "" "$s (%6$s): %7" "$s " +#. TRANS: Error message displayed when trying to perform an action that requires a logged in user. +msgid "Not logged in." +msgstr "" + +#. TRANS: Client error when submitting a form with unexpected information. msgid "Unexpected form submission." msgstr "" +#. TRANS: Client error displayed when using an action in a non-AJAX way. msgid "This action is AJAX only." msgstr "" @@ -68,8 +85,6 @@ msgstr "" msgid "No such RSVP." msgstr "Немає такого запиту на підтвердження запрошення." -#. TRANS: Client exception thrown when referring to a non-existing event. -#. TRANS: Client exception thrown when requesting a non-exsting event. #. TRANS: Client exception thrown when referring to a non-existing event. msgid "No such event." msgstr "Немає такого події." @@ -410,7 +425,3 @@ msgstr "Присутні:" #, php-format msgid "Yes: %1$d No: %2$d Maybe: %3$d" msgstr "Так: %1$d Ні: %2$d Можливо: %3$d" - -#~ msgctxt "LABEL" -#~ msgid "Location" -#~ msgstr "Розташування" diff --git a/plugins/ExtendedProfile/locale/ExtendedProfile.pot b/plugins/ExtendedProfile/locale/ExtendedProfile.pot index cba9b51536..773d34a968 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/FacebookBridge/locale/FacebookBridge.pot b/plugins/FacebookBridge/locale/FacebookBridge.pot index 90df3bfd03..1875f80c40 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/FirePHP.pot b/plugins/FirePHP/locale/FirePHP.pot index bab0456f6b..a9f18d4935 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/FollowEveryone.pot b/plugins/FollowEveryone/locale/FollowEveryone.pot index 603ecb0d35..4cef1df22b 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ForceGroup.pot b/plugins/ForceGroup/locale/ForceGroup.pot index df6c9a75d5..c186568848 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/GeoURL.pot b/plugins/GeoURL/locale/GeoURL.pot index 83cf135aa2..b01748cde6 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Geonames.pot b/plugins/Geonames/locale/Geonames.pot index 410ba41148..7782aead06 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/GoogleAnalytics.pot b/plugins/GoogleAnalytics/locale/GoogleAnalytics.pot index 07863e23d9..02e9ec8be3 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Gravatar.pot b/plugins/Gravatar/locale/Gravatar.pot index bcaa49679b..0c8d8c600e 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/GroupFavorited.pot b/plugins/GroupFavorited/locale/GroupFavorited.pot index e501714931..d9f6b78e33 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/GroupPrivateMessage/locale/GroupPrivateMessage.pot b/plugins/GroupPrivateMessage/locale/GroupPrivateMessage.pot index 6ad3aab603..8e70f9f307 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po index 91e97e8d4f..47f2ed95ee 100644 --- a/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po +++ b/plugins/GroupPrivateMessage/locale/ar/LC_MESSAGES/GroupPrivateMessage.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - GroupPrivateMessage\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:53+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35:32+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-06-05 21:50:18+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-groupprivatemessage\n" @@ -32,7 +32,7 @@ msgstr "" #. TRANS: %s is a user nickname. #, php-format msgid "User %s is not allowed to send private messages." -msgstr "" +msgstr "لا يسمح للمستخدم %s بإرسال رسائل خاصة." #. TRANS: Client exception thrown when trying to send a private group message to a non-existing group. #. TRANS: Client exception thrown when trying to view group inbox for non-existing group. @@ -159,11 +159,11 @@ msgstr "" #. TRANS: Indicator on the group page that the group is (essentially) private. msgid "Private" -msgstr "خاص" +msgstr "خاصة" #. TRANS: Plugin description. msgid "Allow posting private messages to groups." -msgstr "" +msgstr "السماح بإرسال رسائل خاصة للمجموعات." #. TRANS: Client exception thrown when trying to view group inbox while not logged in. msgid "Only for logged-in users." @@ -175,18 +175,18 @@ msgstr "فقط للأعضاء." #. TRANS: Text of group inbox if no private messages were sent to it. msgid "This group has not received any private messages." -msgstr "" +msgstr "لم تتلقَ هذه المجموعة أي رسائل خاصة." #. TRANS: Title of inbox for group %s. #, 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 "" diff --git a/plugins/Imap/locale/Imap.pot b/plugins/Imap/locale/Imap.pot index fcb2d25f02..7c612369ec 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/nb/LC_MESSAGES/Imap.po b/plugins/Imap/locale/nb/LC_MESSAGES/Imap.po index 0a2cb64321..7dc61c2de5 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:20:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:20+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-imap\n" @@ -26,13 +26,12 @@ msgid "Error" msgstr "Feil" #. TRANS: Exception thrown when the ImapManager is used incorrectly in the code. -#, fuzzy msgid "" "ImapManager should be created using its constructor, not using the static " "\"get()\" method." msgstr "" "ImapManager bør opprettes ved å bruke dets konstruktør, ikke ved å bruke " -"dets statiske get-metode." +"dets statiske «get()»-metode." #. TRANS: Exception thrown when configuration of the IMAP plugin is incorrect. msgid "A mailbox must be specified." diff --git a/plugins/InProcessCache/locale/InProcessCache.pot b/plugins/InProcessCache/locale/InProcessCache.pot index 6eb0d3930f..9ca04ee641 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/InfiniteScroll.pot b/plugins/InfiniteScroll/locale/InfiniteScroll.pot index 4a98faef8e..ffe2fe0afb 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Irc.pot b/plugins/Irc/locale/Irc.pot index 31aaf17092..97fce12d93 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/LdapAuthentication.pot b/plugins/LdapAuthentication/locale/LdapAuthentication.pot index 198029a06c..8c9a00e8b8 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/LdapAuthorization.pot b/plugins/LdapAuthorization/locale/LdapAuthorization.pot index 02da4c2704..01ac5d7bab 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/LdapCommon/locale/LdapCommon.pot b/plugins/LdapCommon/locale/LdapCommon.pot index c823eace75..a5bf8f0332 100644 --- a/plugins/LdapCommon/locale/LdapCommon.pot +++ b/plugins/LdapCommon/locale/LdapCommon.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/LilUrl.pot b/plugins/LilUrl/locale/LilUrl.pot index 2f37e727f9..9035c15a13 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/LinkPreview.pot b/plugins/LinkPreview/locale/LinkPreview.pot index 22f1d376a1..b43f0c3b8b 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Linkback.pot b/plugins/Linkback/locale/Linkback.pot index 2b3422d062..b943f78993 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/LogFilter.pot b/plugins/LogFilter/locale/LogFilter.pot index 52699bcc0b..bc5cc83a72 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 5614d44415..87b182fbaf 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/nb/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nb/LC_MESSAGES/Mapstraction.po index 85db4464c9..8d9ff64dcc 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:06+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-06-05 21:50:30+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -59,6 +59,6 @@ msgstr "Bruker har ingen profil." #. TRANS: Title for map widget. #. TRANS: %s is a user name. -#, fuzzy, php-format +#, php-format msgid "%s map" -msgstr "%s vennekart" +msgstr "Kart for %s" diff --git a/plugins/Memcache/locale/Memcache.pot b/plugins/Memcache/locale/Memcache.pot index d11dc05b96..350bea3c3a 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Memcached.pot b/plugins/Memcached/locale/Memcached.pot index 7e93c3fab8..f1ee7ba170 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Meteor.pot b/plugins/Meteor/locale/Meteor.pot index 64df185713..7fad038130 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/fr/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po index 955962da49..b136f5d356 100644 --- a/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/fr/LC_MESSAGES/Meteor.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:09+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-07-21 13:51:25+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" @@ -33,8 +33,7 @@ msgid "Error adding meteor message \"%s\"." msgstr "Erreur lors de l’ajout d’un message meteor « %s »." #. TRANS: Plugin description. -#, fuzzy msgid "Plugin to do \"real time\" updates using Meteor." msgstr "" -"Extension pour réaliser des mises à jour « en temps réel » en utilisant Comet/" -"Bayeux." +"Extension pour réaliser des mises à jour « en temps réel » en utilisant " +"Meteor." diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po index 94838479d9..f4efc33778 100644 --- a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -9,28 +9,28 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Meteor\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-04-27 12:36+0000\n" -"PO-Revision-Date: 2011-04-27 12:37:40+0000\n" -"Language-Team: Norwegian (bokmål)‬ \n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-18 20:08:18+0000\n" -"X-Generator: MediaWiki 1.18alpha (r87008); Translate extension (2011-04-26)\n" -"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-POT-Import-Date: 2011-07-21 13:51:25+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-meteor\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Exception. %1$s is the control server, %2$s is the control port. -#, fuzzy, php-format +#, php-format msgid "Could not connect to %1$s on %2$s." msgstr "Kunne ikke koble til %1$s på %2$s." #. TRANS: Exception. %s is the Meteor message that could not be added. -#, fuzzy, php-format +#, php-format msgid "Error adding meteor message \"%s\"." -msgstr "Mislyktes å legge til meteormelding «%s»" +msgstr "Mislyktes å legge til meteormelding «%s»." #. TRANS: Plugin description. -msgid "Plugin to do \"real time\" updates using Comet/Bayeux." -msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Comet/Bayeux." +msgid "Plugin to do \"real time\" updates using Meteor." +msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Meteor." diff --git a/plugins/Minify/locale/Minify.pot b/plugins/Minify/locale/Minify.pot index 12ffdee359..9a0766758f 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/MobileProfile.pot b/plugins/MobileProfile/locale/MobileProfile.pot index 42bcad44be..1c21cd0bfe 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ModHelper.pot b/plugins/ModHelper/locale/ModHelper.pot index a8ef3651aa..5d9b75d530 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ModPlus.pot b/plugins/ModPlus/locale/ModPlus.pot index 49986b72d6..d70a4c17ff 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Mollom.pot b/plugins/Mollom/locale/Mollom.pot index e0e2706fa3..cae05470dc 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Msn.pot b/plugins/Msn/locale/Msn.pot index ff13f6270b..b074b07507 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index b1938483c8..db5cd099ab 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/OMB/locale/OMB.pot b/plugins/OMB/locale/OMB.pot index 8fa0ca0351..78e14eb126 100644 --- a/plugins/OMB/locale/OMB.pot +++ b/plugins/OMB/locale/OMB.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,23 +34,27 @@ msgctxt "BUTTON" msgid "Reject" msgstr "" -#: OMBPlugin.php:234 +#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile. +#: OMBPlugin.php:233 msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." msgstr "" -#: OMBPlugin.php:263 +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. +#: OMBPlugin.php:260 msgid "You cannot list an OMB 0.1 remote profile with this action." msgstr "" -#: OMBPlugin.php:288 +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. +#: OMBPlugin.php:284 msgid "You cannot (un)list an OMB 0.1 remote profile with this action." msgstr "" -#: OMBPlugin.php:322 +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +#: OMBPlugin.php:318 msgid "Could not delete subscription OMB token." msgstr "" #. TRANS: Plugin description. -#: OMBPlugin.php:399 +#: OMBPlugin.php:394 msgid "A sample plugin to show basics of development for new hackers." msgstr "" diff --git a/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..e16c1de958 --- /dev/null +++ b/plugins/OMB/locale/ia/LC_MESSAGES/OMB.po @@ -0,0 +1,59 @@ +# Translation of StatusNet - OMB to Interlingua (Interlingua) +# Exported from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OMB\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-08-15 14:12:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-omb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Button text on page for remote subscribe. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Subscriber" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Acceptar" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +msgstr "Rejectar" + +#. 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." + +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. +msgid "You cannot list an OMB 0.1 remote profile with this action." +msgstr "Tu non pote listar un profilo remote OMB 0.1 con iste action." + +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. +msgid "You cannot (un)list an OMB 0.1 remote profile with this action." +msgstr "Tu non pote (dis)listar un profilo remote OMB 0.1 con iste action." + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +msgid "Could not delete subscription OMB token." +msgstr "Non poteva deler le indicio OMB del subscription." + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Un plug-in de exemplo pro demonstrar le principios de disveloppamento pro " +"nove programmatores." diff --git a/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po new file mode 100644 index 0000000000..5cb382a727 --- /dev/null +++ b/plugins/OMB/locale/mk/LC_MESSAGES/OMB.po @@ -0,0 +1,61 @@ +# Translation of StatusNet - OMB 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 - OMB\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-08-15 14:12:05+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" +"X-Translation-Project: translatewiki.net at //translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-omb\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Button text on page for remote subscribe. +msgctxt "BUTTON" +msgid "Subscribe" +msgstr "Претплати се" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Accept" +msgstr "Прифати" + +#. TRANS: Button text on Authorise Subscription page. +msgctxt "BUTTON" +msgid "Reject" +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 со ова дејство." + +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. +msgid "You cannot list an OMB 0.1 remote profile with this action." +msgstr "Не можете да наведете далечински профил OMB 0.1 со ова дејство." + +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. +msgid "You cannot (un)list an OMB 0.1 remote profile with this action." +msgstr "" +"Не можете да наведете/отстраните од список далечински профил OMB 0.1 со ова " +"дејство." + +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. +msgid "Could not delete subscription OMB token." +msgstr "Не можам да го избришам OMB-жетонот за претплата." + +#. TRANS: Plugin description. +msgid "A sample plugin to show basics of development for new hackers." +msgstr "" +"Приклучок-пример за основите на развојното програмирање за нови хакери." diff --git a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po index bc2198f954..52e8b78806 100644 --- a/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po +++ b/plugins/OMB/locale/nl/LC_MESSAGES/OMB.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OMB to Dutch (Nederlands) # Exported from translatewiki.net # +# Author: SPQRobin # Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OMB\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:17+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:35: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-08-15 14:12:05+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-omb\n" @@ -36,20 +37,24 @@ msgctxt "BUTTON" msgid "Reject" msgstr "Weigeren" +#. 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 "" "U kunt via deze handeling niet abonneren op een extern OMB 1.0-profiel." +#. TRANS: Client error displayed when trying to add an OMB 0.1 remote profile to a list. msgid "You cannot list an OMB 0.1 remote profile with this action." msgstr "" "U kunt een extern OMB 1.0-profiel niet opnemen in een lijst via deze " "handeling." +#. TRANS: Client error displayed when trying to (un)list an OMB 0.1 remote profile. msgid "You cannot (un)list an OMB 0.1 remote profile with this action." msgstr "" "U kunt een extern OMB 1.0-profiel niet opnemen in of verwijderen uit een " "lijst via deze handeling." +#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server. msgid "Could not delete subscription OMB token." msgstr "" "Het was niet mogelijk om het OMB-token voor het abonnement te verwijderen." @@ -57,4 +62,5 @@ msgstr "" #. TRANS: Plugin description. msgid "A sample plugin to show basics of development for new hackers." msgstr "" -"Een voorbeeldplug-in als basis voor ontwikkelingen door nieuwe hackers." +"Een voorbeeldplug-in om de basisprogrammeertechnieken te demonstreren aan " +"nieuwe ontwikkelaars." diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index 363a1933fe..a6ceeb36c5 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,7 +29,7 @@ msgstr "" #. TRANS: Fieldset legend. #: OStatusPlugin.php:296 -msgid "Tag remote profile" +msgid "List remote profile" msgstr "" #. TRANS: Field label. @@ -138,7 +138,7 @@ msgid "Follow list" msgstr "" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #: OStatusPlugin.php:887 #, php-format msgid "%1$s is now following people listed in %2$s by %3$s." @@ -155,7 +155,7 @@ msgid "Unfollow list" msgstr "" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #: OStatusPlugin.php:937 #, php-format msgid "%1$s stopped following the list %2$s by %3$s." @@ -224,9 +224,9 @@ msgstr "" msgid "%s has updated their profile page." msgstr "" -#. TRANS: Link text for a user to tag an OStatus user. +#. TRANS: Link text for a user to list an OStatus user. #: OStatusPlugin.php:1288 -msgid "Tag" +msgid "List" msgstr "" #. TRANS: Plugin description. @@ -298,18 +298,18 @@ msgstr "" msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. +#. TRANS: Client error displayed when trying to list a local object as if it is remote. #: actions/ostatustag.php:40 -msgid "You can use the local tagging!" +msgid "You can use the local list functionality!" msgstr "" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. +#. TRANS: Header for listing a remote object. %s is a remote object's name. #: actions/ostatustag.php:55 #, php-format -msgid "Tag %s" +msgid "List %s" msgstr "" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. #: actions/ostatustag.php:57 msgctxt "BUTTON" msgid "Go" @@ -322,7 +322,7 @@ msgstr "" #. TRANS: Field title. #: actions/ostatustag.php:71 -msgid "Nickname of the user you want to tag." +msgid "Nickname of the user you want to list." msgstr "" #. TRANS: Field label. @@ -524,7 +524,7 @@ msgstr "" #. TRANS: Client exception thrown when an undefied activity is performed. #. TRANS: Client exception. -#: actions/usersalmon.php:73 classes/Ostatus_profile.php:499 +#: actions/usersalmon.php:73 classes/Ostatus_profile.php:497 msgid "Cannot handle that kind of post." msgstr "" @@ -570,32 +570,32 @@ msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:204 -msgid "Unidentified profile being tagged." +msgid "Unidentified profile being listed." msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:209 -msgid "This user is not the one being tagged." +msgid "This user is not the one being listed." msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:220 -msgid "The tag could not be saved." +msgid "The listing could not be saved." msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:238 -msgid "Unidentified profile being untagged." +msgid "Unidentified profile being unlisted." msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:243 -msgid "This user is not the one being untagged." +msgid "This user is not the one being unlisted." msgstr "" #. TRANS: Client exception. #: actions/usersalmon.php:255 -msgid "The tag could not be deleted." +msgid "The listing could not be deleted." msgstr "" #. TRANS: Client exception. @@ -755,7 +755,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #: actions/ostatusinit.php:108 #, php-format msgid "Subscribe to list %1$s by %2$s" @@ -820,178 +820,182 @@ msgid "Attempting to end PuSH subscription for feed with no hub." msgstr "" #. TRANS: Server exception. %s is a URI -#: classes/Ostatus_profile.php:174 classes/Ostatus_profile.php:192 +#: classes/Ostatus_profile.php:173 classes/Ostatus_profile.php:191 #, php-format msgid "Invalid ostatus_profile state: Two or more IDs set for %s." msgstr "" #. TRANS: Server exception. %s is a URI -#: classes/Ostatus_profile.php:177 classes/Ostatus_profile.php:195 +#: classes/Ostatus_profile.php:176 classes/Ostatus_profile.php:194 #, php-format msgid "Invalid ostatus_profile state: All IDs empty for %s." msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is the method name the exception occured in, %2$s is the actor type. -#: classes/Ostatus_profile.php:292 +#: classes/Ostatus_profile.php:291 #, php-format msgid "Invalid actor passed to %1$s: %2$s." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:388 +#: classes/Ostatus_profile.php:387 msgid "" "Invalid type passed to Ostatus_profile::notify. It must be XML string or " "Activity entry." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:421 +#: classes/Ostatus_profile.php:420 msgid "Unknown feed format." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:445 +#: classes/Ostatus_profile.php:444 msgid "RSS feed without a channel." msgstr "" -#: classes/Ostatus_profile.php:528 +#. TRANS: Client exception thrown when trying to share multiple activities at once. +#: classes/Ostatus_profile.php:527 msgid "Can only handle share activities with exactly one object." msgstr "" +#. TRANS: Client exception thrown when trying to share a non-activity object. #: classes/Ostatus_profile.php:534 msgid "Can only handle shared activities." msgstr "" -#: classes/Ostatus_profile.php:545 +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. +#: classes/Ostatus_profile.php:547 #, php-format msgid "Failed to save activity %s." msgstr "" #. TRANS: Client exception. %s is a source URI. -#: classes/Ostatus_profile.php:583 classes/Ostatus_profile.php:755 +#: classes/Ostatus_profile.php:585 classes/Ostatus_profile.php:757 #, php-format msgid "No content for notice %s." msgstr "" #. TRANS: Shown when a notice is longer than supported and/or when attachments are present. At runtime #. TRANS: this will usually be replaced with localised text from StatusNet core messages. -#: classes/Ostatus_profile.php:618 classes/Ostatus_profile.php:790 +#: classes/Ostatus_profile.php:620 classes/Ostatus_profile.php:792 msgid "Show more" msgstr "" #. TRANS: Exception. %s is a profile URL. -#: classes/Ostatus_profile.php:987 +#: classes/Ostatus_profile.php:989 #, php-format msgid "Could not reach profile page %s." msgstr "" #. TRANS: Exception. %s is a URL. -#: classes/Ostatus_profile.php:1045 +#: classes/Ostatus_profile.php:1047 #, php-format msgid "Could not find a feed URL for profile page %s." msgstr "" #. TRANS: Feed sub exception. -#: classes/Ostatus_profile.php:1143 +#: classes/Ostatus_profile.php:1145 msgid "Cannot find enough profile information to make a feed." msgstr "" #. TRANS: Server exception. %s is a URL. -#: classes/Ostatus_profile.php:1207 +#: classes/Ostatus_profile.php:1209 #, php-format msgid "Invalid avatar URL %s." msgstr "" #. TRANS: Server exception. %s is a URI. -#: classes/Ostatus_profile.php:1218 +#: classes/Ostatus_profile.php:1220 #, php-format msgid "Tried to update avatar for unsaved remote profile %s." msgstr "" #. TRANS: Server exception. %s is a URL. -#: classes/Ostatus_profile.php:1228 +#: classes/Ostatus_profile.php:1230 #, php-format msgid "Unable to fetch avatar from %s." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:1425 +#: classes/Ostatus_profile.php:1427 msgid "No author ID URI found." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1451 +#: classes/Ostatus_profile.php:1453 msgid "No profile URI." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1457 +#: classes/Ostatus_profile.php:1459 msgid "Local user cannot be referenced as remote." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1462 +#: classes/Ostatus_profile.php:1464 msgid "Local group cannot be referenced as remote." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1470 +#: classes/Ostatus_profile.php:1472 msgid "Local list cannot be referenced as remote." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:1523 classes/Ostatus_profile.php:1534 +#: classes/Ostatus_profile.php:1525 classes/Ostatus_profile.php:1536 msgid "Cannot save local profile." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:1545 +#: classes/Ostatus_profile.php:1547 msgid "Cannot save local list." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:1553 +#: classes/Ostatus_profile.php:1555 msgid "Cannot save OStatus profile." msgstr "" #. TRANS: Exception. -#: classes/Ostatus_profile.php:1866 classes/Ostatus_profile.php:1893 +#: classes/Ostatus_profile.php:1868 classes/Ostatus_profile.php:1895 msgid "Not a valid webfinger address." msgstr "" #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1971 +#: classes/Ostatus_profile.php:1973 #, php-format msgid "Could not save profile for \"%s\"." msgstr "" #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1990 +#: classes/Ostatus_profile.php:1992 #, php-format msgid "Could not save OStatus profile for \"%s\"." msgstr "" #. TRANS: Exception. %s is a webfinger address. -#: classes/Ostatus_profile.php:1998 +#: classes/Ostatus_profile.php:2000 #, php-format msgid "Could not find a valid profile for \"%s\"." msgstr "" #. TRANS: Server exception. -#: classes/Ostatus_profile.php:2041 +#: classes/Ostatus_profile.php:2043 msgid "Could not store HTML content of long post as file." msgstr "" #. TRANS: Server exception. #. TRANS: %1$s is a protocol, %2$s is a URI. -#: classes/Ostatus_profile.php:2073 +#: classes/Ostatus_profile.php:2075 #, php-format msgid "Unrecognized URI protocol for profile: %1$s (%2$s)." msgstr "" #. TRANS: Server exception. %s is a URI. -#: classes/Ostatus_profile.php:2080 +#: classes/Ostatus_profile.php:2082 #, php-format msgid "No URI protocol for profile: %s." msgstr "" @@ -1085,12 +1089,12 @@ msgstr "" #. TRANS: Client exception. #: lib/salmonaction.php:184 -msgid "This target does not understand tag events." +msgid "This target does not understand list events." msgstr "" #. TRANS: Client exception. #: lib/salmonaction.php:190 -msgid "This target does not understand untag events." +msgid "This target does not understand unlist events." msgstr "" #. TRANS: Exception. diff --git a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po index 4796c5d702..838cc8fc51 100644 --- a/plugins/OStatus/locale/de/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/de/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:40+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -34,7 +34,7 @@ msgstr "Abonnieren" #. TRANS: Fieldset legend. #, fuzzy -msgid "Tag remote profile" +msgid "List remote profile" msgstr "Du musst ein Remoteprofil angeben." #. TRANS: Field label. @@ -137,7 +137,7 @@ msgid "Follow list" msgstr "Der Liste folgen" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, fuzzy, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s folgt %2$s nicht mehr." @@ -153,7 +153,7 @@ msgid "Unfollow list" msgstr "Nicht mehr beachten" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, fuzzy, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "%1$s folgt %2$s nicht mehr." @@ -214,9 +214,9 @@ msgstr "Profil aktualisieren" msgid "%s has updated their profile page." msgstr "%s hat die Profil-Seite aktualisiert." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" -msgstr "Tag" +#. TRANS: Link text for a user to list an OStatus user. +msgid "List" +msgstr "" #. TRANS: Plugin description. msgid "" @@ -281,17 +281,17 @@ msgstr "Ungültiges hub.topic „%s“. Gruppe existiert nicht." msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Ungültiger URL für %1$s übergeben: „%2$s“" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. +#. TRANS: Client error displayed when trying to list a local object as if it is remote. #, fuzzy -msgid "You can use the local tagging!" +msgid "You can use the local list functionality!" msgstr "Du kannst ein lokales Abonnement erstellen!" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. +#. TRANS: Header for listing a remote object. %s is a remote object's name. #, php-format -msgid "Tag %s" -msgstr "Tag %s" +msgid "List %s" +msgstr "" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. #, fuzzy msgctxt "BUTTON" msgid "Go" @@ -303,7 +303,7 @@ msgstr "Benutzername" #. TRANS: Field title. #, fuzzy -msgid "Nickname of the user you want to tag." +msgid "Nickname of the user you want to list." msgstr "Name des Benutzers, dem du folgen möchtest" #. TRANS: Field label. @@ -517,27 +517,27 @@ msgid "Not a person object." msgstr "" #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +msgid "Unidentified profile being listed." msgstr "" #. TRANS: Client exception. -msgid "This user is not the one being tagged." +msgid "This user is not the one being listed." msgstr "" #. TRANS: Client exception. -msgid "The tag could not be saved." +msgid "The listing could not be saved." msgstr "" #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +msgid "Unidentified profile being unlisted." msgstr "" #. TRANS: Client exception. -msgid "This user is not the one being untagged." +msgid "This user is not the one being unlisted." msgstr "" #. TRANS: Client exception. -msgid "The tag could not be deleted." +msgid "The listing could not be deleted." msgstr "" #. TRANS: Client exception. @@ -689,7 +689,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "Beitreten" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, fuzzy, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "Abonniere %s" @@ -780,12 +780,16 @@ msgstr "Unbekanntes Feed-Format." msgid "RSS feed without a channel." msgstr "RSS-Feed ohne einen Kanal." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "" +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "" +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. #, php-format msgid "Failed to save activity %s." msgstr "" @@ -988,14 +992,24 @@ msgstr "Dieses Ziel versteht das Verlassen von Events nicht." #. TRANS: Client exception. #, fuzzy -msgid "This target does not understand tag events." +msgid "This target does not understand list events." msgstr "Dieses Ziel versteht das Teilen von Events nicht." #. TRANS: Client exception. #, fuzzy -msgid "This target does not understand untag events." +msgid "This target does not understand unlist events." msgstr "Dieses Ziel versteht das Teilen von Events nicht." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "Einen Salmon-Slap von einem unidentifizierten Aktor empfangen." + +#~ msgid "Tag" +#~ msgstr "Tag" + +#, fuzzy +#~ msgid "You can use the local tagging!" +#~ msgstr "Du kannst ein lokales Abonnement erstellen!" + +#~ msgid "Tag %s" +#~ msgstr "Tag %s" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 76ad59fd08..435a57c783 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:40+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -36,7 +36,7 @@ msgstr "S'abonner" #. TRANS: Fieldset legend. #, fuzzy -msgid "Tag remote profile" +msgid "List remote profile" msgstr "Vous devez fournir un profil distant." #. TRANS: Field label. @@ -132,7 +132,7 @@ msgid "Follow list" msgstr "Suivre la liste" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, fuzzy, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s a cessé de suivre %2$s par %3$s." @@ -146,7 +146,7 @@ msgid "Unfollow list" msgstr "Ne plus suivre la liste" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "%1$s a cessé de suivre %2$s par %3$s." @@ -207,8 +207,8 @@ msgstr "Mise à jour du profil" msgid "%s has updated their profile page." msgstr "%s a mis à jour sa page de profil." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" +#. TRANS: Link text for a user to list an OStatus user. +msgid "List" msgstr "" #. TRANS: Plugin description. @@ -280,17 +280,17 @@ msgstr "Le sujet de concentrateur « %s » est invalide. Le groupe n’existe pa msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "URL invalide passée à la méthode « %1$s » : « %2$s »" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. +#. TRANS: Client error displayed when trying to list a local object as if it is remote. #, fuzzy -msgid "You can use the local tagging!" +msgid "You can use the local list functionality!" msgstr "Vous pouvez utiliser l’abonnement local !" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. +#. TRANS: Header for listing a remote object. %s is a remote object's name. #, php-format -msgid "Tag %s" +msgid "List %s" msgstr "" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. msgctxt "BUTTON" msgid "Go" msgstr "Aller" @@ -301,7 +301,7 @@ msgstr "Pseudonyme de l’utilisateur" #. TRANS: Field title. #, fuzzy -msgid "Nickname of the user you want to tag." +msgid "Nickname of the user you want to list." msgstr "Pseudonyme de l’utilisateur que vous voulez marquer." #. TRANS: Field label. @@ -515,27 +515,27 @@ msgid "Not a person object." msgstr "" #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +msgid "Unidentified profile being listed." msgstr "" #. TRANS: Client exception. -msgid "This user is not the one being tagged." +msgid "This user is not the one being listed." msgstr "" #. TRANS: Client exception. -msgid "The tag could not be saved." +msgid "The listing could not be saved." msgstr "" #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +msgid "Unidentified profile being unlisted." msgstr "" #. TRANS: Client exception. -msgid "This user is not the one being untagged." +msgid "This user is not the one being unlisted." msgstr "" #. TRANS: Client exception. -msgid "The tag could not be deleted." +msgid "The listing could not be deleted." msgstr "" #. TRANS: Client exception. @@ -680,7 +680,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "Rejoindre" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "S’abonner à la liste %1$s par %2$s" @@ -770,12 +770,16 @@ msgstr "Format de flux d’information inconnu." msgid "RSS feed without a channel." msgstr "Flux RSS sans canal." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "" +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "" +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. #, php-format msgid "Failed to save activity %s." msgstr "" @@ -967,14 +971,18 @@ msgstr "Cette cible ne reconnaît pas les indications de retrait d’événement #. TRANS: Client exception. #, fuzzy -msgid "This target does not understand tag events." +msgid "This target does not understand list events." msgstr "Cette cible ne reconnaît pas les évènements partagés." #. TRANS: Client exception. #, fuzzy -msgid "This target does not understand untag events." +msgid "This target does not understand unlist events." msgstr "Cette cible ne reconnaît pas les évènements partagés." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "Réception d’une giffle Salmon d’un acteur non identifié." + +#, fuzzy +#~ msgid "You can use the local tagging!" +#~ msgstr "Vous pouvez utiliser l’abonnement local !" diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index 2a68d8a2e7..4f29c14171 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:41+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -31,7 +31,8 @@ msgid "Subscribe" msgstr "Subscriber" #. TRANS: Fieldset legend. -msgid "Tag remote profile" +#, fuzzy +msgid "List remote profile" msgstr "Etiquettar profilo remote" #. TRANS: Field label. @@ -127,7 +128,7 @@ msgid "Follow list" msgstr "Sequer lista" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s seque ora le personas listate in \"%2$s\" de %3$s." @@ -141,7 +142,7 @@ msgid "Unfollow list" msgstr "Non plus sequer lista" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "%1$s cessava de sequer le lista \"%2$s\" de %3$s." @@ -201,9 +202,10 @@ msgstr "Actualisation de profilo" msgid "%s has updated their profile page." msgstr "%s ha actualisate su pagina de profilo." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" -msgstr "Etiquettar" +#. TRANS: Link text for a user to list an OStatus user. +#, fuzzy +msgid "List" +msgstr "Listar" #. TRANS: Plugin description. msgid "" @@ -268,16 +270,17 @@ msgstr "Invalide hub.topic \"%s\". Lista non existe." msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Invalide URL passate pro %1$s: \"%2$s\"" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. -msgid "You can use the local tagging!" -msgstr "Tu pote usar le etiquettas local!" +#. TRANS: Client error displayed when trying to list a local object as if it is remote. +#, fuzzy +msgid "You can use the local list functionality!" +msgstr "Tu pote usar le subscription local!" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. -#, php-format -msgid "Tag %s" -msgstr "Etiquetta %s" +#. TRANS: Header for listing a remote object. %s is a remote object's name. +#, fuzzy, php-format +msgid "List %s" +msgstr "Listar" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. msgctxt "BUTTON" msgid "Go" msgstr "Ir" @@ -287,7 +290,8 @@ msgid "User nickname" msgstr "Pseudonymo del usator" #. TRANS: Field title. -msgid "Nickname of the user you want to tag." +#, fuzzy +msgid "Nickname of the user you want to list." msgstr "Le pseudonymo del usator que tu vole etiquettar." #. TRANS: Field label. @@ -495,27 +499,33 @@ msgid "Not a person object." msgstr "Non es un objecto de persona." #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +#, fuzzy +msgid "Unidentified profile being listed." msgstr "Etiquettage de un profilo non identificate." #. TRANS: Client exception. -msgid "This user is not the one being tagged." +#, fuzzy +msgid "This user is not the one being listed." msgstr "Iste non es le usator que es etiquettate." #. TRANS: Client exception. -msgid "The tag could not be saved." +#, fuzzy +msgid "The listing could not be saved." msgstr "Le etiquetta non poteva esser salveguardate." #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +#, fuzzy +msgid "Unidentified profile being unlisted." msgstr "Disetiquettage de un profilo non identificate." #. TRANS: Client exception. -msgid "This user is not the one being untagged." +#, fuzzy +msgid "This user is not the one being unlisted." msgstr "Iste non es le usator que es disetiquettate." #. TRANS: Client exception. -msgid "The tag could not be deleted." +#, fuzzy +msgid "The listing could not be deleted." msgstr "Le etiquetta non poteva esser delite." #. TRANS: Client exception. @@ -651,7 +661,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "Adherer" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "Subscriber al lista \"%1$s\" de %2$s" @@ -735,15 +745,19 @@ msgstr "Formato de syndication incognite." msgid "RSS feed without a channel." msgstr "Syndication RSS sin canal." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "Pote solmente manear activitates de divulgation con un sol objecto." +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "Pote solmente manear activitates divulgate." -#, fuzzy, php-format +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. +#, php-format msgid "Failed to save activity %s." -msgstr "Falleva de salveguardar le activitate %s" +msgstr "Falleva de salveguardar le activitate %s." #. TRANS: Client exception. %s is a source URI. #, php-format @@ -923,13 +937,24 @@ msgid "This target does not understand leave events." msgstr "Iste destination non comprende eventos de quitar." #. TRANS: Client exception. -msgid "This target does not understand tag events." +#, fuzzy +msgid "This target does not understand list events." msgstr "Iste destination non comprende eventos de etiquettage." #. TRANS: Client exception. -msgid "This target does not understand untag events." +#, fuzzy +msgid "This target does not understand unlist events." msgstr "Iste destination non comprende eventos de disetiquettage." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "Recipeva un claffo de salmon de un actor non identificate." + +#~ msgid "Tag" +#~ msgstr "Etiquettar" + +#~ msgid "You can use the local tagging!" +#~ msgstr "Tu pote usar le etiquettas local!" + +#~ msgid "Tag %s" +#~ msgstr "Etiquetta %s" diff --git a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po index 89743a99a2..fc6941c0fa 100644 --- a/plugins/OStatus/locale/ko/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ko/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:41+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:23+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -31,7 +31,8 @@ msgid "Subscribe" msgstr "구독" #. TRANS: Fieldset legend. -msgid "Tag remote profile" +#, fuzzy +msgid "List remote profile" msgstr "원격 프로필 태그" #. TRANS: Field label. @@ -126,7 +127,7 @@ msgid "Follow list" msgstr "리스트 팔로우" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, fuzzy, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s님이 %3$s의 %2$s 리스트 팔로우를 중단했습니다." @@ -140,7 +141,7 @@ msgid "Unfollow list" msgstr "리스트 팔로우 취소" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "%1$s님이 %3$s의 %2$s 리스트 팔로우를 중단했습니다." @@ -200,9 +201,9 @@ msgstr "프로필 업데이트" msgid "%s has updated their profile page." msgstr "%s님이 프로필 페이지를 업데이트했습니다." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" -msgstr "태그" +#. TRANS: Link text for a user to list an OStatus user. +msgid "List" +msgstr "" #. TRANS: Plugin description. msgid "" @@ -266,16 +267,17 @@ msgstr "잘못된 hub.topic \"%s\". 리스트가 없습니다." msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "잘못된 URL을 %1$s에 넘겼습니다: \"%2$s\"" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. -msgid "You can use the local tagging!" -msgstr "로컬 태깅을 사용할 수 있습니다!" +#. TRANS: Client error displayed when trying to list a local object as if it is remote. +#, fuzzy +msgid "You can use the local list functionality!" +msgstr "로컬 구독을 사용할 수 없습니다!" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. +#. TRANS: Header for listing a remote object. %s is a remote object's name. #, php-format -msgid "Tag %s" -msgstr "태그 %s" +msgid "List %s" +msgstr "" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. #, fuzzy msgctxt "BUTTON" msgid "Go" @@ -287,7 +289,7 @@ msgstr "사용자 이름" #. TRANS: Field title. #, fuzzy -msgid "Nickname of the user you want to tag." +msgid "Nickname of the user you want to list." msgstr "태그를 추가하려는 사용자의 이름" #. TRANS: Field label. @@ -492,27 +494,27 @@ msgid "Not a person object." msgstr "" #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +msgid "Unidentified profile being listed." msgstr "" #. TRANS: Client exception. -msgid "This user is not the one being tagged." +msgid "This user is not the one being listed." msgstr "" #. TRANS: Client exception. -msgid "The tag could not be saved." +msgid "The listing could not be saved." msgstr "" #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +msgid "Unidentified profile being unlisted." msgstr "" #. TRANS: Client exception. -msgid "This user is not the one being untagged." +msgid "This user is not the one being unlisted." msgstr "" #. TRANS: Client exception. -msgid "The tag could not be deleted." +msgid "The listing could not be deleted." msgstr "" #. TRANS: Client exception. @@ -650,7 +652,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "가입" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "%2$s의 %1$s 리스트에 구독" @@ -736,12 +738,16 @@ msgstr "피드 형식을 알 수 없습니다." msgid "RSS feed without a channel." msgstr "채널이 하나도 없는 RSS 피드입니다." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "" +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "" +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. #, php-format msgid "Failed to save activity %s." msgstr "" @@ -922,13 +928,24 @@ msgid "This target does not understand leave events." msgstr "이 대상은 행사 떠나기를 인식하지 못합니다." #. TRANS: Client exception. -msgid "This target does not understand tag events." +#, fuzzy +msgid "This target does not understand list events." msgstr "이 대상은 이벤트 태그를 인식하지 못합니다." #. TRANS: Client exception. -msgid "This target does not understand untag events." +#, fuzzy +msgid "This target does not understand unlist events." msgstr "이 대상은 이벤트 태그 취소를 인식하지 못합니다." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "알지 못하는 actor에서 salmon slap을 받았습니다." + +#~ msgid "Tag" +#~ msgstr "태그" + +#~ msgid "You can use the local tagging!" +#~ msgstr "로컬 태깅을 사용할 수 있습니다!" + +#~ msgid "Tag %s" +#~ msgstr "태그 %s" diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index 87ea6653bf..8ff8d83715 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:41+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -31,7 +31,8 @@ msgid "Subscribe" msgstr "Претплати се" #. TRANS: Fieldset legend. -msgid "Tag remote profile" +#, fuzzy +msgid "List remote profile" msgstr "Означи далечински профил" #. TRANS: Field label. @@ -126,7 +127,7 @@ msgid "Follow list" msgstr "Список на следења" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s сега следи луѓе на списокот %2$s од %3$s." @@ -140,7 +141,7 @@ msgid "Unfollow list" msgstr "Престани со следење на списокот" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "%1$s престана да го следи списокот %2$s од %3$s." @@ -200,9 +201,10 @@ msgstr "Поднова на профил" msgid "%s has updated their profile page." msgstr "%s ја поднови својата профилна страница." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" -msgstr "Означи" +#. TRANS: Link text for a user to list an OStatus user. +#, fuzzy +msgid "List" +msgstr "Наведи" #. TRANS: Plugin description. msgid "" @@ -266,16 +268,17 @@ msgstr "Неважечки hub.topic %s. Списокот не постои." msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Добив неважечка URL-адреса за %1$s: „%2$s“" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. -msgid "You can use the local tagging!" -msgstr "Можете да го користите локалното означување!" +#. TRANS: Client error displayed when trying to list a local object as if it is remote. +#, fuzzy +msgid "You can use the local list functionality!" +msgstr "Можете да ја користите локалната претплата!" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. -#, php-format -msgid "Tag %s" -msgstr "Означи го/ја %s" +#. TRANS: Header for listing a remote object. %s is a remote object's name. +#, fuzzy, php-format +msgid "List %s" +msgstr "Наведи" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. msgctxt "BUTTON" msgid "Go" msgstr "Оди" @@ -285,7 +288,8 @@ msgid "User nickname" msgstr "Прекар на корисникот" #. TRANS: Field title. -msgid "Nickname of the user you want to tag." +#, fuzzy +msgid "Nickname of the user you want to list." msgstr "Прекарот на корисникот што сакате да го означите." #. TRANS: Field label. @@ -492,27 +496,33 @@ msgid "Not a person object." msgstr "Објектот не е лице." #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +#, fuzzy +msgid "Unidentified profile being listed." msgstr "Се означува непрепознаен профил." #. TRANS: Client exception. -msgid "This user is not the one being tagged." +#, fuzzy +msgid "This user is not the one being listed." msgstr "Ова не е корисникот што се означува." #. TRANS: Client exception. -msgid "The tag could not be saved." +#, fuzzy +msgid "The listing could not be saved." msgstr "Не можев да ја зачувам ознаката." #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +#, fuzzy +msgid "Unidentified profile being unlisted." msgstr "Се означува непрепознаен профил." #. TRANS: Client exception. -msgid "This user is not the one being untagged." +#, fuzzy +msgid "This user is not the one being unlisted." msgstr "Ова не е корисникот кому му се трга ознаката." #. TRANS: Client exception. -msgid "The tag could not be deleted." +#, fuzzy +msgid "The listing could not be deleted." msgstr "Не можев да ја избришам ознаката." #. TRANS: Client exception. @@ -652,7 +662,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "Зачлени се" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "Претплати се на списокот %1$s од %2$s" @@ -740,15 +750,19 @@ msgstr "Непознат формат на каналско емитување." msgid "RSS feed without a channel." msgstr "RSS-емитување без канал." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "Може да работи само со активности за споделување со точно еден објект." +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "Може да работи само за активности за споделување." -#, fuzzy, php-format +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. +#, php-format msgid "Failed to save activity %s." -msgstr "Не можев да ја зачувам активноста %s" +msgstr "Не можев да ја зачувам активноста %s." #. TRANS: Client exception. %s is a source URI. #, php-format @@ -928,13 +942,24 @@ msgid "This target does not understand leave events." msgstr "Оваа цел не разбира напуштање на настани." #. TRANS: Client exception. -msgid "This target does not understand tag events." +#, fuzzy +msgid "This target does not understand list events." msgstr "Оваа цел не разбира означување на настани." #. TRANS: Client exception. -msgid "This target does not understand untag events." +#, fuzzy +msgid "This target does not understand unlist events." msgstr "Оваа цел не разбира отстранување на ознаки на настани." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "Примив Salmon-шамар од непознат учесник." + +#~ msgid "Tag" +#~ msgstr "Означи" + +#~ msgid "You can use the local tagging!" +#~ msgstr "Можете да го користите локалното означување!" + +#~ msgid "Tag %s" +#~ msgstr "Означи го/ја %s" diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index 21b38d3454..0fdf70cdf2 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:41+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -32,7 +32,8 @@ msgid "Subscribe" msgstr "Abonneren" #. TRANS: Fieldset legend. -msgid "Tag remote profile" +#, fuzzy +msgid "List remote profile" msgstr "Extern profiel in lijst opnemen" #. TRANS: Field label. @@ -127,7 +128,7 @@ msgid "Follow list" msgstr "Op lijst abonneren" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s volgt niet langer de mensen in de lijst %2$s van %3$s." @@ -141,7 +142,7 @@ msgid "Unfollow list" msgstr "Lijst niet langer volgen" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "%1$s volgt niet langer de lijst %2$s van %3$s." @@ -201,9 +202,10 @@ msgstr "Profielupdate" msgid "%s has updated their profile page." msgstr "Het profiel van %s is bijgewerkt." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" -msgstr "Label" +#. TRANS: Link text for a user to list an OStatus user. +#, fuzzy +msgid "List" +msgstr "Opnemen in lijst" #. TRANS: Plugin description. msgid "" @@ -271,16 +273,17 @@ msgstr "Ongeldig hub.topic \"%s\". De lijst bestaat niet." msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Er is een ongeldige URL doorgegeven voor %1$s: \"%2$s\"" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. -msgid "You can use the local tagging!" -msgstr "U kunt de lokale labels gebruiken!" +#. TRANS: Client error displayed when trying to list a local object as if it is remote. +#, fuzzy +msgid "You can use the local list functionality!" +msgstr "U kunt het lokale abonnement gebruiken!" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. -#, php-format -msgid "Tag %s" -msgstr "Labelen als %s" +#. TRANS: Header for listing a remote object. %s is a remote object's name. +#, fuzzy, php-format +msgid "List %s" +msgstr "Opnemen in lijst" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. msgctxt "BUTTON" msgid "Go" msgstr "OK" @@ -290,7 +293,8 @@ msgid "User nickname" msgstr "Gebruikersnaam" #. TRANS: Field title. -msgid "Nickname of the user you want to tag." +#, fuzzy +msgid "Nickname of the user you want to list." msgstr "Naam van de gebruiker die u wilt labelen." #. TRANS: Field label. @@ -500,27 +504,33 @@ msgid "Not a person object." msgstr "Geen persoonsobject." #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +#, fuzzy +msgid "Unidentified profile being listed." msgstr "Er wordt een niet-geïdentificeerd profiel gelabeld." #. TRANS: Client exception. -msgid "This user is not the one being tagged." +#, fuzzy +msgid "This user is not the one being listed." msgstr "Dit is niet de gebruiker die wordt gelabeld." #. TRANS: Client exception. -msgid "The tag could not be saved." +#, fuzzy +msgid "The listing could not be saved." msgstr "Het label kon niet worden opgeslagen." #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +#, fuzzy +msgid "Unidentified profile being unlisted." msgstr "Er wordt een label van een niet-geïdentificeerd profiel verwijderd." #. TRANS: Client exception. -msgid "This user is not the one being untagged." +#, fuzzy +msgid "This user is not the one being unlisted." msgstr "Dit is niet de gebruiker waarvan een label wordt verwijderd." #. TRANS: Client exception. -msgid "The tag could not be deleted." +#, fuzzy +msgid "The listing could not be deleted." msgstr "Het label kon niet worden verwijderd." #. TRANS: Client exception. @@ -669,7 +679,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "Toetreden" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "Abonneren op de lijst %1$s van %2$s" @@ -757,13 +767,17 @@ msgstr "Onbekend feedformaat" msgid "RSS feed without a channel." msgstr "RSS-feed zonder kanaal." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "Kan slechts delen van activiteiten aan met precies een objects." +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "Het is alleen mogelijk gedeelde activiteiten af te handelen." -#, fuzzy, php-format +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. +#, php-format msgid "Failed to save activity %s." msgstr "Het opslaan van de activiteit %s is mislukt." @@ -954,13 +968,24 @@ msgid "This target does not understand leave events." msgstr "Deze bestemming begrijpt uitschrijven van evenementen niet." #. TRANS: Client exception. -msgid "This target does not understand tag events." +#, fuzzy +msgid "This target does not understand list events." msgstr "Deze bestemming begrijpt evenementen labelen niet." #. TRANS: Client exception. -msgid "This target does not understand untag events." +#, fuzzy +msgid "This target does not understand unlist events." msgstr "Deze bestemming begrijpt evenementen ontlabelen niet." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "Er is een Salmonslap ontvangen van een niet-geïdentificeerde actor." + +#~ msgid "Tag" +#~ msgstr "Label" + +#~ msgid "You can use the local tagging!" +#~ msgstr "U kunt de lokale labels gebruiken!" + +#~ msgid "Tag %s" +#~ msgstr "Labelen als %s" diff --git a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po index 48002ff073..718e672f84 100644 --- a/plugins/OStatus/locale/tl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/tl/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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:41+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -31,7 +31,8 @@ msgid "Subscribe" msgstr "Pumayag na tumanggap ng sipi" #. TRANS: Fieldset legend. -msgid "Tag remote profile" +#, fuzzy +msgid "List remote profile" msgstr "Tatakan ang malayong balangkas" #. TRANS: Field label. @@ -127,7 +128,7 @@ msgid "Follow list" msgstr "Sundan ang talaan" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "" @@ -142,7 +143,7 @@ msgid "Unfollow list" msgstr "Huwag sundan ang talaan" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "Tumigil si %1$s sa pagsunod sa talaang %2$s ni %3$s." @@ -202,9 +203,10 @@ msgstr "Pagsasapanahon ng balangkas" msgid "%s has updated their profile page." msgstr "Si %s ay nagsapanahon ng kanilang pahina ng balangkas." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" -msgstr "Tatakan" +#. TRANS: Link text for a user to list an OStatus user. +#, fuzzy +msgid "List" +msgstr "Itala" #. TRANS: Plugin description. msgid "" @@ -276,16 +278,17 @@ msgstr "Hindi katanggap-tanggap na hub.topic na %s; hindi umiiral ang talaan." msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Hindi katanggap-tanggap na URL ang ipinasa para sa %1$s: \"%2$s\"" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. -msgid "You can use the local tagging!" -msgstr "Maaari mong gamitin ang katutubong pagtatatak!" +#. TRANS: Client error displayed when trying to list a local object as if it is remote. +#, fuzzy +msgid "You can use the local list functionality!" +msgstr "Maaari mong gamitin ang katutubong pagpapasipi!" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. -#, php-format -msgid "Tag %s" -msgstr "Tatakan si %s" +#. TRANS: Header for listing a remote object. %s is a remote object's name. +#, fuzzy, php-format +msgid "List %s" +msgstr "Itala" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. msgctxt "BUTTON" msgid "Go" msgstr "Gawin" @@ -295,7 +298,8 @@ msgid "User nickname" msgstr "Palayaw ng tagagamit" #. TRANS: Field title. -msgid "Nickname of the user you want to tag." +#, fuzzy +msgid "Nickname of the user you want to list." msgstr "Palayaw ng tagagamit na nais mong tatakan." #. TRANS: Field label. @@ -504,27 +508,33 @@ msgid "Not a person object." msgstr "Hindi isang bagay ng tao." #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +#, fuzzy +msgid "Unidentified profile being listed." msgstr "Tinatatakang balangkas na hindi nakikilala." #. TRANS: Client exception. -msgid "This user is not the one being tagged." +#, fuzzy +msgid "This user is not the one being listed." msgstr "Hindi ito ang tagagamit na tinatatakan." #. TRANS: Client exception. -msgid "The tag could not be saved." +#, fuzzy +msgid "The listing could not be saved." msgstr "Hindi masasagip ang tatak." #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +#, fuzzy +msgid "Unidentified profile being unlisted." msgstr "Ang hindi nakikilalang balangkas na hindi na tinatakan." #. TRANS: Client exception. -msgid "This user is not the one being untagged." +#, fuzzy +msgid "This user is not the one being unlisted." msgstr "Hindi ito ang tagagamit na hindi na tinatatakan." #. TRANS: Client exception. -msgid "The tag could not be deleted." +#, fuzzy +msgid "The listing could not be deleted." msgstr "Hindi mabubura ang tatak." #. TRANS: Client exception. @@ -667,7 +677,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "Sumali" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "Magpasipi sa talaang %1$s ni %2$s" @@ -759,12 +769,16 @@ msgstr "Hindi nalalamang anyo ng pasubo." msgid "RSS feed without a channel." msgstr "Pasubong RSS na walang libuyan." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "" +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "" +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. #, php-format msgid "Failed to save activity %s." msgstr "" @@ -955,12 +969,14 @@ msgstr "" "Ang pinupukol na ito ay hindi nakakaunawa ng mga kaganapan ng paglisan." #. TRANS: Client exception. -msgid "This target does not understand tag events." +#, fuzzy +msgid "This target does not understand list events." msgstr "" "Ang pinupukol na ito ay hindi nakakaunawa ng mga kaganapan ng pagtatatak." #. TRANS: Client exception. -msgid "This target does not understand untag events." +#, fuzzy +msgid "This target does not understand unlist events." msgstr "" "Ang pinupukol na ito ay hindi nakakaunawa ng mga kaganapan ng hindi " "pagtatatak." @@ -968,3 +984,12 @@ msgstr "" #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "Tumanggap ng isang sampal ng salmon mula sa hindi nakikilalang aktor." + +#~ msgid "Tag" +#~ msgstr "Tatakan" + +#~ msgid "You can use the local tagging!" +#~ msgstr "Maaari mong gamitin ang katutubong pagtatatak!" + +#~ msgid "Tag %s" +#~ msgstr "Tatakan si %s" diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index f8ef5ae142..ba216c672a 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:42+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:51:27+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:31+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -32,7 +32,8 @@ msgid "Subscribe" msgstr "Підписатись" #. TRANS: Fieldset legend. -msgid "Tag remote profile" +#, fuzzy +msgid "List remote profile" msgstr "Позначити віддалений профіль." #. TRANS: Field label. @@ -128,7 +129,7 @@ msgid "Follow list" msgstr "Слідкувати за списком" #. TRANS: Success message for remote list follow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s is now following people listed in %2$s by %3$s." msgstr "%1$s тепер відслідковує дописи людей у списку %2$s користувача %3$s." @@ -142,7 +143,7 @@ msgid "Unfollow list" msgstr "Не стежити за списком" #. TRANS: Success message for remote list unfollow through OStatus. -#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the tagger's name. +#. TRANS: %1$s is the subscriber name, %2$s is the list, %3$s is the lister's name. #, php-format msgid "%1$s stopped following the list %2$s by %3$s." msgstr "%1$s припинив слідкувати за списком %2$s користувача %3$s." @@ -202,9 +203,10 @@ msgstr "Оновлення профілю" msgid "%s has updated their profile page." msgstr "%s оновив сторінку свого профілю." -#. TRANS: Link text for a user to tag an OStatus user. -msgid "Tag" -msgstr "Теґ" +#. TRANS: Link text for a user to list an OStatus user. +#, fuzzy +msgid "List" +msgstr "Список" #. TRANS: Plugin description. msgid "" @@ -270,16 +272,17 @@ msgstr "Невірний hub.topic «%s». Список не існує." msgid "Invalid URL passed for %1$s: \"%2$s\"" msgstr "Для %1$s передано невірний URL: «%2$s»" -#. TRANS: Client error displayed when trying to tag a local object as if it is remote. -msgid "You can use the local tagging!" -msgstr "Ви можете користуватись локальними теґами!" +#. TRANS: Client error displayed when trying to list a local object as if it is remote. +#, fuzzy +msgid "You can use the local list functionality!" +msgstr "Ви можете користуватись локальними підписками!" -#. TRANS: Header for tagging a remote object. %s is a remote object's name. -#, php-format -msgid "Tag %s" -msgstr "Теґ %s" +#. TRANS: Header for listing a remote object. %s is a remote object's name. +#, fuzzy, php-format +msgid "List %s" +msgstr "Список" -#. TRANS: Button text to tag a remote object. +#. TRANS: Button text to list a remote object. msgctxt "BUTTON" msgid "Go" msgstr "Перейти" @@ -289,7 +292,8 @@ msgid "User nickname" msgstr "Ім’я користувача" #. TRANS: Field title. -msgid "Nickname of the user you want to tag." +#, fuzzy +msgid "Nickname of the user you want to list." msgstr "Ім’я користувача, якого ви хотіли б позначити теґом." #. TRANS: Field label. @@ -498,27 +502,33 @@ msgid "Not a person object." msgstr "Не персональний об’єкт." #. TRANS: Client exception. -msgid "Unidentified profile being tagged." +#, fuzzy +msgid "Unidentified profile being listed." msgstr "До невідомого профілю застосовано теґи." #. TRANS: Client exception. -msgid "This user is not the one being tagged." +#, fuzzy +msgid "This user is not the one being listed." msgstr "Цей користувач не є тим, до якого застосовано теґи." #. TRANS: Client exception. -msgid "The tag could not be saved." +#, fuzzy +msgid "The listing could not be saved." msgstr "Хмарка теґів не може бути збереженою." #. TRANS: Client exception. -msgid "Unidentified profile being untagged." +#, fuzzy +msgid "Unidentified profile being unlisted." msgstr "З невідомого профілю знято всі теґи." #. TRANS: Client exception. -msgid "This user is not the one being untagged." +#, fuzzy +msgid "This user is not the one being unlisted." msgstr "Цей користувач не є тим, з профілю якого знято теґи." #. TRANS: Client exception. -msgid "The tag could not be deleted." +#, fuzzy +msgid "The listing could not be deleted." msgstr "Хмарка теґів не може бути видаленою." #. TRANS: Client exception. @@ -660,7 +670,7 @@ msgctxt "BUTTON" msgid "Join" msgstr "Приєднатися" -#. TRANS: Form legend. %1$s is a list, %2$s is a tagger's name. +#. TRANS: Form legend. %1$s is a list, %2$s is a lister's name. #, php-format msgid "Subscribe to list %1$s by %2$s" msgstr "Підписатися до списку %1$s користувача %2$s" @@ -750,12 +760,16 @@ msgstr "Невідомий формат веб-стрічки." msgid "RSS feed without a channel." msgstr "RSS-стрічка не має каналу." +#. TRANS: Client exception thrown when trying to share multiple activities at once. msgid "Can only handle share activities with exactly one object." msgstr "" +#. TRANS: Client exception thrown when trying to share a non-activity object. msgid "Can only handle shared activities." msgstr "" +#. TRANS: Client exception thrown when saving an activity share fails. +#. TRANS: %s is a share ID. #, php-format msgid "Failed to save activity %s." msgstr "" @@ -937,13 +951,24 @@ msgid "This target does not understand leave events." msgstr "Ціль не розуміє, що таке «залишати подію»." #. TRANS: Client exception. -msgid "This target does not understand tag events." +#, fuzzy +msgid "This target does not understand list events." msgstr "!Ціль не розуміє, що таке «позначити подію»." #. TRANS: Client exception. -msgid "This target does not understand untag events." +#, fuzzy +msgid "This target does not understand unlist events." msgstr "Ціль не розуміє, що таке «зняти теґ з події»." #. TRANS: Exception. msgid "Received a salmon slap from unidentified actor." msgstr "Отримано ляпаса від невизначеного учасника за протоколом Salmon." + +#~ msgid "Tag" +#~ msgstr "Теґ" + +#~ msgid "You can use the local tagging!" +#~ msgstr "Ви можете користуватись локальними теґами!" + +#~ msgid "Tag %s" +#~ msgstr "Теґ %s" diff --git a/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot b/plugins/OpenExternalLinkTarget/locale/OpenExternalLinkTarget.pot index 47fe9c3a7f..abe6d42ddb 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index dcf42d3f33..62537d24d9 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 756de64966..2be457ab81 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:26+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-19 11:23:11+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -36,14 +36,13 @@ msgstr "" "directement." #. TRANS: Page notice. %s is a trustroot name. -#, fuzzy, php-format +#, php-format msgid "" "%s has asked to verify your identity. Click Continue to verify your identity " "and login without creating a new password." msgstr "" -"%s a demandé la vérification de votre identité. Veuillez cliquer sur « " -"Continuer » pour vérifier votre identité et connectez-vous sans créer un " -"nouveau mot de passe." +"%s a demandé de vérifier de votre identité. Cliquer sur Continuer pour " +"vérifier votre identité et connectez-vous sans créer un nouveau mot de passe." #. TRANS: Button text to continue OpenID identity verification. #. TRANS: button label for OAuth authorization page when needing OpenID authentication first. diff --git a/plugins/OpenX/locale/OpenX.pot b/plugins/OpenX/locale/OpenX.pot index 5bafca612a..b490a9390e 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Orbited/locale/Orbited.pot b/plugins/Orbited/locale/Orbited.pot index a663f1a862..ebab1307fc 100644 --- a/plugins/Orbited/locale/Orbited.pot +++ b/plugins/Orbited/locale/Orbited.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/PiwikAnalytics.pot b/plugins/PiwikAnalytics/locale/PiwikAnalytics.pot index 513d429f81..7b92bce462 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Poll.pot b/plugins/Poll/locale/Poll.pot index b3432f4136..ef9e39a9b2 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/PostDebug.pot b/plugins/PostDebug/locale/PostDebug.pot index 71aaa29654..15cb483343 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/PoweredByStatusNet.pot b/plugins/PoweredByStatusNet/locale/PoweredByStatusNet.pot index cdd4830882..8e5de7fdd0 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/PtitUrl.pot b/plugins/PtitUrl/locale/PtitUrl.pot index 7ebfd47d67..aabd553fb0 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/QnA/locale/QnA.pot b/plugins/QnA/locale/QnA.pot index b4ab8d1658..348026f156 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/RSSCloud.pot b/plugins/RSSCloud/locale/RSSCloud.pot index 8a8811732e..e076008907 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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 5d69e7379c..a5989e7f59 100644 --- a/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/de/LC_MESSAGES/RSSCloud.po @@ -13,13 +13,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:01+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 57cdbe52c4..088c8b17d9 100644 --- a/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po +++ b/plugins/RSSCloud/locale/fr/LC_MESSAGES/RSSCloud.po @@ -1,6 +1,7 @@ # Translation of StatusNet - RSSCloud to French (Français) # Exported from translatewiki.net # +# Author: Crochet.david # Author: Od1n # Author: Verdy p # -- @@ -10,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RSSCloud\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:01+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-rsscloud\n" @@ -39,11 +40,8 @@ msgid "Request must be POST." msgstr "La requête HTTP au nuage RSS doit être de type POST." #. TRANS: Form validation error displayed when HTTP POST is not used. -#, fuzzy msgid "Only HTTP POST notifications are supported at this time." -msgstr "" -"Seules les notifications HTTP-POST sont prises en charge en ce moment sur le " -"nuage RSS." +msgstr "Seuls les notifications HTTP POST sont pris en charge en ce moment." #. TRANS: List separator. msgctxt "SEPARATOR" diff --git a/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po b/plugins/RSSCloud/locale/ia/LC_MESSAGES/RSSCloud.po index bfa731b4cd..2cc21a9b5b 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:01+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 55bd0723e9..019c003a2b 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 9331b4cd84..f684f062b1 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 d2b180eba5..e278347df6 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 6face43572..46cf38c956 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:02+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:37+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-POT-Import-Date: 2011-08-16 06:59:35+0000\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //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 3cab78b7fe..da462d72fc 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,50 +16,53 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: keepalivechannel.php:66 closechannel.php:66 +#. TRANS: Client exception. Do not translate POST. +#: keepalivechannel.php:65 closechannel.php:65 msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. #: keepalivechannel.php:72 closechannel.php:72 msgid "No channel key argument." msgstr "" -#: keepalivechannel.php:78 closechannel.php:78 +#. TRANS: Client exception thrown when referring to a non-existing channel. +#: keepalivechannel.php:79 closechannel.php:79 msgid "No such channel." msgstr "" #. TRANS: Text label for realtime view "play" button, usually replaced by an icon. -#: RealtimePlugin.php:407 +#: RealtimePlugin.php:405 msgctxt "BUTTON" msgid "Play" msgstr "" #. TRANS: Tooltip for realtime view "play" button. -#: RealtimePlugin.php:409 +#: RealtimePlugin.php:407 msgctxt "TOOLTIP" msgid "Play" msgstr "" #. TRANS: Text label for realtime view "pause" button -#: RealtimePlugin.php:411 +#: RealtimePlugin.php:409 msgctxt "BUTTON" msgid "Pause" msgstr "" #. TRANS: Tooltip for realtime view "pause" button -#: RealtimePlugin.php:413 +#: RealtimePlugin.php:411 msgctxt "TOOLTIP" msgid "Pause" msgstr "" #. TRANS: Text label for realtime view "popup" button, usually replaced by an icon. -#: RealtimePlugin.php:415 +#: RealtimePlugin.php:413 msgctxt "BUTTON" msgid "Pop up" msgstr "" #. TRANS: Tooltip for realtime view "popup" button. -#: RealtimePlugin.php:417 +#: RealtimePlugin.php:415 msgctxt "TOOLTIP" msgid "Pop up in a window" msgstr "" diff --git a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po index 133dd204d3..e136489e17 100644 --- a/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/af/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:36+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ar/LC_MESSAGES/Realtime.po index 903f8f0139..5ecd71a6a3 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-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" @@ -23,12 +23,15 @@ msgstr "" "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po index 7a75fcff12..08c1b4bb7f 100644 --- a/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/br/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:36+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po index 3861fd4008..ced2cd6399 100644 --- a/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ca/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:37+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po index fa7885db5d..9dcb0edafd 100644 --- a/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/de/LC_MESSAGES/Realtime.po @@ -10,24 +10,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "Du musst eine POST-Anfrage schicken." +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "Kein Kanalpasswort als Argument angegeben." +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "Kanal existiert nicht." diff --git a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po index ed893ac7e0..0d68cec1d0 100644 --- a/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/fr/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po index ee1983de8c..485d25a7eb 100644 --- a/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ia/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "Es necessari inviar lo con POST." +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "Il non ha un parametro pro clave de canal." +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "Iste canal non existe." diff --git a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po index 9e4a49f03d..4b8819995f 100644 --- a/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/lv/LC_MESSAGES/Realtime.po @@ -9,25 +9,28 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:54+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:37+0000\n" "Language-Team: Latvian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: lv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n != " "0) ? 1 : 2 );\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po index 04a547bbdb..1a81e14ac7 100644 --- a/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/mk/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "Ќе мора да го објавите со POST." +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "Нема аргумент за клучот на каналот." +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "Нема таков канал." diff --git a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po index 075682ce17..f5cfefc6c8 100644 --- a/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/ne/LC_MESSAGES/Realtime.po @@ -10,24 +10,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:37+0000\n" "Language-Team: Nepali \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: ne\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po index 72e5243bec..ab0108350e 100644 --- a/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/nl/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "U moet het bericht POST-en." +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "Er is geen kanaalsleutel als argument opgegeven." +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "Dat kanaal bestaat niet." diff --git a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po index 85a1e129be..f7aea92bce 100644 --- a/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/sv/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:37+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po index 349692ed42..ea57c37b64 100644 --- a/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tl/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po index 9bbd1186c5..e5423c7b05 100644 --- a/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/tr/LC_MESSAGES/Realtime.po @@ -9,24 +9,27 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36:37+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POT-Import-Date: 2011-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-realtime\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. TRANS: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po index e530bf1aff..b4303e8f84 100644 --- a/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po +++ b/plugins/Realtime/locale/uk/LC_MESSAGES/Realtime.po @@ -9,25 +9,28 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Realtime\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:21:55+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-07-21 13:52:10+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-realtime\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: Client exception. Do not translate POST. msgid "You have to POST it." msgstr "" +#. TRANS: Client exception thrown when the channel key argument is missing. msgid "No channel key argument." msgstr "" +#. TRANS: Client exception thrown when referring to a non-existing channel. msgid "No such channel." msgstr "" diff --git a/plugins/Recaptcha/locale/Recaptcha.pot b/plugins/Recaptcha/locale/Recaptcha.pot index f36bd5562c..9dea88757f 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 77cb5b5407..788cd14555 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/RequireValidatedEmail.pot b/plugins/RequireValidatedEmail/locale/RequireValidatedEmail.pot index 7bfd375fe4..f872a07357 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ReverseUsernameAuthentication.pot b/plugins/ReverseUsernameAuthentication/locale/ReverseUsernameAuthentication.pot index 037f956f66..20427c79ba 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/SQLProfile.pot b/plugins/SQLProfile/locale/SQLProfile.pot index 6609ab31fd..d9503ed94f 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/SQLStats/locale/SQLStats.pot b/plugins/SQLStats/locale/SQLStats.pot index 641f5d2374..01c32aa2a6 100644 --- a/plugins/SQLStats/locale/SQLStats.pot +++ b/plugins/SQLStats/locale/SQLStats.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Sample.pot b/plugins/Sample/locale/Sample.pot index 598c93ed56..447ba88288 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/nl/LC_MESSAGES/Sample.po b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po index b37336a103..a248526ca7 100644 --- a/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po +++ b/plugins/Sample/locale/nl/LC_MESSAGES/Sample.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Sample to Dutch (Nederlands) # Exported from translatewiki.net # +# Author: SPQRobin # Author: Siebrand # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Sample\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" -"PO-Revision-Date: 2011-08-15 14:22:03+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" +"PO-Revision-Date: 2011-08-20 18:36: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-06-18 16:20:38+0000\n" -"X-Generator: MediaWiki 1.19alpha (r94516); Translate extension (2011-07-09)\n" +"X-Generator: MediaWiki 1.19alpha (r95098); Translate extension (2011-07-09)\n" "X-Translation-Project: translatewiki.net at //translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-sample\n" @@ -55,7 +56,8 @@ msgstr "Een warme begroeting" #. TRANS: Plugin description. msgid "A sample plugin to show basics of development for new hackers." msgstr "" -"Een voorbeeldplug-in als basis voor ontwikkelingen door nieuwe hackers." +"Een voorbeeldplug-in om de basisprogrammeertechnieken te demonstreren aan " +"nieuwe ontwikkelaars." #. TRANS: Exception thrown when the user greeting count could not be saved in the database. #. TRANS: %d is a user ID (number). diff --git a/plugins/SearchSub/locale/SearchSub.pot b/plugins/SearchSub/locale/SearchSub.pot index 3b71a189c3..a16548bef8 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/ShareNotice.pot b/plugins/ShareNotice/locale/ShareNotice.pot index 28fbe581d1..7d2eea493c 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/SimpleUrl.pot b/plugins/SimpleUrl/locale/SimpleUrl.pot index efcb767e3c..c25fe8269a 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot index 76846682ab..9777ca765d 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/SlicedFavorites.pot b/plugins/SlicedFavorites/locale/SlicedFavorites.pot index 813e3ece50..401dca41ac 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot index f23e6d5c1a..3352c86bb3 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Spotify/locale/Spotify.pot b/plugins/Spotify/locale/Spotify.pot index 400abffb64..ded0b16127 100644 --- a/plugins/Spotify/locale/Spotify.pot +++ b/plugins/Spotify/locale/Spotify.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/StrictTransportSecurity.pot b/plugins/StrictTransportSecurity/locale/StrictTransportSecurity.pot index f84661647e..aaeff68858 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/SubMirror.pot b/plugins/SubMirror/locale/SubMirror.pot index 6ffb9bc022..0c170143ec 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/SubscriptionThrottle.pot b/plugins/SubscriptionThrottle/locale/SubscriptionThrottle.pot index c83650e6e2..19b917b209 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/TabFocus.pot b/plugins/TabFocus/locale/TabFocus.pot index 8c3cf2686b..807ab67308 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/TagSub.pot b/plugins/TagSub/locale/TagSub.pot index b5f947ed6c..0aa46ac748 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/TightUrl.pot b/plugins/TightUrl/locale/TightUrl.pot index d337c3e9bb..92aca1ffba 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/TinyMCE.pot b/plugins/TinyMCE/locale/TinyMCE.pot index be8e295b91..f961b66627 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index e6f28f3d53..71a09990db 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/UserFlag.pot b/plugins/UserFlag/locale/UserFlag.pot index cafb48adf9..d96fd9a6da 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/UserLimit.pot b/plugins/UserLimit/locale/UserLimit.pot index f5a46636c6..7610e5274e 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/WikiHashtags.pot b/plugins/WikiHashtags/locale/WikiHashtags.pot index 353afaebe8..2752b1662f 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/WikiHowProfile.pot b/plugins/WikiHowProfile/locale/WikiHowProfile.pot index a05f643e9c..fb85817e01 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/XCache.pot b/plugins/XCache/locale/XCache.pot index 3baf195462..32df2f79bf 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/Xmpp.pot b/plugins/Xmpp/locale/Xmpp.pot index f5158300fe..68b102cb09 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+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/YammerImport.pot b/plugins/YammerImport/locale/YammerImport.pot index 34e3058057..70b1c9d89e 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-08-15 14:19+0000\n" +"POT-Creation-Date: 2011-08-20 18:34+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 83c988e1e799861d007ef82ff575eefa3140ef33 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Sun, 21 Aug 2011 12:41:03 +0200 Subject: [PATCH 042/118] Fix incorrect translator documentation. --- actions/apiconversation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/apiconversation.php b/actions/apiconversation.php index dae9a41f71..504787b9a2 100644 --- a/actions/apiconversation.php +++ b/actions/apiconversation.php @@ -101,7 +101,7 @@ class ApiconversationAction extends ApiAuthAction function handle($argarray=null) { $sitename = common_config('site', 'name'); - // TRANS: Timeline title for user and friends. %s is a user nickname. + // TRANS: Title for conversion timeline. $title = _m('TITLE', 'Conversation'); $id = common_local_url('apiconversation', array('id' => $this->conversation->id, 'format' => $this->format)); $link = common_local_url('conversation', array('id' => $this->conversation->id)); From d3399e93e82f8b9a59fc096c7900a569a8195546 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 12:25:04 -0400 Subject: [PATCH 043/118] use listGet() for ConversationNoticeStream --- classes/Notice.php | 5 +-- lib/conversationnoticestream.php | 52 +++++++++++++++++++------------- 2 files changed, 32 insertions(+), 25 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 122c3c6299..3fad9bf029 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -577,10 +577,7 @@ class Notice extends Memcached_DataObject $this->blowStream('public'); } - // XXX: Before we were blowing the casche only if the notice id - // was not the root of the conversation. What to do now? - - self::blow('notice:conversation_ids:%d', $this->conversation); + self::blow('notice:list-ids:conversation:%s', $this->conversation); self::blow('conversation::notice_count:%d', $this->conversation); if (!empty($this->repeat_of)) { diff --git a/lib/conversationnoticestream.php b/lib/conversationnoticestream.php index adf610ffe7..c43b5deb24 100644 --- a/lib/conversationnoticestream.php +++ b/lib/conversationnoticestream.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 Cache + * @category NoticeStream * @package StatusNet * @author Evan Prodromou * @copyright 2011 StatusNet, Inc. @@ -52,8 +52,7 @@ class ConversationNoticeStream extends ScopingNoticeStream $profile = Profile::current(); } - parent::__construct(new CachingNoticeStream(new RawConversationNoticeStream($id), - 'notice:conversation_ids:'.$id), + parent::__construct(new RawConversationNoticeStream($id), $profile); } } @@ -77,24 +76,35 @@ class RawConversationNoticeStream extends NoticeStream $this->id = $id; } + function getNotices($offset, $limit, $sinceId = null, $maxId = null) + { + $all = Memcached_DataObject::listGet('Notice', 'conversation', array($this->id)); + $notices = $all[$this->id]; + // Re-order in reverse-chron + usort($notices, array('RawConversationNoticeStream', '_reverseChron')); + // FIXME: handle since and max + $wanted = array_slice($notices, $offset, $limit); + return new ArrayWrapper($wanted); + } + function getNoticeIds($offset, $limit, $since_id, $max_id) { - $notice = new Notice(); - - $notice->selectAdd(); // clears it - $notice->selectAdd('id'); - - $notice->conversation = $this->id; - - $notice->orderBy('created DESC, id DESC'); - - if (!is_null($offset)) { - $notice->limit($offset, $limit); - } - - Notice::addWhereSinceId($notice, $since_id); - Notice::addWhereMaxId($notice, $max_id); - - return $notice->fetchAll('id'); + $notice = $this->getNotices($offset, $limit, $since_id, $max_id); + $ids = $notice->fetchAll('id'); + return $ids; } -} \ No newline at end of file + + function _reverseChron($a, $b) + { + $at = strtotime($a->created); + $bt = strtotime($b->created); + + if ($at == $bt) { + return 0; + } else if ($at > $bt) { + return -1; + } else { + return 1; + } + } +} From 2f1751568abde87de674ffab7e278612ad26d3ee Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 12:39:37 -0400 Subject: [PATCH 044/118] pre-fill repeats of notices --- classes/Notice.php | 30 +++++++++++++++++++++++++++++- lib/noticelist.php | 15 +++++++++------ lib/threadednoticelist.php | 6 ++++-- 3 files changed, 42 insertions(+), 9 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 3fad9bf029..3ea7a2d497 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -581,7 +581,9 @@ class Notice extends Memcached_DataObject self::blow('conversation::notice_count:%d', $this->conversation); if (!empty($this->repeat_of)) { + // XXX: we should probably only use one of these $this->blowStream('notice:repeats:%d', $this->repeat_of); + self::blow('notice:list-ids:repeat_of:%d', $this->repeat_of); } $original = Notice::staticGet('id', $this->repeat_of); @@ -2432,7 +2434,7 @@ class Notice extends Memcached_DataObject function __sleep() { $vars = parent::__sleep(); - $skip = array('_original', '_profile', '_groups', '_attachments', '_faves', '_replies'); + $skip = array('_original', '_profile', '_groups', '_attachments', '_faves', '_replies', '_repeats'); return array_diff($vars, $skip); } @@ -2597,4 +2599,30 @@ class Notice extends Memcached_DataObject $notice->_setReplies($ids); } } + + protected $_repeats; + + function getRepeats() + { + if (isset($this->_repeats) && is_array($this->_repeats)) { + return $this->_repeats; + } + $repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', array($this->id)); + $this->_repeats = $repeatMap[$this->id]; + return $this->_repeats; + } + + function _setRepeats(&$repeats) + { + $this->_repeats = $repeats; + } + + static function fillRepeats(&$notices) + { + $ids = self::_idsOf($notices); + $repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', $ids); + foreach ($notices as $notice) { + $notice->_setRepeats($repeatMap[$notice->id]); + } + } } diff --git a/lib/noticelist.php b/lib/noticelist.php index 7ec5be1c0f..91acbb8d58 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -128,6 +128,8 @@ class NoticeList extends Widget Notice::fillAttachments($notices); // Prefill attachments Notice::fillFaves($notices); + // Prefill repeat data + Notice::fillRepeats($notices); // Prefill the profiles $profiles = Notice::fillProfiles($notices); // Prefill the avatars @@ -135,13 +137,14 @@ class NoticeList extends Widget $p = Profile::current(); - $ids = array(); - - foreach ($notices as $notice) { - $ids[] = $notice->id; - } - if (!empty($p)) { + + $ids = array(); + + foreach ($notices as $notice) { + $ids[] = $notice->id; + } + Memcached_DataObject::pivotGet('Fave', 'notice_id', $ids, array('user_id' => $p->id)); Memcached_DataObject::pivotGet('Notice', 'repeat_of', $ids, array('profile_id' => $p->id)); } diff --git a/lib/threadednoticelist.php b/lib/threadednoticelist.php index 6df4ed99df..88d7bb5b45 100644 --- a/lib/threadednoticelist.php +++ b/lib/threadednoticelist.php @@ -559,12 +559,14 @@ class ThreadedNoticeListRepeatsItem extends NoticeListActorsItem { function getProfiles() { - $rep = $this->notice->repeatStream(); + $repeats = $this->notice->getRepeats(); $profiles = array(); - while ($rep->fetch()) { + + foreach ($repeats as $rep) { $profiles[] = $rep->profile_id; } + return $profiles; } From 19b4572e993eb564b109bd05163500aad5d4baba Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 15:25:58 -0400 Subject: [PATCH 045/118] trim trailing ?> from Notice_activity --- Notice_activity.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Notice_activity.php b/Notice_activity.php index d1256228c5..abc5f59c8f 100644 --- a/Notice_activity.php +++ b/Notice_activity.php @@ -152,4 +152,3 @@ class Notice_activity extends Memcached_DataObject } } } -?> \ No newline at end of file From 48bb784400dd9569739ac68e7c87a7db427ef018 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 16:02:14 -0400 Subject: [PATCH 046/118] add a verb column to the notice table --- classes/Notice.php | 30 ++++++++++++++++++++---------- db/core.php | 1 + 2 files changed, 21 insertions(+), 10 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 3ea7a2d497..0305baea34 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -72,6 +72,7 @@ class Notice extends Memcached_DataObject public $location_id; // int(4) public $location_ns; // int(4) public $repeat_of; // int(4) + public $verb; // varchar(255) public $object_type; // varchar(255) public $scope; // int(4) @@ -264,6 +265,7 @@ class Notice extends Memcached_DataObject * notice in place of extracting links from content * boolean 'distribute' whether to distribute the notice, default true * string 'object_type' URL of the associated object type (default ActivityObject::NOTE) + * string 'verb' URL of the associated verb (default ActivityVerb::POST) * int 'scope' Scope bitmask; default to SITE_SCOPE on private sites, 0 otherwise * * @fixme tag override @@ -277,7 +279,9 @@ class Notice extends Memcached_DataObject 'reply_to' => null, 'repeat_of' => null, 'scope' => null, - 'distribute' => true); + 'distribute' => true, + 'object_type' => null, + 'verb' => null); if (!empty($options) && is_array($options)) { $options = array_merge($defaults, $options); @@ -448,6 +452,17 @@ class Notice extends Memcached_DataObject $notice->rendered = common_render_content($final, $notice); } + if (empty($verb)) { + if (!empty($notice->repeat_of)) { + $notice->verb = ActivityVerb::SHARE; + $notice->object_type = ActivityVerb::ACTIVITY; + } else { + $notice->verb = ActivityVerb::POST; + } + } else { + $notice->verb = $verb; + } + if (empty($object_type)) { $notice->object_type = (empty($notice->reply_to)) ? ActivityObject::NOTE : ActivityObject::COMMENT; } else { @@ -1444,18 +1459,13 @@ class Notice extends Memcached_DataObject $act->actor = ActivityObject::fromProfile($profile); $act->actor->extra[] = $profile->profileInfo($cur); + $act->verb = $this->verb; + if ($this->repeat_of) { - $repeated = Notice::staticGet('id', $this->repeat_of); - - $act->verb = ActivityVerb::SHARE; - $act->objects[] = $repeated->asActivity($cur); - + $act->objects[] = $repeated->asActivity($cur); } else { - - $act->verb = ActivityVerb::POST; - $act->objects[] = ActivityObject::fromNotice($this); - + $act->objects[] = ActivityObject::fromNotice($this); } // XXX: should this be handled by default processing for object entry? diff --git a/db/core.php b/db/core.php index a9632fe8d4..7297081079 100644 --- a/db/core.php +++ b/db/core.php @@ -201,6 +201,7 @@ $schema['notice'] = array( 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'), 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'), 'object_type' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams object type', 'default' => 'http://activitystrea.ms/schema/1.0/note'), + 'verb' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams verb', 'default' => 'http://activitystrea.ms/schema/1.0/post'), 'scope' => array('type' => 'int', 'default' => '1', 'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers'), From 34d0e1088db29fc7329e70222f3a59335537e096 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 16:36:23 -0400 Subject: [PATCH 047/118] add URI members to social activity classes --- classes/Fave.php | 28 +++++++++++++++++++++++----- classes/Group_member.php | 24 ++++++++++++++++++++---- classes/Subscription.php | 26 ++++++++++++++++++++++---- db/core.php | 13 ++++++++++++- 4 files changed, 77 insertions(+), 14 deletions(-) diff --git a/classes/Fave.php b/classes/Fave.php index c69a6816d0..d954117292 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -12,6 +12,7 @@ class Fave extends Memcached_DataObject public $__table = 'fave'; // table name public $notice_id; // int(4) primary_key not_null public $user_id; // int(4) primary_key not_null + public $uri; // varchar(255) public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP /* Static get */ @@ -39,7 +40,10 @@ class Fave extends Memcached_DataObject $fave->user_id = $profile->id; $fave->notice_id = $notice->id; - + $fave->modified = common_sql_now(); + $fave->uri = self::newURI($fave->user_id, + $fave->notice_id, + $fave->modified); if (!$fave->insert()) { common_log_db_error($fave, 'INSERT', __FILE__); return false; @@ -102,10 +106,7 @@ class Fave extends Memcached_DataObject // FIXME: rationalize this with URL below - $act->id = TagURI::mint('favor:%d:%d:%s', - $profile->id, - $notice->id, - common_date_iso8601($this->modified)); + $act->id = $this->getURI(); $act->time = strtotime($this->modified); // TRANS: Activity title when marking a notice as favorite. @@ -156,4 +157,21 @@ class Fave extends Memcached_DataObject return $fav; } + + function getURI() + { + if (!empty($this->uri)) { + return $this->uri; + } else { + return self::newURI($this->user_id, $this->notice_id, $this->modified); + } + } + + static function newURI($profile_id, $notice_id, $modified) + { + return TagURI::mint('favor:%d:%d:%s', + $profile_id, + $notice_id, + common_date_iso8601($modified)); + } } diff --git a/classes/Group_member.php b/classes/Group_member.php index 5385e0f487..a553af3475 100644 --- a/classes/Group_member.php +++ b/classes/Group_member.php @@ -12,6 +12,7 @@ class Group_member extends Memcached_DataObject public $group_id; // int(4) primary_key not_null public $profile_id; // int(4) primary_key not_null public $is_admin; // tinyint(1) + public $uri; // varchar(255) public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP @@ -43,6 +44,7 @@ class Group_member extends Memcached_DataObject $member->group_id = $group_id; $member->profile_id = $profile_id; $member->created = common_sql_now(); + $member->uri = self::newURI($profile_id, $group_id, $member->created); $result = $member->insert(); @@ -134,10 +136,7 @@ class Group_member extends Memcached_DataObject $act = new Activity(); - $act->id = TagURI::mint('join:%d:%d:%s', - $member->id, - $group->id, - common_date_iso8601($this->created)); + $act->id = $this->getURI(); $act->actor = ActivityObject::fromProfile($member); $act->verb = ActivityVerb::JOIN; @@ -171,4 +170,21 @@ class Group_member extends Memcached_DataObject { mail_notify_group_join($this->getGroup(), $this->getMember()); } + + function getURI() + { + if (!empty($this->uri)) { + return $this->uri; + } else { + return self::newURI($this->member_id, $this->group_id, $this->created); + } + } + + static function newURI($member_id, $group_id, $created) + { + return TagURI::mint('join:%d:%d:%s', + $member_id, + $group_id, + common_date_iso8601($created)); + } } diff --git a/classes/Subscription.php b/classes/Subscription.php index e83621eb86..e0c5b5ab0e 100644 --- a/classes/Subscription.php +++ b/classes/Subscription.php @@ -39,6 +39,7 @@ class Subscription extends Memcached_DataObject public $sms; // tinyint(1) default_1 public $token; // varchar(255) public $secret; // varchar(255) + public $uri; // varchar(255) public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP @@ -138,6 +139,9 @@ class Subscription extends Memcached_DataObject $sub->jabber = 1; $sub->sms = 1; $sub->created = common_sql_now(); + $sub->uri = self::newURI($sub->subscriber, + $sub->subscribed, + $sub->created); $result = $sub->insert(); @@ -238,10 +242,7 @@ class Subscription extends Memcached_DataObject // XXX: rationalize this with the URL - $act->id = TagURI::mint('follow:%d:%d:%s', - $subscriber->id, - $subscribed->id, - common_date_iso8601($this->created)); + $act->id = $this->getURI(); $act->time = strtotime($this->created); // TRANS: Activity title when subscribing to another person. @@ -404,4 +405,21 @@ class Subscription extends Memcached_DataObject return $result; } + + function getURI() + { + if (!empty($this->uri)) { + return $this->uri; + } else { + return self::newURI($this->subscriber, $this->subscribed, $this->created); + } + } + + static function newURI($subscriber_id, $subscribed_id, $created) + { + return TagURI::mint('follow:%d:%d:%s', + $subscriber_id, + $subscribed_id, + common_date_iso8601($created)); + } } diff --git a/db/core.php b/db/core.php index 7297081079..cfecd23d47 100644 --- a/db/core.php +++ b/db/core.php @@ -170,10 +170,14 @@ $schema['subscription'] = array( 'sms' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'deliver sms messages'), 'token' => array('type' => 'varchar', 'length' => 255, 'description' => 'authorization token'), 'secret' => array('type' => 'varchar', 'length' => 255, 'description' => 'token secret'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier'), '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'), ), 'primary key' => array('subscriber', 'subscribed'), + 'unique keys' => array( + 'subscription_uri_key' => array('uri'), + ), 'indexes' => array( 'subscription_subscriber_idx' => array('subscriber', 'created'), 'subscription_subscribed_idx' => array('subscribed', 'created'), @@ -263,9 +267,13 @@ $schema['fave'] = array( 'fields' => array( 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice that is the favorite'), 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who likes this notice'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), ), 'primary key' => array('notice_id', 'user_id'), + 'unique keys' => array( + 'fave_uri_key' => array('uri'), + ), 'foreign keys' => array( 'fave_notice_id_fkey' => array('notice', array('notice_id' => 'id')), 'fave_user_id_fkey' => array('profile', array('user_id' => 'id')), // note: formerly referenced notice.id, but we can now record remote users' favorites @@ -742,11 +750,14 @@ $schema['group_member'] = array( 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'), 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), 'is_admin' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'is this user an admin?'), - + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universal identifier'), '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'), ), 'primary key' => array('group_id', 'profile_id'), + 'unique keys' => array( + 'group_member_uri_key' => array('uri'), + ), 'foreign keys' => array( 'group_member_group_id_fkey' => array('user_group', array('group_id' => 'id')), 'group_member_profile_id_fkey' => array('profile', array('profile_id' => 'id')), From 9ca3c3d1c31ff2b30ecd7bbc2ec9ec3722173f7f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 17:52:02 -0400 Subject: [PATCH 048/118] move core schema to class files --- classes/Avatar.php | 28 +- classes/Config.php | 14 +- classes/Confirm_address.php | 22 +- classes/Consumer.php | 18 +- classes/Conversation.php | 18 +- classes/Deleted_notice.php | 22 +- classes/Fave.php | 23 +- classes/File.php | 24 +- classes/File_oembed.php | 28 +- classes/File_redirection.php | 19 +- classes/File_thumbnail.php | 22 +- classes/File_to_post.php | 21 +- classes/Foreign_link.php | 30 +- classes/Foreign_service.php | 19 +- classes/Foreign_subscription.php | 25 +- classes/Foreign_user.php | 23 +- classes/Group_alias.php | 20 +- classes/Group_block.php | 20 +- classes/Group_inbox.php | 23 +- classes/Group_member.php | 2 +- classes/Inbox.php | 16 +- classes/Invitation.php | 27 +- classes/Local_group.php | 22 +- classes/Location_namespace.php | 15 +- classes/Login_token.php | 18 +- classes/Message.php | 35 +- classes/Nonce.php | 19 +- classes/Notice.php | 51 +- classes/Notice_inbox.php | 23 +- classes/Notice_source.php | 17 +- classes/Notice_tag.php | 22 +- classes/Oauth_application.php | 33 +- classes/Oauth_application_user.php | 21 +- classes/Oauth_token_association.php | 2 +- classes/Profile.php | 32 +- classes/Profile_block.php | 18 +- classes/Profile_list.php | 37 +- classes/Profile_role.php | 17 +- classes/Profile_tag.php | 26 +- classes/Profile_tag_subscription.php | 25 +- classes/Queue_item.php | 19 +- classes/Related_group.php | 20 +- classes/Remember_me.php | 17 +- classes/Remote_profile.php | 24 +- classes/Reply.php | 24 +- classes/Schema_version.php | 15 +- classes/Session.php | 18 +- classes/Sms_carrier.php | 19 +- classes/Subscription.php | 24 +- classes/Token.php | 24 +- classes/User.php | 54 +- classes/User_group.php | 37 +- classes/User_im_prefs.php | 26 +- classes/User_location_prefs.php | 17 +- classes/User_urlshortener_prefs.php | 20 +- classes/User_username.php | 2 +- db/core.php | 1118 ++------------------------ plugins/OpenID/OpenIDPlugin.php | 27 + 58 files changed, 1281 insertions(+), 1121 deletions(-) diff --git a/classes/Avatar.php b/classes/Avatar.php index bdf3739bbf..d871d360b6 100644 --- a/classes/Avatar.php +++ b/classes/Avatar.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Avatar extends Memcached_DataObject +class Avatar extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -32,6 +32,32 @@ class Avatar extends Memcached_DataObject return Memcached_DataObject::pivotGet('Avatar', $keyCol, $keyVals, $otherCols); } + public static function schemaDef() + { + return array( + 'fields' => array( + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), + 'original' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'uploaded by user or generated?'), + 'width' => array('type' => 'int', 'not null' => true, 'description' => 'image width'), + 'height' => array('type' => 'int', 'not null' => true, 'description' => 'image height'), + 'mediatype' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'file type'), + 'filename' => array('type' => 'varchar', 'length' => 255, 'description' => 'local filename, if local'), + 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'avatar location'), + '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'), + ), + 'primary key' => array('profile_id', 'width', 'height'), + 'unique keys' => array( + 'avatar_url_key' => array('url'), + ), + 'foreign keys' => array( + 'avatar_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), + 'indexes' => array( + 'avatar_profile_id_idx' => array('profile_id'), + ), + ); + } // We clean up the file, too function delete() diff --git a/classes/Config.php b/classes/Config.php index e14730438e..ba0db588ca 100644 --- a/classes/Config.php +++ b/classes/Config.php @@ -27,7 +27,7 @@ if (!defined('STATUSNET')) { require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Config extends Memcached_DataObject +class Config extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -43,6 +43,18 @@ class Config extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'section' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'default' => '', 'description' => 'configuration section'), + 'setting' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'default' => '', 'description' => 'configuration setting'), + 'value' => array('type' => 'varchar', 'length' => 255, 'description' => 'configuration value'), + ), + 'primary key' => array('section', 'setting'), + ); + } + const settingsKey = 'config:settings'; static function loadSettings() diff --git a/classes/Confirm_address.php b/classes/Confirm_address.php index 4b9bec64c6..7f59cab430 100644 --- a/classes/Confirm_address.php +++ b/classes/Confirm_address.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Confirm_address extends Memcached_DataObject +class Confirm_address extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -29,6 +29,26 @@ class Confirm_address extends Memcached_DataObject function sequenceKey() { return array(false, false); } + public static function schemaDef() + { + return array( + 'fields' => array( + 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'good random code'), + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who requested confirmation'), + 'address' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'address (email, xmpp, SMS, etc.)'), + 'address_extra' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'carrier ID, for SMS'), + 'address_type' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'address type ("email", "xmpp", "sms")'), + 'claimed' => array('type' => 'datetime', 'description' => 'date this was claimed for queueing'), + 'sent' => array('type' => 'datetime', 'description' => 'date this was sent for queueing'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('code'), + 'foreign keys' => array( + 'confirm_address_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); + } + static function getAddress($address, $addressType) { $ca = new Confirm_address(); diff --git a/classes/Consumer.php b/classes/Consumer.php index c1090b85a3..1d32d853bd 100644 --- a/classes/Consumer.php +++ b/classes/Consumer.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Consumer extends Memcached_DataObject +class Consumer extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -23,6 +23,22 @@ class Consumer extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'description' => 'OAuth consumer record', + 'fields' => array( + 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'unique identifier, root URL'), + 'consumer_secret' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'secret value'), + 'seed' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'seed for new tokens by this consumer'), + + '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'), + ), + 'primary key' => array('consumer_key'), + ); + } + static function generateNew() { $cons = new Consumer(); diff --git a/classes/Conversation.php b/classes/Conversation.php index e029c20ba0..4bad474c73 100755 --- a/classes/Conversation.php +++ b/classes/Conversation.php @@ -29,7 +29,7 @@ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; -class Conversation extends Memcached_DataObject +class Conversation extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -46,6 +46,22 @@ class Conversation extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + 'uri' => array('type' => 'varchar', 'length' => 225, 'description' => 'URI of the conversation'), + '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'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'conversation_uri_key' => array('uri'), + ), + ); + } + /** * Factory method for creating a new conversation * diff --git a/classes/Deleted_notice.php b/classes/Deleted_notice.php index 64dc85da65..d3f9c0bf7c 100644 --- a/classes/Deleted_notice.php +++ b/classes/Deleted_notice.php @@ -26,7 +26,7 @@ if (!defined('STATUSNET')) { */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Deleted_notice extends Memcached_DataObject +class Deleted_notice extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -43,4 +43,24 @@ class Deleted_notice extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'int', 'not null' => true, 'description' => 'identity of notice'), + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'author of the notice'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'), + 'deleted' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'deleted_notice_uri_key' => array('uri'), + ), + 'indexes' => array( + 'deleted_notice_profile_id_idx' => array('profile_id'), + ), + ); + } } diff --git a/classes/Fave.php b/classes/Fave.php index c69a6816d0..c5dae31b02 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Fave extends Memcached_DataObject +class Fave extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -21,6 +21,27 @@ class Fave extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice that is the favorite'), + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who likes this notice'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('notice_id', 'user_id'), + 'foreign keys' => array( + 'fave_notice_id_fkey' => array('notice', array('notice_id' => 'id')), + 'fave_user_id_fkey' => array('profile', array('user_id' => 'id')), // note: formerly referenced notice.id, but we can now record remote users' favorites + ), + 'indexes' => array( + 'fave_notice_id_idx' => array('notice_id'), + 'fave_user_id_idx' => array('user_id', 'modified'), + 'fave_modified_idx' => array('modified'), + ), + ); + } + /** * Save a favorite record. * @fixme post-author notification should be moved here diff --git a/classes/File.php b/classes/File.php index 767a108087..f716a9d64c 100644 --- a/classes/File.php +++ b/classes/File.php @@ -29,7 +29,7 @@ require_once INSTALLDIR.'/classes/File_to_post.php'; /** * Table Definition for file */ -class File extends Memcached_DataObject +class File extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -51,6 +51,28 @@ class File extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true), + 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'destination URL after following redirections'), + 'mimetype' => array('type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'), + 'size' => array('type' => 'int', 'description' => 'size of resource when available'), + 'title' => array('type' => 'varchar', 'length' => 255, 'description' => 'title of resource when available'), + 'date' => array('type' => 'int', 'description' => 'date of resource according to http query'), + 'protected' => array('type' => 'int', 'description' => 'true when URL is private (needs login)'), + 'filename' => array('type' => 'varchar', 'length' => 255, 'description' => 'if a local file, name of the file'), + + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'file_url_key' => array('url'), + ), + ); + } + function isProtected($url) { return 'http://www.facebook.com/login.php' === $url; } diff --git a/classes/File_oembed.php b/classes/File_oembed.php index b7bf3a5dae..56afdde197 100644 --- a/classes/File_oembed.php +++ b/classes/File_oembed.php @@ -26,7 +26,7 @@ require_once INSTALLDIR.'/classes/File_redirection.php'; * Table Definition for file_oembed */ -class File_oembed extends Memcached_DataObject +class File_oembed extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -53,6 +53,32 @@ class File_oembed extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'oEmbed for that URL/file'), + 'version' => array('type' => 'varchar', 'length' => 20, 'description' => 'oEmbed spec. version'), + 'type' => array('type' => 'varchar', 'length' => 20, 'description' => 'oEmbed type: photo, video, link, rich'), + 'mimetype' => array('type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'), + 'provider' => array('type' => 'varchar', 'length' => 50, 'description' => 'name of this oEmbed provider'), + 'provider_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of this oEmbed provider'), + 'width' => array('type' => 'int', 'description' => 'width of oEmbed resource when available'), + 'height' => array('type' => 'int', 'description' => 'height of oEmbed resource when available'), + 'html' => array('type' => 'text', 'description' => 'html representation of this oEmbed resource when applicable'), + 'title' => array('type' => 'varchar', 'length' => 255, 'description' => 'title of oEmbed resource when available'), + 'author_name' => array('type' => 'varchar', 'length' => 50, 'description' => 'author name for this oEmbed resource'), + 'author_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'author URL for this oEmbed resource'), + 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL for this oEmbed resource when applicable (photo, link)'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('file_id'), + 'foreign keys' => array( + 'file_oembed_file_id_fkey' => array('file', array('file_id' => 'id')), + ), + ); + } + function sequenceKey() { return array(false, false, false); diff --git a/classes/File_redirection.php b/classes/File_redirection.php index 74e89db5f2..130d9e7d74 100644 --- a/classes/File_redirection.php +++ b/classes/File_redirection.php @@ -27,7 +27,7 @@ require_once INSTALLDIR.'/classes/File_oembed.php'; * Table Definition for file_redirection */ -class File_redirection extends Memcached_DataObject +class File_redirection extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -45,6 +45,23 @@ class File_redirection extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'url' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'short URL (or any other kind of redirect) for file (id)'), + 'file_id' => array('type' => 'int', 'description' => 'short URL for what URL/file'), + 'redirections' => array('type' => 'int', 'description' => 'redirect count'), + 'httpcode' => array('type' => 'int', 'description' => 'HTTP status code (20x, 30x, etc.)'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('url'), + 'foreign keys' => array( + 'file_redirection_file_id_fkey' => array('file' => array('file_id' => 'id')), + ), + ); + } + static function _commonHttp($url, $redirs) { $request = new HTTPClient($url); $request->setConfig(array( diff --git a/classes/File_thumbnail.php b/classes/File_thumbnail.php index 17bac7f08c..1adcd91987 100644 --- a/classes/File_thumbnail.php +++ b/classes/File_thumbnail.php @@ -25,7 +25,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; * Table Definition for file_thumbnail */ -class File_thumbnail extends Memcached_DataObject +class File_thumbnail extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -43,6 +43,26 @@ class File_thumbnail extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'thumbnail for what URL/file'), + 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of thumbnail'), + 'width' => array('type' => 'int', 'description' => 'width of thumbnail'), + 'height' => array('type' => 'int', 'description' => 'height of thumbnail'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('file_id'), + 'foreign keys' => array( + 'file_thumbnail_file_id_fkey' => array('file', array('file_id' => 'id')), + ), + 'unique keys' => array( + 'file_thumbnail_url_key' => array('url'), + ), + ); + } + function sequenceKey() { return array(false, false, false); diff --git a/classes/File_to_post.php b/classes/File_to_post.php index bcb6771f4f..1a887a7c18 100644 --- a/classes/File_to_post.php +++ b/classes/File_to_post.php @@ -25,7 +25,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; * Table Definition for file_to_post */ -class File_to_post extends Memcached_DataObject +class File_to_post extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -41,6 +41,25 @@ class File_to_post extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of URL/file'), + 'post_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of the notice it belongs to'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('file_id', 'post_id'), + 'foreign keys' => array( + 'file_to_post_file_id_fkey' => array('file', array('file_id' => 'id')), + 'file_to_post_post_id_fkey' => array('notice', array('post_id' => 'id')), + ), + 'indexes' => array( + 'post_id_idx' => array('post_id'), + ), + ); + } + function processNew($file_id, $notice_id) { static $seen = array(); if (empty($seen[$notice_id]) || !in_array($file_id, $seen[$notice_id])) { diff --git a/classes/Foreign_link.php b/classes/Foreign_link.php index 57a10dcedb..e3f0cf1ee6 100644 --- a/classes/Foreign_link.php +++ b/classes/Foreign_link.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Foreign_link extends Memcached_DataObject +class Foreign_link extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -29,6 +29,34 @@ class Foreign_link extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'link to user on this system, if exists'), + 'foreign_id' => array('type' => 'int', 'size' => 'big', 'unsigned' => true, 'not null' => true, 'description' => 'link to user on foreign service, if exists'), + 'service' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to service'), + 'credentials' => array('type' => 'varchar', 'length' => 255, 'description' => 'authc credentials, typically a password'), + 'noticesync' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 1, 'description' => 'notice synchronization, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies'), + 'friendsync' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 2, 'description' => 'friend synchronization, bit 1 = sync outgoing, bit 2 = sync incoming'), + 'profilesync' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 1, 'description' => 'profile synchronization, bit 1 = sync outgoing, bit 2 = sync incoming'), + 'last_noticesync' => array('type' => 'datetime', 'description' => 'last time notices were imported'), + 'last_friendsync' => array('type' => 'datetime', 'description' => 'last time friends were imported'), + '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'), + ), + 'primary key' => array('user_id', 'foreign_id', 'service'), + 'foreign keys' => array( + 'foreign_link_user_id_fkey' => array('user', array('user_id' => 'id')), + 'foreign_link_foreign_id_fkey' => array('foreign_user', array('foreign_id' => 'id', 'service' => 'service')), + 'foreign_link_service_fkey' => array('foreign_service', array('service' => 'id')), + ), + 'indexes' => array( + 'foreign_user_user_id_idx' => array('user_id'), + ), + ); + } + static function getByUserID($user_id, $service) { if (empty($user_id) || empty($service)) { diff --git a/classes/Foreign_service.php b/classes/Foreign_service.php index dd74fd2ca6..8ba73521c1 100644 --- a/classes/Foreign_service.php +++ b/classes/Foreign_service.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Foreign_service extends Memcached_DataObject +class Foreign_service extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -22,4 +22,21 @@ class Foreign_service extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'int', 'not null' => true, 'description' => 'numeric key for service'), + 'name' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'name of the service'), + 'description' => array('type' => 'varchar', 'length' => 255, 'description' => 'description'), + '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'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'foreign_service_name_key' => array('name'), + ), + ); + } } diff --git a/classes/Foreign_subscription.php b/classes/Foreign_subscription.php index ec2631238e..99bf3868b5 100644 --- a/classes/Foreign_subscription.php +++ b/classes/Foreign_subscription.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Foreign_subscription extends Memcached_DataObject +class Foreign_subscription extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -21,4 +21,27 @@ class Foreign_subscription extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + + 'fields' => array( + 'service' => array('type' => 'int', 'not null' => true, 'description' => 'service where relationship happens'), + 'subscriber' => array('type' => 'int', 'size' => 'big', 'not null' => true, 'description' => 'subscriber on foreign service'), + 'subscribed' => array('type' => 'int', 'size' => 'big', 'not null' => true, 'description' => 'subscribed user'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), + ), + 'primary key' => array('service', 'subscriber', 'subscribed'), + 'foreign keys' => array( + 'foreign_subscription_service_fkey' => array('foreign_service', array('service' => 'id')), + 'foreign_subscription_subscriber_fkey' => array('foreign_user', array('subscriber' => 'id', 'service' => 'service')), + 'foreign_subscription_subscribed_fkey' => array('foreign_user', array('subscribed' => 'id', 'service' => 'service')), + ), + 'indexes' => array( + 'foreign_subscription_subscriber_idx' => array('service', 'subscriber'), + 'foreign_subscription_subscribed_idx' => array('service', 'subscribed'), + ), + ); + } } diff --git a/classes/Foreign_user.php b/classes/Foreign_user.php index 82ca749a59..67d8651fa9 100644 --- a/classes/Foreign_user.php +++ b/classes/Foreign_user.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Foreign_user extends Memcached_DataObject +class Foreign_user extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -23,6 +23,27 @@ class Foreign_user extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'int', 'size' => 'big', 'not null' => true, 'description' => 'unique numeric key on foreign service'), + 'service' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to service'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'identifying URI'), + 'nickname' => array('type' => 'varchar', 'length' => 255, 'description' => 'nickname on foreign service'), + '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'), + ), + 'primary key' => array('id', 'service'), + 'foreign keys' => array( + 'foreign_user_service_fkey' => array('foreign_service', array('service' => 'id')), + ), + 'unique keys' => array( + 'foreign_user_uri_key' => array('uri'), + ), + ); + } + // XXX: This only returns a 1->1 single obj mapping. Change? Or make // a getForeignUsers() that returns more than one? --Zach static function getForeignUser($id, $service) { diff --git a/classes/Group_alias.php b/classes/Group_alias.php index c5a1895a11..fcf5405547 100644 --- a/classes/Group_alias.php +++ b/classes/Group_alias.php @@ -23,7 +23,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Group_alias extends Memcached_DataObject +class Group_alias extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -38,4 +38,22 @@ class Group_alias extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + 'fields' => array( + 'alias' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'additional nickname for the group'), + 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group profile is blocked from'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date alias was created'), + ), + 'primary key' => array('alias'), + 'foreign keys' => array( + 'group_alias_group_id_fkey' => array('user_group', array('group_id' => 'id')), + ), + 'indexes' => array( + 'group_alias_group_id_idx' => array('group_id'), + ), + ); + } } diff --git a/classes/Group_block.php b/classes/Group_block.php index 68feaef4de..dc439ba774 100644 --- a/classes/Group_block.php +++ b/classes/Group_block.php @@ -23,7 +23,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Group_block extends Memcached_DataObject +class Group_block extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -40,6 +40,24 @@ class Group_block extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group profile is blocked from'), + 'blocked' => array('type' => 'int', 'not null' => true, 'description' => 'profile that is blocked'), + 'blocker' => array('type' => 'int', 'not null' => true, 'description' => 'user making the block'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date of blocking'), + ), + 'primary key' => array('group_id', 'blocked'), + 'foreign keys' => array( + 'group_block_group_id_fkey' => array('user_group', array('group_id' => 'id')), + 'group_block_blocked_fkey' => array('profile', array('blocked' => 'id')), + 'group_block_blocker_fkey' => array('user', array('blocker' => 'id')), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Group_block', $kv); diff --git a/classes/Group_inbox.php b/classes/Group_inbox.php index 8f5c65e594..0e01c20b46 100644 --- a/classes/Group_inbox.php +++ b/classes/Group_inbox.php @@ -3,7 +3,7 @@ /** * Table Definition for group_inbox */ -class Group_inbox extends Memcached_DataObject +class Group_inbox extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -20,6 +20,27 @@ class Group_inbox extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'description' => 'Many-many table listing notices posted to a given group, or which groups a given notice was posted to.', + 'fields' => array( + 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group receiving the message'), + 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice received'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice was created'), + ), + 'primary key' => array('group_id', 'notice_id'), + 'foreign keys' => array( + 'group_inbox_group_id_fkey' => array('user_group', array('group_id' => 'id')), + 'group_inbox_notice_id_fkey' => array('notice', array('notice_id' => 'id')), + ), + 'indexes' => array( + 'group_inbox_created_idx' => array('created'), + 'group_inbox_notice_id_idx' => array('notice_id'), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Group_inbox', $kv); diff --git a/classes/Group_member.php b/classes/Group_member.php index 5385e0f487..cc7e4a353e 100644 --- a/classes/Group_member.php +++ b/classes/Group_member.php @@ -3,7 +3,7 @@ * Table Definition for group_member */ -class Group_member extends Memcached_DataObject +class Group_member extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ diff --git a/classes/Inbox.php b/classes/Inbox.php index 336bba048c..6ba40df224 100644 --- a/classes/Inbox.php +++ b/classes/Inbox.php @@ -29,7 +29,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Inbox extends Memcached_DataObject +class Inbox extends Managed_DataObject { const BOXCAR = 128; const MAX_NOTICES = 1024; @@ -47,6 +47,20 @@ class Inbox extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user receiving the notice'), + 'notice_ids' => array('type' => 'blob', 'description' => 'packed list of notice ids'), + ), + 'primary key' => array('user_id'), + 'foreign keys' => array( + 'inbox_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); + } + function sequenceKey() { return array(false, false, false); diff --git a/classes/Invitation.php b/classes/Invitation.php index 27ff400883..ae34a31023 100644 --- a/classes/Invitation.php +++ b/classes/Invitation.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Invitation extends Memcached_DataObject +class Invitation extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -30,4 +30,29 @@ class Invitation extends Memcached_DataObject $this->registered_user_id = $user->id; return $this->update($orig); } + + public static function schemaDef() + { + return array( + + 'fields' => array( + 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'random code for an invitation'), + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'who sent the invitation'), + 'address' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'invitation sent to'), + 'address_type' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'address type ("email", "xmpp", "sms")'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), + 'registered_user_id' => array('type' => 'int', 'not null' => false, 'description' => 'if the invitation is converted, who the new user is'), + ), + 'primary key' => array('code'), + 'foreign keys' => array( + 'invitation_user_id_fkey' => array('user', array('user_id' => 'id')), + 'invitation_registered_user_id_fkey' => array('user', array('registered_user_id' => 'id')), + ), + 'indexes' => array( + 'invitation_address_idx' => array('address', 'address_type'), + 'invitation_user_id_idx' => array('user_id'), + 'invitation_registered_user_id_idx' => array('registered_user_id'), + ), + ); + } } diff --git a/classes/Local_group.php b/classes/Local_group.php index ccd0125cf4..44d8957838 100644 --- a/classes/Local_group.php +++ b/classes/Local_group.php @@ -3,7 +3,7 @@ * Table Definition for local_group */ -class Local_group extends Memcached_DataObject +class Local_group extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -20,9 +20,25 @@ class Local_group extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function sequenceKey() + public static function schemaDef() { - return array(false, false, false); + return array( + 'description' => 'Record for a user group on the local site, with some additional info not in user_group', + 'fields' => array( + 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group represented'), + 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'group represented'), + + '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'), + ), + 'primary key' => array('group_id'), + 'foreign keys' => array( + 'local_group_group_id_fkey' => array('user_group', array('group_id' => 'id')), + ), + 'unique keys' => array( + 'local_group_nickname_key' => array('nickname'), + ), + ); } function setNickname($nickname) diff --git a/classes/Location_namespace.php b/classes/Location_namespace.php index 5ab95d9ef2..7e12447a41 100644 --- a/classes/Location_namespace.php +++ b/classes/Location_namespace.php @@ -25,7 +25,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Location_namespace extends Memcached_DataObject +class Location_namespace extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -43,4 +43,17 @@ class Location_namespace extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'int', 'not null' => true, 'description' => 'identity for this namespace'), + 'description' => array('type' => 'varchar', 'length' => 255, 'description' => 'description of the namespace'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the record was created'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('id'), + ); + } } diff --git a/classes/Login_token.php b/classes/Login_token.php index 7a9388c947..3733af66cf 100644 --- a/classes/Login_token.php +++ b/classes/Login_token.php @@ -23,7 +23,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Login_token extends Memcached_DataObject +class Login_token extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -40,6 +40,22 @@ class Login_token extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user owning this token'), + 'token' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'token useable for logging in'), + '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'), + ), + 'primary key' => array('user_id'), + 'foreign keys' => array( + 'login_token_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); + } + const TIMEOUT = 120; // seconds after which to timeout the token /* diff --git a/classes/Message.php b/classes/Message.php index 484d1f724c..e04b4f47e3 100644 --- a/classes/Message.php +++ b/classes/Message.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Message extends Memcached_DataObject +class Message extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -27,6 +27,39 @@ class Message extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier'), + 'from_profile' => array('type' => 'int', 'not null' => true, 'description' => 'who the message is from'), + 'to_profile' => array('type' => 'int', 'not null' => true, 'description' => 'who the message is to'), + 'content' => array('type' => 'text', 'description' => 'message content'), + 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'), + 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'), + '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'), + 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'message_uri_key' => array('uri'), + ), + 'foreign keys' => array( + 'message_from_profile_fkey' => array('profile', array('from_profile' => 'id')), + 'message_to_profile_fkey' => array('profile', array('to_profile' => 'id')), + ), + 'indexes' => array( + // @fixme these are really terrible indexes, since you can only sort on one of them at a time. + // looks like we really need a (to_profile, created) for inbox and a (from_profile, created) for outbox + 'message_from_idx' => array('from_profile'), + 'message_to_idx' => array('to_profile'), + 'message_created_idx' => array('created'), + ), + ); + } + function getFrom() { return Profile::staticGet('id', $this->from_profile); diff --git a/classes/Nonce.php b/classes/Nonce.php index 93191bd409..0cd9967a08 100644 --- a/classes/Nonce.php +++ b/classes/Nonce.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Nonce extends Memcached_DataObject +class Nonce extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -36,4 +36,21 @@ class Nonce extends Memcached_DataObject { return array('consumer_key,token' => 'token:consumer_key,token'); } + + public static function schemaDef() + { + return array( + 'description' => 'OAuth nonce record', + 'fields' => array( + 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'unique identifier, root URL'), + 'tok' => array('type' => 'char', 'length' => 32, 'description' => 'buggy old value, ignored'), + 'nonce' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'nonce'), + 'ts' => array('type' => 'datetime', 'not null' => true, 'description' => 'timestamp sent'), + + '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'), + ), + 'primary key' => array('consumer_key', 'ts', 'nonce'), + ); + } } diff --git a/classes/Notice.php b/classes/Notice.php index 3ea7a2d497..64c9f91410 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -49,7 +49,7 @@ define('NOTICE_CACHE_WINDOW', CachingNoticeStream::CACHE_WINDOW); define('MAX_BOXCARS', 128); -class Notice extends Memcached_DataObject +class Notice extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -84,6 +84,55 @@ class Notice extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'who made the update'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), + 'content' => array('type' => 'text', 'description' => 'update content'), + 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'), + 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'), + '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'), + 'reply_to' => array('type' => 'int', 'description' => 'notice replied to (usually a guess)'), + 'is_local' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'notice was generated by a user'), + 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'), + 'conversation' => array('type' => 'int', 'description' => 'id of root notice in this conversation'), + 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'), + 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'), + 'location_id' => array('type' => 'int', 'description' => 'location id if possible'), + 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'), + 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'), + 'object_type' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams object type', 'default' => 'http://activitystrea.ms/schema/1.0/note'), + 'scope' => array('type' => 'int', + 'default' => '1', + 'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'notice_uri_key' => array('uri'), + ), + 'foreign keys' => array( + 'notice_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + 'notice_reply_to_fkey' => array('notice', array('reply_to' => 'id')), + 'notice_conversation_fkey' => array('conversation', array('conversation' => 'id')), # note... used to refer to notice.id + 'notice_repeat_of_fkey' => array('notice', array('repeat_of' => 'id')), # @fixme: what about repeats of deleted notices? + ), + 'indexes' => array( + 'notice_profile_id_idx' => array('profile_id', 'created', 'id'), + 'notice_conversation_idx' => array('conversation'), + 'notice_created_idx' => array('created'), + 'notice_replyto_idx' => array('reply_to'), + 'notice_repeatof_idx' => array('repeat_of'), + ), + 'fulltext indexes' => array( + 'content' => array('content'), + ) + ); + } + function multiGet($kc, $kvs, $skipNulls=true) { return Memcached_DataObject::multiGet('Notice', $kc, $kvs, $skipNulls); diff --git a/classes/Notice_inbox.php b/classes/Notice_inbox.php index 47ed6b22db..dcaf2f33b1 100644 --- a/classes/Notice_inbox.php +++ b/classes/Notice_inbox.php @@ -31,7 +31,7 @@ define('NOTICE_INBOX_GC_MAX', 12800); define('NOTICE_INBOX_LIMIT', 1000); define('NOTICE_INBOX_SOFT_LIMIT', 1000); -class Notice_inbox extends Memcached_DataObject +class Notice_inbox extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -49,6 +49,27 @@ class Notice_inbox extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'description' => 'Obsolete; old entries here are converted to packed entries in the inbox table since 0.9', + 'fields' => array( + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user receiving the message'), + 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice received'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice was created'), + 'source' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'reason it is in the inbox, 1=subscription'), + ), + 'primary key' => array('user_id', 'notice_id'), + 'foreign keys' => array( + 'notice_inbox_user_id_fkey' => array('user', array('user_id' => 'id')), + 'notice_inbox_notice_id_fkey' => array('notice', array('notice_id' => 'id')), + ), + 'indexes' => array( + 'notice_inbox_notice_id_idx' => array('notice_id'), + ), + ); + } + function stream($user_id, $offset, $limit, $since_id, $max_id, $own=false) { throw new Exception('Notice_inbox no longer used; use Inbox'); diff --git a/classes/Notice_source.php b/classes/Notice_source.php index 43893ebe18..a6649f5fba 100644 --- a/classes/Notice_source.php +++ b/classes/Notice_source.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Notice_source extends Memcached_DataObject +class Notice_source extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -22,4 +22,19 @@ class Notice_source extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + 'fields' => array( + 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'source code'), + 'name' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'name of the source'), + 'url' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'url to link to'), + 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'date this record was created'), + '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'), + ), + 'primary key' => array('code'), + ); + } } diff --git a/classes/Notice_tag.php b/classes/Notice_tag.php index 809403a9bd..77c89dc8ce 100644 --- a/classes/Notice_tag.php +++ b/classes/Notice_tag.php @@ -19,7 +19,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Notice_tag extends Memcached_DataObject +class Notice_tag extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -36,6 +36,26 @@ class Notice_tag extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'description' => 'Hash tags', + 'fields' => array( + 'tag' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this notice'), + 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice tagged'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), + ), + 'primary key' => array('tag', 'notice_id'), + 'foreign keys' => array( + 'notice_tag_notice_id_fkey' => array('notice', array('notice_id' => 'id')), + ), + 'indexes' => array( + 'notice_tag_created_idx' => array('created'), + 'notice_tag_notice_id_idx' => array('notice_id'), + ), + ); + } + static function getStream($tag, $offset=0, $limit=20, $sinceId=0, $maxId=0) { $stream = new TagNoticeStream($tag); diff --git a/classes/Oauth_application.php b/classes/Oauth_application.php index f1d4fb7a6f..15faffe2fb 100644 --- a/classes/Oauth_application.php +++ b/classes/Oauth_application.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Oauth_application extends Memcached_DataObject +class Oauth_application extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -159,4 +159,35 @@ class Oauth_application extends Memcached_DataObject $oauser->application_id = $this->id; $oauser->delete(); } + + public static function schemaDef() + { + return array( + 'description' => 'OAuth application registration record', + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + 'owner' => array('type' => 'int', 'not null' => true, 'description' => 'owner of the application'), + 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'application consumer key'), + 'name' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'name of the application'), + 'description' => array('type' => 'varchar', 'length' => 255, 'description' => 'description of the application'), + 'icon' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'application icon'), + 'source_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'application homepage - used for source link'), + 'organization' => array('type' => 'varchar', 'length' => 255, 'description' => 'name of the organization running the application'), + 'homepage' => array('type' => 'varchar', 'length' => 255, 'description' => 'homepage for the organization'), + 'callback_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'url to redirect to after authentication'), + 'type' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'type of app, 1 = browser, 2 = desktop'), + 'access_type' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'default access type, bit 1 = read, bit 2 = write'), + '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'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'oauth_application_name_key' => array('name'), // in the long run, we should perhaps not force these unique, and use another source id + ), + 'foreign keys' => array( + 'oauth_application_owner_fkey' => array('profile', array('owner' => 'id')), // Are remote users allowed to create oauth application records? + 'oauth_application_consumer_key_fkey' => array('consumer', array('consumer_key' => 'consumer_key')), + ), + ); + } } diff --git a/classes/Oauth_application_user.php b/classes/Oauth_application_user.php index 834e38d2be..4d25672465 100644 --- a/classes/Oauth_application_user.php +++ b/classes/Oauth_application_user.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Oauth_application_user extends Memcached_DataObject +class Oauth_application_user extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -24,6 +24,25 @@ class Oauth_application_user extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'user of the application'), + 'application_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of the application'), + 'access_type' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'access type, bit 1 = read, bit 2 = write'), + 'token' => array('type' => 'varchar', 'length' => 255, 'description' => 'request or access token'), + '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'), + ), + 'primary key' => array('profile_id', 'application_id'), + 'foreign keys' => array( + 'oauth_application_user_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + 'oauth_application_user_application_id_fkey' => array('oauth_application', array('application_id' => 'id')), + ), + ); + } + static function getByUserAndToken($user, $token) { if (empty($user) || empty($token)) { diff --git a/classes/Oauth_token_association.php b/classes/Oauth_token_association.php index 06c9fee1c3..17327d4b01 100644 --- a/classes/Oauth_token_association.php +++ b/classes/Oauth_token_association.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; -class Oauth_token_association extends Memcached_DataObject +class Oauth_token_association extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ diff --git a/classes/Profile.php b/classes/Profile.php index d5008d9fb8..bcbb406ae0 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -24,7 +24,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Profile extends Memcached_DataObject +class Profile extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -49,6 +49,36 @@ class Profile extends Memcached_DataObject return Memcached_DataObject::staticGet('Profile',$k,$v); } + public static function schemaDef() + { + return array( + 'description' => 'local and remote users have profiles', + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + 'nickname' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'nickname or username'), + 'fullname' => array('type' => 'varchar', 'length' => 255, 'description' => 'display name'), + 'profileurl' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL, cached so we dont regenerate'), + 'homepage' => array('type' => 'varchar', 'length' => 255, 'description' => 'identifying URL'), + 'bio' => array('type' => 'text', 'description' => 'descriptive biography'), + 'location' => array('type' => 'varchar', 'length' => 255, 'description' => 'physical location'), + 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'), + 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'), + 'location_id' => array('type' => 'int', 'description' => 'location id if possible'), + 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'), + + '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'), + ), + 'primary key' => array('id'), + 'indexes' => array( + 'profile_nickname_idx' => array('nickname'), + ), + 'fulltext indexes' => array( + 'nickname' => array('nickname', 'fullname', 'location', 'bio', 'homepage') + ), + ); + } + function multiGet($keyCol, $keyVals, $skipNulls=true) { return parent::multiGet('Profile', $keyCol, $keyVals, $skipNulls); diff --git a/classes/Profile_block.php b/classes/Profile_block.php index 2d87edaa0a..8506283462 100644 --- a/classes/Profile_block.php +++ b/classes/Profile_block.php @@ -25,7 +25,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Profile_block extends Memcached_DataObject +class Profile_block extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -42,6 +42,22 @@ class Profile_block extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'blocker' => array('type' => 'int', 'not null' => true, 'description' => 'user making the block'), + 'blocked' => array('type' => 'int', 'not null' => true, 'description' => 'profile that is blocked'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date of blocking'), + ), + 'foreign keys' => array( + 'profile_block_blocker_fkey' => array('user', array('blocker' => 'id')), + 'profile_block_blocked_fkey' => array('profile', array('blocked' => 'id')), + ), + 'primary key' => array('blocker', 'blocked'), + ); + } + function get($blocker, $blocked) { return Memcached_DataObject::pkeyGet('Profile_block', diff --git a/classes/Profile_list.php b/classes/Profile_list.php index 2395a369f3..50aa71f55d 100644 --- a/classes/Profile_list.php +++ b/classes/Profile_list.php @@ -30,7 +30,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Profile_list extends Memcached_DataObject +class Profile_list extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -54,6 +54,41 @@ class Profile_list extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + 'tagger' => array('type' => 'int', 'not null' => true, 'description' => 'user making the tag'), + 'tag' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'people tag'), + 'description' => array('type' => 'text', 'description' => 'description of the people tag'), + 'private' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'is this tag private'), + + 'created' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date the tag was added'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date the tag was modified'), + + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universal identifier'), + 'mainpage' => array('type' => 'varchar', 'length' => 255, 'description' => 'page to link to'), + 'tagged_count' => array('type' => 'int', 'default' => 0, 'description' => 'number of people tagged with this tag by this user'), + 'subscriber_count' => array('type' => 'int', 'default' => 0, 'description' => 'number of subscribers to this tag'), + ), + 'primary key' => array('tagger', 'tag'), + 'unique keys' => array( + 'profile_list_id_key' => array('id') + ), + 'foreign keys' => array( + 'profile_list_tagger_fkey' => array('profile', array('tagger' => 'id')), + ), + 'indexes' => array( + 'profile_list_modified_idx' => array('modified'), + 'profile_list_tag_idx' => array('tag'), + 'profile_list_tagger_tag_idx' => array('tagger', 'tag'), + 'profile_list_tagged_count_idx' => array('tagged_count'), + 'profile_list_subscriber_count_idx' => array('subscriber_count'), + ), + ); + } + /** * return a profile_list record, given its tag and tagger. * diff --git a/classes/Profile_role.php b/classes/Profile_role.php index e7aa1f0f06..d89992b842 100644 --- a/classes/Profile_role.php +++ b/classes/Profile_role.php @@ -27,7 +27,7 @@ if (!defined('STATUSNET')) { require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Profile_role extends Memcached_DataObject +class Profile_role extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -43,6 +43,21 @@ class Profile_role extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'account having the role'), + 'role' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'string representing the role'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the role was granted'), + ), + 'primary key' => array('profile_id', 'role'), + 'foreign keys' => array( + 'profile_role_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Profile_role', $kv); diff --git a/classes/Profile_tag.php b/classes/Profile_tag.php index 9e475e83ec..d9b094182f 100644 --- a/classes/Profile_tag.php +++ b/classes/Profile_tag.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Profile_tag extends Memcached_DataObject +class Profile_tag extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -22,6 +22,30 @@ class Profile_tag extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + + 'fields' => array( + 'tagger' => array('type' => 'int', 'not null' => true, 'description' => 'user making the tag'), + 'tagged' => array('type' => 'int', 'not null' => true, 'description' => 'profile tagged'), + 'tag' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this notice'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date the tag was added'), + ), + 'primary key' => array('tagger', 'tagged', 'tag'), + 'foreign keys' => array( + 'profile_tag_tagger_fkey' => array('profile', array('tagger' => 'id')), + 'profile_tag_tagged_fkey' => array('profile', array('tagged' => 'id')), + 'profile_tag_tag_fkey' => array('profile_list', array('tag' => 'tag')), + ), + 'indexes' => array( + 'profile_tag_modified_idx' => array('modified'), + 'profile_tag_tagger_tag_idx' => array('tagger', 'tag'), + 'profile_tag_tagged_idx' => array('tagged'), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Profile_tag', $kv); } diff --git a/classes/Profile_tag_subscription.php b/classes/Profile_tag_subscription.php index 031405f531..ce4a57e870 100644 --- a/classes/Profile_tag_subscription.php +++ b/classes/Profile_tag_subscription.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Profile_tag_subscription extends Memcached_DataObject +class Profile_tag_subscription extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -22,6 +22,29 @@ class Profile_tag_subscription extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'profile_tag_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile_tag'), + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), + + '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'), + ), + 'primary key' => array('profile_tag_id', 'profile_id'), + 'foreign keys' => array( + 'profile_tag_subscription_profile_list_id_fkey' => array('profile_list', array('profile_tag_id' => 'id')), + 'profile_tag_subscription_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), + 'indexes' => array( + // @fixme probably we want a (profile_id, created) index here? + 'profile_tag_subscription_profile_id_idx' => array('profile_id'), + 'profile_tag_subscription_created_idx' => array('created'), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Profile_tag_subscription', $kv); diff --git a/classes/Queue_item.php b/classes/Queue_item.php index d17e512b96..e34a89d2e3 100644 --- a/classes/Queue_item.php +++ b/classes/Queue_item.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Queue_item extends Memcached_DataObject +class Queue_item extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -22,6 +22,23 @@ class Queue_item extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + 'frame' => array('type' => 'blob', 'not null' => true, 'description' => 'data: object reference or opaque string'), + 'transport' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'queue for what? "email", "xmpp", "sms", "irc", ...'), // @fixme 8 chars is too short; bump up. + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), + 'claimed' => array('type' => 'datetime', 'description' => 'date this item was claimed'), + ), + 'primary key' => array('id'), + 'indexes' => array( + 'queue_item_created_idx' => array('created'), + ), + ); + } + /** * @param mixed $transports name of a single queue or array of queues to pull from * If not specified, checks all queues in the system. diff --git a/classes/Related_group.php b/classes/Related_group.php index c00ad9c44e..67d6ce3fc7 100644 --- a/classes/Related_group.php +++ b/classes/Related_group.php @@ -3,7 +3,7 @@ * Table Definition for related_group */ -class Related_group extends Memcached_DataObject +class Related_group extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -18,4 +18,22 @@ class Related_group extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + // @fixme description for related_group? + 'fields' => array( + 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'), + 'related_group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'), + + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), + ), + 'primary key' => array('group_id', 'related_group_id'), + 'foreign keys' => array( + 'related_group_group_id_fkey' => array('user_group', array('group_id' => 'id')), + 'related_group_related_group_id_fkey' => array('user_group', array('related_group_id' => 'id')), + ), + ); + } } diff --git a/classes/Remember_me.php b/classes/Remember_me.php index 3df7a99831..ceac155347 100644 --- a/classes/Remember_me.php +++ b/classes/Remember_me.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Remember_me extends Memcached_DataObject +class Remember_me extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -27,4 +27,19 @@ class Remember_me extends Memcached_DataObject { return array(false, false); } + + public static function schemaDef() + { + return array( + 'fields' => array( + 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'good random code'), + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who is logged in'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('code'), + 'foreign keys' => array( + 'remember_me_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); + } } diff --git a/classes/Remote_profile.php b/classes/Remote_profile.php index 1672e9f956..d59f97ada7 100644 --- a/classes/Remote_profile.php +++ b/classes/Remote_profile.php @@ -24,7 +24,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Remote_profile extends Memcached_DataObject +class Remote_profile extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -54,4 +54,26 @@ class Remote_profile extends Memcached_DataObject throw new Exception(_("Missing profile.")); } } + + public static function schemaDef() + { + return array( + 'description' => 'remote people (OMB)', + 'fields' => array( + 'id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), + 'postnoticeurl' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL we use for posting notices'), + 'updateprofileurl' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL we use for updates to this profile'), + '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'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'remote_profile_uri_key' => array('uri'), + ), + 'foreign keys' => array( + 'remote_profile_id_fkey' => array('profile', array('id' => 'id')), + ), + ); + } } diff --git a/classes/Reply.php b/classes/Reply.php index acda0fecb4..3cc4b942ca 100644 --- a/classes/Reply.php +++ b/classes/Reply.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Reply extends Memcached_DataObject +class Reply extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -22,6 +22,28 @@ class Reply extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice that is the reply'), + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'profile replied to'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + 'replied_id' => array('type' => 'int', 'description' => 'notice replied to (not used, see notice.reply_to)'), + ), + 'primary key' => array('notice_id', 'profile_id'), + 'foreign keys' => array( + 'reply_notice_id_fkey' => array('notice', array('notice_id' => 'id')), + 'reply_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), + 'indexes' => array( + 'reply_notice_id_idx' => array('notice_id'), + 'reply_profile_id_idx' => array('profile_id'), + 'reply_replied_id_idx' => array('replied_id'), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Reply',$kv); diff --git a/classes/Schema_version.php b/classes/Schema_version.php index 6b464c6d1d..4a3f939e93 100644 --- a/classes/Schema_version.php +++ b/classes/Schema_version.php @@ -3,7 +3,7 @@ * Table Definition for schema_version */ -class Schema_version extends Memcached_DataObject +class Schema_version extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -19,4 +19,17 @@ class Schema_version extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + public static function schemaDef() + { + return array( + 'description' => 'To avoid checking database structure all the time, we store a checksum of the expected schema info for each table here. If it has not changed since the last time we checked the table, we can leave it as is.', + 'fields' => array( + 'table_name' => array('type' => 'varchar', 'length' => '64', 'not null' => true, 'description' => 'Table name'), + 'checksum' => array('type' => 'varchar', 'length' => '64', 'not null' => true, 'description' => 'Checksum of schema array; a mismatch indicates we should check the table more thoroughly.'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('table_name'), + ); + } } diff --git a/classes/Session.php b/classes/Session.php index 166b89815a..1a924b7964 100644 --- a/classes/Session.php +++ b/classes/Session.php @@ -23,7 +23,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Session extends Memcached_DataObject +class Session extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -40,6 +40,22 @@ class Session extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'session ID'), + 'session_data' => array('type' => 'text', 'description' => 'session data'), + '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'), + ), + 'primary key' => array('id'), + 'indexes' => array( + 'session_modified_idx' => array('modified'), + ), + ); + } + static function logdeb($msg) { if (common_config('sessions', 'debug')) { diff --git a/classes/Sms_carrier.php b/classes/Sms_carrier.php index 500cb4f043..08d83f08f2 100644 --- a/classes/Sms_carrier.php +++ b/classes/Sms_carrier.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Sms_carrier extends Memcached_DataObject +class Sms_carrier extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -27,4 +27,21 @@ class Sms_carrier extends Memcached_DataObject { return sprintf($this->email_pattern, $sms); } + + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'int', 'not null' => true, 'description' => 'primary key for SMS carrier'), + 'name' => array('type' => 'varchar', 'length' => 64, 'description' => 'name of the carrier'), + 'email_pattern' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'sprintf pattern for making an email address from a phone number'), + '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'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'sms_carrier_name_key' => array('name'), + ), + ); + } } diff --git a/classes/Subscription.php b/classes/Subscription.php index e83621eb86..3dbccea422 100644 --- a/classes/Subscription.php +++ b/classes/Subscription.php @@ -24,7 +24,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Subscription extends Memcached_DataObject +class Subscription extends Managed_DataObject { const CACHE_WINDOW = 201; const FORCE = true; @@ -42,6 +42,28 @@ class Subscription extends Memcached_DataObject public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP + public static function schemaDef() + { + return array( + 'fields' => array( + 'subscriber' => array('type' => 'int', 'not null' => true, 'description' => 'profile listening'), + 'subscribed' => array('type' => 'int', 'not null' => true, 'description' => 'profile being listened to'), + 'jabber' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'deliver jabber messages'), + 'sms' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'deliver sms messages'), + 'token' => array('type' => 'varchar', 'length' => 255, 'description' => 'authorization token'), + 'secret' => array('type' => 'varchar', 'length' => 255, 'description' => 'token secret'), + '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'), + ), + 'primary key' => array('subscriber', 'subscribed'), + 'indexes' => array( + 'subscription_subscriber_idx' => array('subscriber', 'created'), + 'subscription_subscribed_idx' => array('subscribed', 'created'), + 'subscription_token_idx' => array('token'), + ), + ); + } + /* Static get */ function staticGet($k,$v=null) { return Memcached_DataObject::staticGet('Subscription',$k,$v); } diff --git a/classes/Token.php b/classes/Token.php index a129d1fd11..8a6b46bbbb 100644 --- a/classes/Token.php +++ b/classes/Token.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class Token extends Memcached_DataObject +class Token extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -26,4 +26,26 @@ class Token extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'description' => 'OAuth token record', + 'fields' => array( + 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'unique identifier, root URL'), + 'tok' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'identifying value'), + 'secret' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'secret value'), + 'type' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'request or access'), + 'state' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'for requests, 0 = initial, 1 = authorized, 2 = used'), + 'verifier' => array('type' => 'varchar', 'length' => 255, 'description' => 'verifier string for OAuth 1.0a'), + 'verified_callback' => array('type' => 'varchar', 'length' => 255, 'description' => 'verified callback URL for OAuth 1.0a'), + + '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'), + ), + 'primary key' => array('consumer_key', 'tok'), + 'foreign keys' => array( + 'token_consumer_key_fkey' => array('consumer', array('consumer_key'=> 'consumer_key')), + ), + ); + } } diff --git a/classes/User.php b/classes/User.php index d15c2c0ae6..93340f021d 100644 --- a/classes/User.php +++ b/classes/User.php @@ -28,7 +28,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; require_once 'Validate.php'; -class User extends Memcached_DataObject +class User extends Managed_DataObject { const SUBSCRIBE_POLICY_OPEN = 0; const SUBSCRIBE_POLICY_MODERATE = 1; @@ -71,6 +71,58 @@ class User extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'description' => 'local users', + 'fields' => array( + 'id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), + 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'nickname or username, duped in profile'), + 'password' => array('type' => 'varchar', 'length' => 255, 'description' => 'salted password, can be null for OpenID users'), + 'email' => array('type' => 'varchar', 'length' => 255, 'description' => 'email address for password recovery etc.'), + 'incomingemail' => array('type' => 'varchar', 'length' => 255, 'description' => 'email address for post-by-email'), + 'emailnotifysub' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of subscriptions'), + 'emailnotifyfav' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of favorites'), + 'emailnotifynudge' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of nudges'), + 'emailnotifymsg' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of direct messages'), + 'emailnotifyattn' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of @-replies'), + 'emailmicroid' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'whether to publish email microid'), + 'language' => array('type' => 'varchar', 'length' => 50, 'description' => 'preferred language'), + 'timezone' => array('type' => 'varchar', 'length' => 50, 'description' => 'timezone'), + 'emailpost' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Post by email'), + 'sms' => array('type' => 'varchar', 'length' => 64, 'description' => 'sms phone number'), + 'carrier' => array('type' => 'int', 'description' => 'foreign key to sms_carrier'), + 'smsnotify' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS'), + 'smsreplies' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS on replies'), + 'smsemail' => array('type' => 'varchar', 'length' => 255, 'description' => 'built from sms and carrier'), + 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), + 'autosubscribe' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'automatically subscribe to users who subscribe to us'), + 'subscribe_policy' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => '0 = anybody can subscribe; 1 = require approval'), + 'urlshorteningservice' => array('type' => 'varchar', 'length' => 50, 'default' => 'internal', 'description' => 'service to use for auto-shortening URLs'), + 'inboxed' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'has an inbox been created for this user?'), + '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'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'user_nickname_key' => array('nickname'), + 'user_email_key' => array('email'), + 'user_incomingemail_key' => array('incomingemail'), + 'user_sms_key' => array('sms'), + 'user_uri_key' => array('uri'), + ), + 'foreign keys' => array( + 'user_id_fkey' => array('profile', array('id' => 'id')), + 'user_carrier_fkey' => array('sms_carrier', array('carrier' => 'id')), + ), + 'indexes' => array( + 'user_smsemail_idx' => array('smsemail'), + ), + ); + } + protected $_profile = -1; /** diff --git a/classes/User_group.php b/classes/User_group.php index 38cc5603db..8d08efb5ff 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -3,7 +3,7 @@ * Table Definition for user_group */ -class User_group extends Memcached_DataObject +class User_group extends Managed_DataObject { const JOIN_POLICY_OPEN = 0; const JOIN_POLICY_MODERATE = 1; @@ -42,6 +42,41 @@ class User_group extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), + + 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'nickname for addressing'), + 'fullname' => array('type' => 'varchar', 'length' => 255, 'description' => 'display name'), + 'homepage' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL, cached so we dont regenerate'), + 'description' => array('type' => 'text', 'description' => 'group description'), + 'location' => array('type' => 'varchar', 'length' => 255, 'description' => 'related physical location, if any'), + + 'original_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'original size logo'), + 'homepage_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'homepage (profile) size logo'), + 'stream_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'stream-sized logo'), + 'mini_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'mini logo'), + + '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'), + + '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'), + 'force_scope' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=never,1=sometimes,-1=always'), + ), + 'primary key' => array('id'), + 'unique keys' => array( + 'user_group_uri_key' => array('uri'), + ), + 'indexes' => array( + 'user_group_nickname_idx' => array('nickname'), + ), + ); + } + function defaultLogo($size) { static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile', diff --git a/classes/User_im_prefs.php b/classes/User_im_prefs.php index 75be8969e0..00b4e65c15 100644 --- a/classes/User_im_prefs.php +++ b/classes/User_im_prefs.php @@ -29,7 +29,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class User_im_prefs extends Memcached_DataObject +class User_im_prefs extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -56,6 +56,30 @@ class User_im_prefs extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user'), + 'screenname' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'screenname on this service'), + 'transport' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'transport (ex xmpp, aim)'), + 'notify' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Notify when a new notice is sent'), + 'replies' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Send replies from people not subscribed to'), + 'microid' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 1, 'description' => 'Publish a MicroID'), + 'updatefrompresence' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Send replies from people not subscribed to.'), + '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'), + ), + 'primary key' => array('user_id', 'transport'), + 'unique keys' => array( + 'transport_screenname_key' => array('transport', 'screenname'), + ), + 'foreign keys' => array( + 'user_im_prefs_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); + } + /* DB_DataObject calculates the sequence key(s) by taking the first key returned by the keys() function. In this case, the keys() function returns user_id as the first key. user_id is not a sequence, but diff --git a/classes/User_location_prefs.php b/classes/User_location_prefs.php index bd6029f97c..060ef41e83 100644 --- a/classes/User_location_prefs.php +++ b/classes/User_location_prefs.php @@ -29,7 +29,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class User_location_prefs extends Memcached_DataObject +class User_location_prefs extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -46,8 +46,19 @@ class User_location_prefs extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function sequenceKey() + public static function schemaDef() { - return array(false, false, false); + return array( + 'fields' => array( + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who has the preference'), + 'share_location' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Whether to share location data'), + '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'), + ), + 'primary key' => array('user_id'), + 'foreign keys' => array( + 'user_location_prefs_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); } } diff --git a/classes/User_urlshortener_prefs.php b/classes/User_urlshortener_prefs.php index e0f85af012..f71adc9736 100755 --- a/classes/User_urlshortener_prefs.php +++ b/classes/User_urlshortener_prefs.php @@ -21,7 +21,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -class User_urlshortener_prefs extends Memcached_DataObject +class User_urlshortener_prefs extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -40,9 +40,23 @@ class User_urlshortener_prefs extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function sequenceKey() + public static function schemaDef() { - return array(false, false, false); + return array( + 'fields' => array( + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user'), + 'urlshorteningservice' => array('type' => 'varchar', 'length' => 50, 'default' => 'internal', 'description' => 'service to use for auto-shortening URLs'), + 'maxurllength' => array('type' => 'int', 'not null' => true, 'description' => 'urls greater than this length will be shortened, 0 = always, null = never'), + 'maxnoticelength' => array('type' => 'int', 'not null' => true, 'description' => 'notices with content greater than this value will have all urls shortened, 0 = always, null = never'), + + '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'), + ), + 'primary key' => array('user_id'), + 'foreign keys' => array( + 'user_urlshortener_prefs_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); } static function maxUrlLength($user) diff --git a/classes/User_username.php b/classes/User_username.php index ae7785cc9f..652e7bd141 100644 --- a/classes/User_username.php +++ b/classes/User_username.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class User_username extends Memcached_DataObject +class User_username extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ diff --git a/db/core.php b/db/core.php index a9632fe8d4..dd5c9a7878 100644 --- a/db/core.php +++ b/db/core.php @@ -29,1065 +29,65 @@ * double-check what we've been doing on postgres? */ -$schema['profile'] = array( - 'description' => 'local and remote users have profiles', - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - 'nickname' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'nickname or username'), - 'fullname' => array('type' => 'varchar', 'length' => 255, 'description' => 'display name'), - 'profileurl' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL, cached so we dont regenerate'), - 'homepage' => array('type' => 'varchar', 'length' => 255, 'description' => 'identifying URL'), - 'bio' => array('type' => 'text', 'description' => 'descriptive biography'), - 'location' => array('type' => 'varchar', 'length' => 255, 'description' => 'physical location'), - 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'), - 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'), - 'location_id' => array('type' => 'int', 'description' => 'location id if possible'), - 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'), - - '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'), - ), - 'primary key' => array('id'), - 'indexes' => array( - 'profile_nickname_idx' => array('nickname'), - ), - 'fulltext indexes' => array( - 'nickname' => array('nickname', 'fullname', 'location', 'bio', 'homepage') - ), +$classes = array('Profile', + 'Avatar', + 'Sms_carrier', + 'User', + 'Remote_profile', + 'Subscription', + 'Group_join_queue', + 'Subscription_queue', + 'Oauth_token_association', + 'Notice', + 'Notice_source', + 'Reply', + 'Fave', + 'Consumer', + 'Token', + 'Nonce', + 'Oauth_application', + 'Oauth_application_user', + 'Confirm_address', + 'Remember_me', + 'Queue_item', + 'Notice_tag', + 'Foreign_service', + 'Foreign_user', + 'Foreign_link', + 'Foreign_subscription', + 'Invitation', + 'Message', + // 'Notice_inbox', + 'Profile_tag', + 'Profile_list', + 'Profile_tag_subscription', + 'Profile_block', + 'User_group', + 'Related_group', + 'Group_inbox', + 'File', + 'File_oembed', + 'File_redirection', + 'File_thumbnail', + 'File_to_post', + 'Group_block', + 'Group_alias', + 'Session', + 'Deleted_notice', + 'Config', + 'Profile_role', + 'Location_namespace', + 'Login_token', + 'User_location_prefs', + 'Inbox', + 'User_im_prefs', + 'Conversation', + 'Local_group', + 'User_urlshortener_prefs', + 'Schema_version', ); -$schema['avatar'] = array( - 'fields' => array( - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), - 'original' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'uploaded by user or generated?'), - 'width' => array('type' => 'int', 'not null' => true, 'description' => 'image width'), - 'height' => array('type' => 'int', 'not null' => true, 'description' => 'image height'), - 'mediatype' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'file type'), - 'filename' => array('type' => 'varchar', 'length' => 255, 'description' => 'local filename, if local'), - 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'avatar location'), - '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'), - ), - 'primary key' => array('profile_id', 'width', 'height'), - 'unique keys' => array( - 'avatar_url_key' => array('url'), - ), - 'foreign keys' => array( - 'avatar_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - ), - 'indexes' => array( - 'avatar_profile_id_idx' => array('profile_id'), - ), -); +foreach ($classes as $cls) { + $schema[strtolower($cls)] = call_user_func(array($cls, 'schemaDef')); +} -$schema['sms_carrier'] = array( - 'fields' => array( - 'id' => array('type' => 'int', 'not null' => true, 'description' => 'primary key for SMS carrier'), - 'name' => array('type' => 'varchar', 'length' => 64, 'description' => 'name of the carrier'), - 'email_pattern' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'sprintf pattern for making an email address from a phone number'), - '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'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'sms_carrier_name_key' => array('name'), - ), -); - -$schema['user'] = array( - 'description' => 'local users', - 'fields' => array( - 'id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), - 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'nickname or username, duped in profile'), - 'password' => array('type' => 'varchar', 'length' => 255, 'description' => 'salted password, can be null for OpenID users'), - 'email' => array('type' => 'varchar', 'length' => 255, 'description' => 'email address for password recovery etc.'), - 'incomingemail' => array('type' => 'varchar', 'length' => 255, 'description' => 'email address for post-by-email'), - 'emailnotifysub' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of subscriptions'), - 'emailnotifyfav' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of favorites'), - 'emailnotifynudge' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of nudges'), - 'emailnotifymsg' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of direct messages'), - 'emailnotifyattn' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of @-replies'), - 'emailmicroid' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'whether to publish email microid'), - 'language' => array('type' => 'varchar', 'length' => 50, 'description' => 'preferred language'), - 'timezone' => array('type' => 'varchar', 'length' => 50, 'description' => 'timezone'), - 'emailpost' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Post by email'), - 'sms' => array('type' => 'varchar', 'length' => 64, 'description' => 'sms phone number'), - 'carrier' => array('type' => 'int', 'description' => 'foreign key to sms_carrier'), - 'smsnotify' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS'), - 'smsreplies' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS on replies'), - 'smsemail' => array('type' => 'varchar', 'length' => 255, 'description' => 'built from sms and carrier'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), - 'autosubscribe' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'automatically subscribe to users who subscribe to us'), - 'subscribe_policy' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => '0 = anybody can subscribe; 1 = require approval'), - 'urlshorteningservice' => array('type' => 'varchar', 'length' => 50, 'default' => 'internal', 'description' => 'service to use for auto-shortening URLs'), - 'inboxed' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'has an inbox been created for this user?'), - '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'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'user_nickname_key' => array('nickname'), - 'user_email_key' => array('email'), - 'user_incomingemail_key' => array('incomingemail'), - 'user_sms_key' => array('sms'), - 'user_uri_key' => array('uri'), - ), - 'foreign keys' => array( - 'user_id_fkey' => array('profile', array('id' => 'id')), - 'user_carrier_fkey' => array('sms_carrier', array('carrier' => 'id')), - ), - 'indexes' => array( - 'user_smsemail_idx' => array('smsemail'), - ), -); - -$schema['remote_profile'] = array( - 'description' => 'remote people (OMB)', - 'fields' => array( - 'id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), - 'postnoticeurl' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL we use for posting notices'), - 'updateprofileurl' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL we use for updates to this profile'), - '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'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'remote_profile_uri_key' => array('uri'), - ), - 'foreign keys' => array( - 'remote_profile_id_fkey' => array('profile', array('id' => 'id')), - ), -); - -$schema['subscription'] = array( - 'fields' => array( - 'subscriber' => array('type' => 'int', 'not null' => true, 'description' => 'profile listening'), - 'subscribed' => array('type' => 'int', 'not null' => true, 'description' => 'profile being listened to'), - 'jabber' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'deliver jabber messages'), - 'sms' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'deliver sms messages'), - 'token' => array('type' => 'varchar', 'length' => 255, 'description' => 'authorization token'), - 'secret' => array('type' => 'varchar', 'length' => 255, 'description' => 'token secret'), - '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'), - ), - 'primary key' => array('subscriber', 'subscribed'), - 'indexes' => array( - 'subscription_subscriber_idx' => array('subscriber', 'created'), - 'subscription_subscribed_idx' => array('subscribed', 'created'), - 'subscription_token_idx' => array('token'), - ), -); - -$schema['notice'] = array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'who made the update'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), - 'content' => array('type' => 'text', 'description' => 'update content'), - 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'), - 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'), - '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'), - 'reply_to' => array('type' => 'int', 'description' => 'notice replied to (usually a guess)'), - 'is_local' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'notice was generated by a user'), - 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'), - 'conversation' => array('type' => 'int', 'description' => 'id of root notice in this conversation'), - 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'), - 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'), - 'location_id' => array('type' => 'int', 'description' => 'location id if possible'), - 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'), - 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'), - 'object_type' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams object type', 'default' => 'http://activitystrea.ms/schema/1.0/note'), - 'scope' => array('type' => 'int', - 'default' => '1', - 'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'notice_uri_key' => array('uri'), - ), - 'foreign keys' => array( - 'notice_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - 'notice_reply_to_fkey' => array('notice', array('reply_to' => 'id')), - 'notice_conversation_fkey' => array('conversation', array('conversation' => 'id')), # note... used to refer to notice.id - 'notice_repeat_of_fkey' => array('notice', array('repeat_of' => 'id')), # @fixme: what about repeats of deleted notices? - ), - 'indexes' => array( - 'notice_profile_id_idx' => array('profile_id', 'created', 'id'), - 'notice_conversation_idx' => array('conversation'), - 'notice_created_idx' => array('created'), - 'notice_replyto_idx' => array('reply_to'), - 'notice_repeatof_idx' => array('repeat_of'), - ), - 'fulltext indexes' => array( - 'content' => array('content'), - ) -); - -$schema['notice_source'] = array( - 'fields' => array( - 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'source code'), - 'name' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'name of the source'), - 'url' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'url to link to'), - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'date this record was created'), - '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'), - ), - 'primary key' => array('code'), -); - -$schema['reply'] = array( - 'fields' => array( - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice that is the reply'), - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'profile replied to'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - 'replied_id' => array('type' => 'int', 'description' => 'notice replied to (not used, see notice.reply_to)'), - ), - 'primary key' => array('notice_id', 'profile_id'), - 'foreign keys' => array( - 'reply_notice_id_fkey' => array('notice', array('notice_id' => 'id')), - 'reply_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - ), - 'indexes' => array( - 'reply_notice_id_idx' => array('notice_id'), - 'reply_profile_id_idx' => array('profile_id'), - 'reply_replied_id_idx' => array('replied_id'), - ), -); - -$schema['fave'] = array( - 'fields' => array( - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice that is the favorite'), - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who likes this notice'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('notice_id', 'user_id'), - 'foreign keys' => array( - 'fave_notice_id_fkey' => array('notice', array('notice_id' => 'id')), - 'fave_user_id_fkey' => array('profile', array('user_id' => 'id')), // note: formerly referenced notice.id, but we can now record remote users' favorites - ), - 'indexes' => array( - 'fave_notice_id_idx' => array('notice_id'), - 'fave_user_id_idx' => array('user_id', 'modified'), - 'fave_modified_idx' => array('modified'), - ), -); - -/* tables for OAuth */ - -$schema['consumer'] = array( - 'description' => 'OAuth consumer record', - 'fields' => array( - 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'unique identifier, root URL'), - 'consumer_secret' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'secret value'), - 'seed' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'seed for new tokens by this consumer'), - - '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'), - ), - 'primary key' => array('consumer_key'), -); - -$schema['token'] = array( - 'description' => 'OAuth token record', - 'fields' => array( - 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'unique identifier, root URL'), - 'tok' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'identifying value'), - 'secret' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'secret value'), - 'type' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'request or access'), - 'state' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'for requests, 0 = initial, 1 = authorized, 2 = used'), - 'verifier' => array('type' => 'varchar', 'length' => 255, 'description' => 'verifier string for OAuth 1.0a'), - 'verified_callback' => array('type' => 'varchar', 'length' => 255, 'description' => 'verified callback URL for OAuth 1.0a'), - - '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'), - ), - 'primary key' => array('consumer_key', 'tok'), - 'foreign keys' => array( - 'token_consumer_key_fkey' => array('consumer', array('consumer_key'=> 'consumer_key')), - ), -); - -$schema['nonce'] = array( - 'description' => 'OAuth nonce record', - 'fields' => array( - 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'unique identifier, root URL'), - 'tok' => array('type' => 'char', 'length' => 32, 'description' => 'buggy old value, ignored'), - 'nonce' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'nonce'), - 'ts' => array('type' => 'datetime', 'not null' => true, 'description' => 'timestamp sent'), - - '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'), - ), - 'primary key' => array('consumer_key', 'ts', 'nonce'), -); - -$schema['oauth_application'] = array( - 'description' => 'OAuth application registration record', - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - 'owner' => array('type' => 'int', 'not null' => true, 'description' => 'owner of the application'), - 'consumer_key' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'application consumer key'), - 'name' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'name of the application'), - 'description' => array('type' => 'varchar', 'length' => 255, 'description' => 'description of the application'), - 'icon' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'application icon'), - 'source_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'application homepage - used for source link'), - 'organization' => array('type' => 'varchar', 'length' => 255, 'description' => 'name of the organization running the application'), - 'homepage' => array('type' => 'varchar', 'length' => 255, 'description' => 'homepage for the organization'), - 'callback_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'url to redirect to after authentication'), - 'type' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'type of app, 1 = browser, 2 = desktop'), - 'access_type' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'default access type, bit 1 = read, bit 2 = write'), - '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'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'oauth_application_name_key' => array('name'), // in the long run, we should perhaps not force these unique, and use another source id - ), - 'foreign keys' => array( - 'oauth_application_owner_fkey' => array('profile', array('owner' => 'id')), // Are remote users allowed to create oauth application records? - 'oauth_application_consumer_key_fkey' => array('consumer', array('consumer_key' => 'consumer_key')), - ), -); - -$schema['oauth_application_user'] = array( - 'fields' => array( - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'user of the application'), - 'application_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of the application'), - 'access_type' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'access type, bit 1 = read, bit 2 = write'), - 'token' => array('type' => 'varchar', 'length' => 255, 'description' => 'request or access token'), - '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'), - ), - 'primary key' => array('profile_id', 'application_id'), - 'foreign keys' => array( - 'oauth_application_user_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - 'oauth_application_user_application_id_fkey' => array('oauth_application', array('application_id' => 'id')), - ), -); - -/* These are used by JanRain OpenID library */ - -$schema['oid_associations'] = array( - 'fields' => array( - 'server_url' => array('type' => 'blob', 'not null' => true), - 'handle' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'default' => ''), // character set latin1, - 'secret' => array('type' => 'blob'), - 'issued' => array('type' => 'int'), - 'lifetime' => array('type' => 'int'), - 'assoc_type' => array('type' => 'varchar', 'length' => 64), - ), - 'primary key' => array(array('server_url', 255), 'handle'), -); - -$schema['oid_nonces'] = array( - 'fields' => array( - 'server_url' => array('type' => 'varchar', 'length' => 2047), - 'timestamp' => array('type' => 'int'), - 'salt' => array('type' => 'char', 'length' => 40), - ), - 'unique keys' => array( - 'oid_nonces_server_url_timestamp_salt_key' => array(array('server_url', 255), 'timestamp', 'salt'), - ), -); - -$schema['confirm_address'] = array( - 'fields' => array( - 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'good random code'), - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who requested confirmation'), - 'address' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'address (email, xmpp, SMS, etc.)'), - 'address_extra' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'carrier ID, for SMS'), - 'address_type' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'address type ("email", "xmpp", "sms")'), - 'claimed' => array('type' => 'datetime', 'description' => 'date this was claimed for queueing'), - 'sent' => array('type' => 'datetime', 'description' => 'date this was sent for queueing'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('code'), - 'foreign keys' => array( - 'confirm_address_user_id_fkey' => array('user', array('user_id' => 'id')), - ), -); - -$schema['remember_me'] = array( - 'fields' => array( - 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'good random code'), - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who is logged in'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('code'), - 'foreign keys' => array( - 'remember_me_user_id_fkey' => array('user', array('user_id' => 'id')), - ), -); - -$schema['queue_item'] = array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - 'frame' => array('type' => 'blob', 'not null' => true, 'description' => 'data: object reference or opaque string'), - 'transport' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'queue for what? "email", "xmpp", "sms", "irc", ...'), // @fixme 8 chars is too short; bump up. - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - 'claimed' => array('type' => 'datetime', 'description' => 'date this item was claimed'), - ), - 'primary key' => array('id'), - 'indexes' => array( - 'queue_item_created_idx' => array('created'), - ), -); - -$schema['notice_tag'] = array( - 'description' => 'Hash tags', - 'fields' => array( - 'tag' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this notice'), - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice tagged'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - ), - 'primary key' => array('tag', 'notice_id'), - 'foreign keys' => array( - 'notice_tag_notice_id_fkey' => array('notice', array('notice_id' => 'id')), - ), - 'indexes' => array( - 'notice_tag_created_idx' => array('created'), - 'notice_tag_notice_id_idx' => array('notice_id'), - ), -); - -/* Synching with foreign services */ - -$schema['foreign_service'] = array( - 'fields' => array( - 'id' => array('type' => 'int', 'not null' => true, 'description' => 'numeric key for service'), - 'name' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'name of the service'), - 'description' => array('type' => 'varchar', 'length' => 255, 'description' => 'description'), - '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'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'foreign_service_name_key' => array('name'), - ), -); - -$schema['foreign_user'] = array( - 'fields' => array( - 'id' => array('type' => 'int', 'size' => 'big', 'not null' => true, 'description' => 'unique numeric key on foreign service'), - 'service' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to service'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'identifying URI'), - 'nickname' => array('type' => 'varchar', 'length' => 255, 'description' => 'nickname on foreign service'), - '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'), - ), - 'primary key' => array('id', 'service'), - 'foreign keys' => array( - 'foreign_user_service_fkey' => array('foreign_service', array('service' => 'id')), - ), - 'unique keys' => array( - 'foreign_user_uri_key' => array('uri'), - ), -); - -$schema['foreign_link'] = array( - 'fields' => array( - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'link to user on this system, if exists'), - 'foreign_id' => array('type' => 'int', 'size' => 'big', 'unsigned' => true, 'not null' => true, 'description' => 'link to user on foreign service, if exists'), - 'service' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to service'), - 'credentials' => array('type' => 'varchar', 'length' => 255, 'description' => 'authc credentials, typically a password'), - 'noticesync' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 1, 'description' => 'notice synchronization, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies'), - 'friendsync' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 2, 'description' => 'friend synchronization, bit 1 = sync outgoing, bit 2 = sync incoming'), - 'profilesync' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 1, 'description' => 'profile synchronization, bit 1 = sync outgoing, bit 2 = sync incoming'), - 'last_noticesync' => array('type' => 'datetime', 'description' => 'last time notices were imported'), - 'last_friendsync' => array('type' => 'datetime', 'description' => 'last time friends were imported'), - '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'), - ), - 'primary key' => array('user_id', 'foreign_id', 'service'), - 'foreign keys' => array( - 'foreign_link_user_id_fkey' => array('user', array('user_id' => 'id')), - 'foreign_link_foreign_id_fkey' => array('foreign_user', array('foreign_id' => 'id', 'service' => 'service')), - 'foreign_link_service_fkey' => array('foreign_service', array('service' => 'id')), - ), - 'indexes' => array( - 'foreign_user_user_id_idx' => array('user_id'), - ), -); - -$schema['foreign_subscription'] = array( - 'fields' => array( - 'service' => array('type' => 'int', 'not null' => true, 'description' => 'service where relationship happens'), - 'subscriber' => array('type' => 'int', 'size' => 'big', 'not null' => true, 'description' => 'subscriber on foreign service'), - 'subscribed' => array('type' => 'int', 'size' => 'big', 'not null' => true, 'description' => 'subscribed user'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - ), - 'primary key' => array('service', 'subscriber', 'subscribed'), - 'foreign keys' => array( - 'foreign_subscription_service_fkey' => array('foreign_service', array('service' => 'id')), - 'foreign_subscription_subscriber_fkey' => array('foreign_user', array('subscriber' => 'id', 'service' => 'service')), - 'foreign_subscription_subscribed_fkey' => array('foreign_user', array('subscribed' => 'id', 'service' => 'service')), - ), - 'indexes' => array( - 'foreign_subscription_subscriber_idx' => array('service', 'subscriber'), - 'foreign_subscription_subscribed_idx' => array('service', 'subscribed'), - ), -); - -$schema['invitation'] = array( - 'fields' => array( - 'code' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'random code for an invitation'), - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'who sent the invitation'), - 'address' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'invitation sent to'), - 'address_type' => array('type' => 'varchar', 'length' => 8, 'not null' => true, 'description' => 'address type ("email", "xmpp", "sms")'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - 'registered_user_id' => array('type' => 'int', 'not null' => false, 'description' => 'if the invitation is converted, who the new user is'), - ), - 'primary key' => array('code'), - 'foreign keys' => array( - 'invitation_user_id_fkey' => array('user', array('user_id' => 'id')), - 'invitation_registered_user_id_fkey' => array('user', array('registered_user_id' => 'id')), - ), - 'indexes' => array( - 'invitation_address_idx' => array('address', 'address_type'), - 'invitation_user_id_idx' => array('user_id'), - 'invitation_registered_user_id_idx' => array('registered_user_id'), - ), -); - -$schema['message'] = array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier'), - 'from_profile' => array('type' => 'int', 'not null' => true, 'description' => 'who the message is from'), - 'to_profile' => array('type' => 'int', 'not null' => true, 'description' => 'who the message is to'), - 'content' => array('type' => 'text', 'description' => 'message content'), - 'rendered' => array('type' => 'text', 'description' => 'HTML version of the content'), - 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of any attachment (image, video, bookmark, whatever)'), - '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'), - 'source' => array('type' => 'varchar', 'length' => 32, 'description' => 'source of comment, like "web", "im", or "clientname"'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'message_uri_key' => array('uri'), - ), - 'foreign keys' => array( - 'message_from_profile_fkey' => array('profile', array('from_profile' => 'id')), - 'message_to_profile_fkey' => array('profile', array('to_profile' => 'id')), - ), - 'indexes' => array( - // @fixme these are really terrible indexes, since you can only sort on one of them at a time. - // looks like we really need a (to_profile, created) for inbox and a (from_profile, created) for outbox - 'message_from_idx' => array('from_profile'), - 'message_to_idx' => array('to_profile'), - 'message_created_idx' => array('created'), - ), -); - -$schema['notice_inbox'] = array( - 'description' => 'Obsolete; old entries here are converted to packed entries in the inbox table since 0.9', - 'fields' => array( - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user receiving the message'), - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice received'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice was created'), - 'source' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'reason it is in the inbox, 1=subscription'), - ), - 'primary key' => array('user_id', 'notice_id'), - 'foreign keys' => array( - 'notice_inbox_user_id_fkey' => array('user', array('user_id' => 'id')), - 'notice_inbox_notice_id_fkey' => array('notice', array('notice_id' => 'id')), - ), - 'indexes' => array( - 'notice_inbox_notice_id_idx' => array('notice_id'), - ), -); - -$schema['profile_tag'] = array( - 'fields' => array( - 'tagger' => array('type' => 'int', 'not null' => true, 'description' => 'user making the tag'), - 'tagged' => array('type' => 'int', 'not null' => true, 'description' => 'profile tagged'), - 'tag' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'hash tag associated with this notice'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date the tag was added'), - ), - 'primary key' => array('tagger', 'tagged', 'tag'), - 'foreign keys' => array( - 'profile_tag_tagger_fkey' => array('profile', array('tagger' => 'id')), - 'profile_tag_tagged_fkey' => array('profile', array('tagged' => 'id')), - 'profile_tag_tag_fkey' => array('profile_list', array('tag' => 'tag')), - ), - 'indexes' => array( - 'profile_tag_modified_idx' => array('modified'), - 'profile_tag_tagger_tag_idx' => array('tagger', 'tag'), - 'profile_tag_tagged_idx' => array('tagged'), - ), -); - -$schema['profile_list'] = array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - 'tagger' => array('type' => 'int', 'not null' => true, 'description' => 'user making the tag'), - 'tag' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'people tag'), - 'description' => array('type' => 'text', 'description' => 'description of the people tag'), - 'private' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'is this tag private'), - - 'created' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date the tag was added'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date the tag was modified'), - - 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universal identifier'), - 'mainpage' => array('type' => 'varchar', 'length' => 255, 'description' => 'page to link to'), - 'tagged_count' => array('type' => 'int', 'default' => 0, 'description' => 'number of people tagged with this tag by this user'), - 'subscriber_count' => array('type' => 'int', 'default' => 0, 'description' => 'number of subscribers to this tag'), - ), - 'primary key' => array('tagger', 'tag'), - 'unique keys' => array( - 'profile_list_id_key' => array('id') - ), - 'foreign keys' => array( - 'profile_list_tagger_fkey' => array('profile', array('tagger' => 'id')), - ), - 'indexes' => array( - 'profile_list_modified_idx' => array('modified'), - 'profile_list_tag_idx' => array('tag'), - 'profile_list_tagger_tag_idx' => array('tagger', 'tag'), - 'profile_list_tagged_count_idx' => array('tagged_count'), - 'profile_list_subscriber_count_idx' => array('subscriber_count'), - ), -); - -$schema['profile_tag_inbox'] = array( - 'description' => 'Many-many table listing notices associated with people tags.', - 'fields' => array( - 'profile_tag_id' => array('type' => 'int', 'not null' => true, 'description' => 'people tag receiving the message'), - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice received'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice was created'), - ), - 'primary key' => array('profile_tag_id', 'notice_id'), - 'foreign keys' => array( - 'profile_tag_inbox_profile_list_id_fkey' => array('profile_list', array('profile_tag_id' => 'id')), - 'profile_tag_inbox_notice_id_fkey' => array('notice', array('notice_id' => 'id')), - ), - 'indexes' => array( - 'profile_tag_inbox_created_idx' => array('created'), - 'profile_tag_inbox_profile_tag_id_idx' => array('profile_tag_id'), - ), -); - -$schema['profile_tag_subscription'] = array( - 'fields' => array( - 'profile_tag_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile_tag'), - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), - - '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'), - ), - 'primary key' => array('profile_tag_id', 'profile_id'), - 'foreign keys' => array( - 'profile_tag_subscription_profile_list_id_fkey' => array('profile_list', array('profile_tag_id' => 'id')), - 'profile_tag_subscription_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - ), - 'indexes' => array( - // @fixme probably we want a (profile_id, created) index here? - 'profile_tag_subscription_profile_id_idx' => array('profile_id'), - 'profile_tag_subscription_created_idx' => array('created'), - ), -); - -$schema['profile_block'] = array( - 'fields' => array( - 'blocker' => array('type' => 'int', 'not null' => true, 'description' => 'user making the block'), - 'blocked' => array('type' => 'int', 'not null' => true, 'description' => 'profile that is blocked'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date of blocking'), - ), - 'foreign keys' => array( - 'profile_block_blocker_fkey' => array('user', array('blocker' => 'id')), - 'profile_block_blocked_fkey' => array('profile', array('blocked' => 'id')), - ), - 'primary key' => array('blocker', 'blocked'), -); - -$schema['user_group'] = array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - - 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'nickname for addressing'), - 'fullname' => array('type' => 'varchar', 'length' => 255, 'description' => 'display name'), - 'homepage' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL, cached so we dont regenerate'), - 'description' => array('type' => 'text', 'description' => 'group description'), - 'location' => array('type' => 'varchar', 'length' => 255, 'description' => 'related physical location, if any'), - - 'original_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'original size logo'), - 'homepage_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'homepage (profile) size logo'), - 'stream_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'stream-sized logo'), - 'mini_logo' => array('type' => 'varchar', 'length' => 255, 'description' => 'mini logo'), - - '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'), - - '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'), - 'force_scope' => array('type' => 'int', 'size' => 'tiny', 'description' => '0=never,1=sometimes,-1=always'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'user_group_uri_key' => array('uri'), - ), - 'indexes' => array( - 'user_group_nickname_idx' => array('nickname'), - ), -); - -$schema['group_member'] = array( - 'fields' => array( - 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'), - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), - 'is_admin' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'is this user an admin?'), - - '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'), - ), - 'primary key' => array('group_id', 'profile_id'), - 'foreign keys' => array( - 'group_member_group_id_fkey' => array('user_group', array('group_id' => 'id')), - 'group_member_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - ), - 'indexes' => array( - // @fixme probably we want a (profile_id, created) index here? - 'group_member_profile_id_idx' => array('profile_id'), - 'group_member_created_idx' => array('created'), - ), -); - -$schema['related_group'] = array( - // @fixme description for related_group? - 'fields' => array( - 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'), - 'related_group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'), - - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), - ), - 'primary key' => array('group_id', 'related_group_id'), - 'foreign keys' => array( - 'related_group_group_id_fkey' => array('user_group', array('group_id' => 'id')), - 'related_group_related_group_id_fkey' => array('user_group', array('related_group_id' => 'id')), - ), -); - -$schema['group_inbox'] = array( - 'description' => 'Many-many table listing notices posted to a given group, or which groups a given notice was posted to.', - 'fields' => array( - 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group receiving the message'), - 'notice_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice received'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice was created'), - ), - 'primary key' => array('group_id', 'notice_id'), - 'foreign keys' => array( - 'group_inbox_group_id_fkey' => array('user_group', array('group_id' => 'id')), - 'group_inbox_notice_id_fkey' => array('notice', array('notice_id' => 'id')), - ), - 'indexes' => array( - 'group_inbox_created_idx' => array('created'), - 'group_inbox_notice_id_idx' => array('notice_id'), - ), -); - -$schema['file'] = array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true), - 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'destination URL after following redirections'), - 'mimetype' => array('type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'), - 'size' => array('type' => 'int', 'description' => 'size of resource when available'), - 'title' => array('type' => 'varchar', 'length' => 255, 'description' => 'title of resource when available'), - 'date' => array('type' => 'int', 'description' => 'date of resource according to http query'), - 'protected' => array('type' => 'int', 'description' => 'true when URL is private (needs login)'), - 'filename' => array('type' => 'varchar', 'length' => 255, 'description' => 'if a local file, name of the file'), - - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'file_url_key' => array('url'), - ), -); - -$schema['file_oembed'] = array( - 'fields' => array( - 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'oEmbed for that URL/file'), - 'version' => array('type' => 'varchar', 'length' => 20, 'description' => 'oEmbed spec. version'), - 'type' => array('type' => 'varchar', 'length' => 20, 'description' => 'oEmbed type: photo, video, link, rich'), - 'mimetype' => array('type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'), - 'provider' => array('type' => 'varchar', 'length' => 50, 'description' => 'name of this oEmbed provider'), - 'provider_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of this oEmbed provider'), - 'width' => array('type' => 'int', 'description' => 'width of oEmbed resource when available'), - 'height' => array('type' => 'int', 'description' => 'height of oEmbed resource when available'), - 'html' => array('type' => 'text', 'description' => 'html representation of this oEmbed resource when applicable'), - 'title' => array('type' => 'varchar', 'length' => 255, 'description' => 'title of oEmbed resource when available'), - 'author_name' => array('type' => 'varchar', 'length' => 50, 'description' => 'author name for this oEmbed resource'), - 'author_url' => array('type' => 'varchar', 'length' => 255, 'description' => 'author URL for this oEmbed resource'), - 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL for this oEmbed resource when applicable (photo, link)'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('file_id'), - 'foreign keys' => array( - 'file_oembed_file_id_fkey' => array('file', array('file_id' => 'id')), - ), -); - -$schema['file_redirection'] = array( - 'fields' => array( - 'url' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'short URL (or any other kind of redirect) for file (id)'), - 'file_id' => array('type' => 'int', 'description' => 'short URL for what URL/file'), - 'redirections' => array('type' => 'int', 'description' => 'redirect count'), - 'httpcode' => array('type' => 'int', 'description' => 'HTTP status code (20x, 30x, etc.)'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('url'), - 'foreign keys' => array( - 'file_redirection_file_id_fkey' => array('file' => array('file_id' => 'id')), - ), -); - -$schema['file_thumbnail'] = array( - 'fields' => array( - 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'thumbnail for what URL/file'), - 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of thumbnail'), - 'width' => array('type' => 'int', 'description' => 'width of thumbnail'), - 'height' => array('type' => 'int', 'description' => 'height of thumbnail'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('file_id'), - 'foreign keys' => array( - 'file_thumbnail_file_id_fkey' => array('file', array('file_id' => 'id')), - ), - 'unique keys' => array( - 'file_thumbnail_url_key' => array('url'), - ), -); - -$schema['file_to_post'] = array( - 'fields' => array( - 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of URL/file'), - 'post_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of the notice it belongs to'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('file_id', 'post_id'), - 'foreign keys' => array( - 'file_to_post_file_id_fkey' => array('file', array('file_id' => 'id')), - 'file_to_post_post_id_fkey' => array('notice', array('post_id' => 'id')), - ), - 'indexes' => array( - 'post_id_idx' => array('post_id'), - ), -); - -$schema['group_block'] = array( - 'fields' => array( - 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group profile is blocked from'), - 'blocked' => array('type' => 'int', 'not null' => true, 'description' => 'profile that is blocked'), - 'blocker' => array('type' => 'int', 'not null' => true, 'description' => 'user making the block'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date of blocking'), - ), - 'primary key' => array('group_id', 'blocked'), - 'foreign keys' => array( - 'group_block_group_id_fkey' => array('user_group', array('group_id' => 'id')), - 'group_block_blocked_fkey' => array('profile', array('blocked' => 'id')), - 'group_block_blocker_fkey' => array('user', array('blocker' => 'id')), - ), -); - -$schema['group_alias'] = array( - 'fields' => array( - 'alias' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'additional nickname for the group'), - 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group profile is blocked from'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date alias was created'), - ), - 'primary key' => array('alias'), - 'foreign keys' => array( - 'group_alias_group_id_fkey' => array('user_group', array('group_id' => 'id')), - ), - 'indexes' => array( - 'group_alias_group_id_idx' => array('group_id'), - ), -); - -$schema['session'] = array( - 'fields' => array( - 'id' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'session ID'), - 'session_data' => array('type' => 'text', 'description' => 'session data'), - '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'), - ), - 'primary key' => array('id'), - 'indexes' => array( - 'session_modified_idx' => array('modified'), - ), -); - -$schema['deleted_notice'] = array( - 'fields' => array( - 'id' => array('type' => 'int', 'not null' => true, 'description' => 'identity of notice'), - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'author of the notice'), - 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'), - 'deleted' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'deleted_notice_uri_key' => array('uri'), - ), - 'indexes' => array( - 'deleted_notice_profile_id_idx' => array('profile_id'), - ), -); - -$schema['config'] = array( - 'fields' => array( - 'section' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'default' => '', 'description' => 'configuration section'), - 'setting' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'default' => '', 'description' => 'configuration setting'), - 'value' => array('type' => 'varchar', 'length' => 255, 'description' => 'configuration value'), - ), - 'primary key' => array('section', 'setting'), -); - -$schema['profile_role'] = array( - 'fields' => array( - 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'account having the role'), - 'role' => array('type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'string representing the role'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the role was granted'), - ), - 'primary key' => array('profile_id', 'role'), - 'foreign keys' => array( - 'profile_role_profile_id_fkey' => array('profile', array('profile_id' => 'id')), - ), -); - -$schema['location_namespace'] = array( - 'fields' => array( - 'id' => array('type' => 'int', 'not null' => true, 'description' => 'identity for this namespace'), - 'description' => array('type' => 'varchar', 'length' => 255, 'description' => 'description of the namespace'), - 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the record was created'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('id'), -); - -$schema['login_token'] = array( - 'fields' => array( - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user owning this token'), - 'token' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'token useable for logging in'), - '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'), - ), - 'primary key' => array('user_id'), - 'foreign keys' => array( - 'login_token_user_id_fkey' => array('user', array('user_id' => 'id')), - ), -); - -$schema['user_location_prefs'] = array( - 'fields' => array( - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user who has the preference'), - 'share_location' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Whether to share location data'), - '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'), - ), - 'primary key' => array('user_id'), - 'foreign keys' => array( - 'user_location_prefs_user_id_fkey' => array('user', array('user_id' => 'id')), - ), -); - -$schema['inbox'] = array( - 'fields' => array( - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user receiving the notice'), - 'notice_ids' => array('type' => 'blob', 'description' => 'packed list of notice ids'), - ), - 'primary key' => array('user_id'), - 'foreign keys' => array( - 'inbox_user_id_fkey' => array('user', array('user_id' => 'id')), - ), -); - -// @fixme possibly swap this for a more general prefs table? -$schema['user_im_prefs'] = array( - 'fields' => array( - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user'), - 'screenname' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'screenname on this service'), - 'transport' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'description' => 'transport (ex xmpp, aim)'), - 'notify' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Notify when a new notice is sent'), - 'replies' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Send replies from people not subscribed to'), - 'microid' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 1, 'description' => 'Publish a MicroID'), - 'updatefrompresence' => array('type' => 'int', 'size' => 'tiny', 'not null' => true, 'default' => 0, 'description' => 'Send replies from people not subscribed to.'), - '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'), - ), - 'primary key' => array('user_id', 'transport'), - 'unique keys' => array( - 'transport_screenname_key' => array('transport', 'screenname'), - ), - 'foreign keys' => array( - 'user_im_prefs_user_id_fkey' => array('user', array('user_id' => 'id')), - ), -); - -$schema['conversation'] = array( - 'fields' => array( - 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'), - 'uri' => array('type' => 'varchar', 'length' => 225, 'description' => 'URI of the conversation'), - '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'), - ), - 'primary key' => array('id'), - 'unique keys' => array( - 'conversation_uri_key' => array('uri'), - ), -); - -$schema['local_group'] = array( - 'description' => 'Record for a user group on the local site, with some additional info not in user_group', - 'fields' => array( - 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group represented'), - 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'group represented'), - - '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'), - ), - 'primary key' => array('group_id'), - 'foreign keys' => array( - 'local_group_group_id_fkey' => array('user_group', array('group_id' => 'id')), - ), - 'unique keys' => array( - 'local_group_nickname_key' => array('nickname'), - ), -); - -$schema['user_urlshortener_prefs'] = array( - 'fields' => array( - 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user'), - 'urlshorteningservice' => array('type' => 'varchar', 'length' => 50, 'default' => 'internal', 'description' => 'service to use for auto-shortening URLs'), - 'maxurllength' => array('type' => 'int', 'not null' => true, 'description' => 'urls greater than this length will be shortened, 0 = always, null = never'), - 'maxnoticelength' => array('type' => 'int', 'not null' => true, 'description' => 'notices with content greater than this value will have all urls shortened, 0 = always, null = never'), - - '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'), - ), - 'primary key' => array('user_id'), - 'foreign keys' => array( - 'user_urlshortener_prefs_user_id_fkey' => array('user', array('user_id' => 'id')), - ), -); - -$schema['schema_version'] = array( - 'description' => 'To avoid checking database structure all the time, we store a checksum of the expected schema info for each table here. If it has not changed since the last time we checked the table, we can leave it as is.', - 'fields' => array( - 'table_name' => array('type' => 'varchar', 'length' => '64', 'not null' => true, 'description' => 'Table name'), - 'checksum' => array('type' => 'varchar', 'length' => '64', 'not null' => true, 'description' => 'Checksum of schema array; a mismatch indicates we should check the table more thoroughly.'), - 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), - ), - 'primary key' => array('table_name'), -); - -$schema['group_join_queue'] = Group_join_queue::schemaDef(); - -$schema['subscription_queue'] = Subscription_queue::schemaDef(); - -$schema['oauth_token_association'] = Oauth_token_association::schemaDef(); diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index a2afe91f9a..023ff8e86d 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -576,6 +576,33 @@ class OpenIDPlugin extends Plugin new ColumnDef('created', 'datetime', null, false), new ColumnDef('modified', 'timestamp'))); + + /* These are used by JanRain OpenID library */ + + $schema->ensureTable('oid_associations', + array( + 'fields' => array( + 'server_url' => array('type' => 'blob', 'not null' => true), + 'handle' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'default' => ''), // character set latin1, + 'secret' => array('type' => 'blob'), + 'issued' => array('type' => 'int'), + 'lifetime' => array('type' => 'int'), + 'assoc_type' => array('type' => 'varchar', 'length' => 64), + ), + 'primary key' => array(array('server_url', 255), 'handle'), + )); + $schema->ensureTable('oid_nonces', + array( + 'fields' => array( + 'server_url' => array('type' => 'varchar', 'length' => 2047), + 'timestamp' => array('type' => 'int'), + 'salt' => array('type' => 'char', 'length' => 40), + ), + 'unique keys' => array( + 'oid_nonces_server_url_timestamp_salt_key' => array(array('server_url', 255), 'timestamp', 'salt'), + ), + )); + return true; } From 6ed88dee940e1f873c62742c562d53ef36a16291 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 18:02:29 -0400 Subject: [PATCH 049/118] forgot Group_member::schemaDef() --- classes/Group_member.php | 24 ++++++++++++++++++++++++ db/core.php | 1 + 2 files changed, 25 insertions(+) diff --git a/classes/Group_member.php b/classes/Group_member.php index cc7e4a353e..0477e7629b 100644 --- a/classes/Group_member.php +++ b/classes/Group_member.php @@ -21,6 +21,30 @@ class Group_member extends Managed_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to user_group'), + 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'), + 'is_admin' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'is this user an admin?'), + + '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'), + ), + 'primary key' => array('group_id', 'profile_id'), + 'foreign keys' => array( + 'group_member_group_id_fkey' => array('user_group', array('group_id' => 'id')), + 'group_member_profile_id_fkey' => array('profile', array('profile_id' => 'id')), + ), + 'indexes' => array( + // @fixme probably we want a (profile_id, created) index here? + 'group_member_profile_id_idx' => array('profile_id'), + 'group_member_created_idx' => array('created'), + ), + ); + } + function pkeyGet($kv) { return Memcached_DataObject::pkeyGet('Group_member', $kv); diff --git a/db/core.php b/db/core.php index dd5c9a7878..5841de43cf 100644 --- a/db/core.php +++ b/db/core.php @@ -65,6 +65,7 @@ $classes = array('Profile', 'User_group', 'Related_group', 'Group_inbox', + 'Group_member', 'File', 'File_oembed', 'File_redirection', From 7c6399a51a3e8a5e602db77ffe6ed7e4ce958825 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 18:03:05 -0400 Subject: [PATCH 050/118] Remove now-unused statusnet.ini --- classes/statusnet.ini | 720 ------------------------------------ classes/statusnet.links.ini | 74 ---- lib/statusnet.php | 7 - 3 files changed, 801 deletions(-) delete mode 100644 classes/statusnet.ini delete mode 100644 classes/statusnet.links.ini diff --git a/classes/statusnet.ini b/classes/statusnet.ini deleted file mode 100644 index c5c126a133..0000000000 --- a/classes/statusnet.ini +++ /dev/null @@ -1,720 +0,0 @@ -[avatar] -profile_id = 129 -original = 17 -width = 129 -height = 129 -mediatype = 130 -filename = 2 -url = 2 -created = 142 -modified = 384 - -[avatar__keys] -profile_id = K -width = K -height = K -url = U - -[config] -section = 130 -setting = 130 -value = 2 - -[config__keys] -section = K -setting = K - -[confirm_address] -code = 130 -user_id = 129 -address = 130 -address_extra = 130 -address_type = 130 -claimed = 14 -sent = 14 -modified = 384 - -[confirm_address__keys] -code = K - -[consumer] -consumer_key = 130 -consumer_secret = 130 -seed = 130 -created = 142 -modified = 384 - -[consumer__keys] -consumer_key = K - -[conversation] -id = 129 -uri = 2 -created = 142 -modified = 384 - -[conversation__keys] -id = N -uri = U - -[deleted_notice] -id = 129 -profile_id = 129 -uri = 2 -created = 142 -deleted = 142 - -[deleted_notice__keys] -id = K -uri = U - -[design] -id = 129 -backgroundcolor = 1 -contentcolor = 1 -sidebarcolor = 1 -textcolor = 1 -linkcolor = 1 -backgroundimage = 2 -disposition = 17 - -[design__keys] -id = N - -[fave] -notice_id = 129 -user_id = 129 -modified = 384 - -[fave__keys] -notice_id = K -user_id = K - -[file] -id = 129 -url = 2 -mimetype = 2 -size = 1 -title = 2 -date = 1 -protected = 1 -filename = 2 -modified = 384 - -[file__keys] -id = N -url = U - -[file_oembed] -file_id = 129 -version = 2 -type = 2 -mimetype = 2 -provider = 2 -provider_url = 2 -width = 1 -height = 1 -html = 34 -title = 2 -author_name = 2 -author_url = 2 -url = 2 -modified = 384 - -[file_oembed__keys] -file_id = K - -[file_redirection] -url = 130 -file_id = 1 -redirections = 1 -httpcode = 1 -modified = 384 - -[file_redirection__keys] -url = K - -[file_thumbnail] -file_id = 129 -url = 2 -width = 1 -height = 1 -modified = 384 - -[file_thumbnail__keys] -file_id = K -url = U - -[file_to_post] -file_id = 129 -post_id = 129 -modified = 384 - -[file_to_post__keys] -file_id = K -post_id = K - -[foreign_link] -user_id = 129 -foreign_id = 129 -service = 129 -credentials = 2 -noticesync = 145 -friendsync = 145 -profilesync = 145 -last_noticesync = 14 -last_friendsync = 14 -created = 142 -modified = 384 - -[foreign_link__keys] -user_id = K -foreign_id = K -service = K - -[foreign_service] -id = 129 -name = 130 -description = 2 -created = 142 -modified = 384 - -[foreign_service__keys] -id = K -name = U - -[foreign_subscription] -service = 129 -subscriber = 129 -subscribed = 129 -created = 142 - -[foreign_subscription__keys] -service = K -subscriber = K -subscribed = K - -[foreign_user] -id = 129 -service = 129 -uri = 130 -nickname = 2 -created = 142 -modified = 384 - -[foreign_user__keys] -id = K -service = K -uri = U - -[group_alias] -alias = 130 -group_id = 129 -modified = 384 - -[group_alias__keys] -alias = K - -[group_block] -group_id = 129 -blocked = 129 -blocker = 129 -modified = 384 - -[group_block__keys] -group_id = K -blocked = K - -[group_inbox] -group_id = 129 -notice_id = 129 -created = 142 - -[group_inbox__keys] -group_id = K -notice_id = K - -[group_member] -group_id = 129 -profile_id = 129 -is_admin = 17 -created = 142 -modified = 384 - -[group_member__keys] -group_id = K -profile_id = K - -[inbox] -user_id = 129 -notice_ids = 66 - -[inbox__keys] -user_id = K - -[invitation] -code = 130 -user_id = 129 -address = 130 -address_type = 130 -created = 142 -registered_user_id = 1 - -[invitation__keys] -code = K - -[local_group] -group_id = 129 -nickname = 2 -created = 142 -modified = 384 - -[local_group__keys] -group_id = K -nickname = U - -[location_namespace] -id = 129 -description = 2 -created = 142 -modified = 384 - -[location_namespace__keys] -id = K - -[login_token] -user_id = 129 -token = 130 -created = 142 -modified = 384 - -[login_token__keys] -user_id = K - -[message] -id = 129 -uri = 2 -from_profile = 129 -to_profile = 129 -content = 34 -rendered = 34 -url = 2 -created = 142 -modified = 384 -source = 2 - -[message__keys] -id = N - -[nonce] -consumer_key = 130 -tok = 2 -nonce = 130 -ts = 142 -created = 142 -modified = 384 - -[nonce__keys] -consumer_key = K -nonce = K -ts = K - -[notice] -id = 129 -profile_id = 129 -uri = 2 -content = 34 -rendered = 34 -url = 2 -created = 142 -modified = 384 -reply_to = 1 -is_local = 17 -source = 2 -conversation = 1 -lat = 1 -lon = 1 -location_id = 1 -location_ns = 1 -repeat_of = 1 -object_type = 2 -scope = 1 - -[notice__keys] -id = N - -[notice_inbox] -user_id = 129 -notice_id = 129 -created = 142 -source = 17 - -[notice_inbox__keys] -user_id = K -notice_id = K - -[notice_source] -code = 130 -name = 130 -url = 130 -created = 142 -modified = 384 - -[notice_source__keys] -code = K - -[notice_tag] -tag = 130 -notice_id = 129 -created = 142 - -[notice_tag__keys] -tag = K -notice_id = K - -[oauth_application] -id = 129 -owner = 129 -consumer_key = 130 -name = 130 -description = 2 -icon = 130 -source_url = 2 -organization = 2 -homepage = 2 -callback_url = 2 -type = 17 -access_type = 17 -created = 142 -modified = 384 - -[oauth_application__keys] -id = N -name = U - -[oauth_application_user] -profile_id = 129 -application_id = 129 -access_type = 17 -token = 2 -created = 142 -modified = 384 - -[oauth_application_user__keys] -profile_id = K -application_id = K - -[oauth_token_association] -profile_id = 129 -application_id = 129 -token = 130 -created = 142 -modified = 384 - -[oauth_token_association__keys] -profile_id = K -application_id = K -token = K - -[profile] -id = 129 -nickname = 130 -fullname = 2 -profileurl = 2 -homepage = 2 -bio = 34 -location = 2 -lat = 1 -lon = 1 -location_id = 1 -location_ns = 1 -created = 142 -modified = 384 - -[profile__keys] -id = N - -[profile_block] -blocker = 129 -blocked = 129 -modified = 384 - -[profile_block__keys] -blocker = K -blocked = K - -[profile_role] -profile_id = 129 -role = 130 -created = 142 - -[profile_role__keys] -profile_id = K -role = K - -[profile_tag] -tagger = 129 -tagged = 129 -tag = 130 -modified = 384 - -[profile_tag__keys] -tagger = K -tagged = K -tag = K - -[profile_list] -id = 129 -tagger = 129 -tag = 130 -description = 34 -private = 17 -created = 142 -modified = 384 -uri = 130 -mainpage = 130 -tagged_count = 129 -subscriber_count = 129 - -[profile_list__keys] -id = U -tagger = K -tag = K - -[profile_tag_subscription] -profile_tag_id = 129 -profile_id = 129 -created = 142 -modified = 384 - -[profile_tag_subscription__keys] -profile_tag_id = K -profile_id = K - -[queue_item] -id = 129 -frame = 194 -transport = 130 -created = 142 -claimed = 14 - -[queue_item__keys] -id = N - -[related_group] -group_id = 129 -related_group_id = 129 -created = 142 - -[related_group__keys] -group_id = K -related_group_id = K - -[remember_me] -code = 130 -user_id = 129 -modified = 384 - -[remember_me__keys] -code = K - -[remote_profile] -id = 129 -uri = 2 -postnoticeurl = 2 -updateprofileurl = 2 -created = 142 -modified = 384 - -[remote_profile__keys] -id = K -uri = U - -[reply] -notice_id = 129 -profile_id = 129 -modified = 142 -;modified = 384 ; skipping the mysql_timestamp mode so we can override its setting -replied_id = 1 - -[reply__keys] -notice_id = K -profile_id = K - -[schema_version] -table_name = 130 -checksum = 130 -modified = 384 - -[schema_version__keys] -table_name = K - -[session] -id = 130 -session_data = 34 -created = 142 -modified = 384 - -[session__keys] -id = K - -[sms_carrier] -id = 129 -name = 2 -email_pattern = 130 -created = 142 -modified = 384 - -[sms_carrier__keys] -id = K -name = U - -[subscription] -subscriber = 129 -subscribed = 129 -jabber = 17 -sms = 17 -token = 2 -secret = 2 -created = 142 -modified = 384 - -[subscription__keys] -subscriber = K -subscribed = K - -[token] -consumer_key = 130 -tok = 130 -secret = 130 -type = 145 -state = 17 -verifier = 2 -verified_callback = 2 -created = 142 -modified = 384 - -[token__keys] -consumer_key = K -tok = K - -[user] -id = 129 -nickname = 2 -password = 2 -email = 2 -incomingemail = 2 -emailnotifysub = 17 -emailnotifyfav = 17 -emailnotifynudge = 17 -emailnotifymsg = 17 -emailnotifyattn = 17 -emailmicroid = 17 -language = 2 -timezone = 2 -emailpost = 17 -sms = 2 -carrier = 1 -smsnotify = 17 -smsreplies = 17 -smsemail = 2 -uri = 2 -autosubscribe = 17 -subscribe_policy = 17 -urlshorteningservice = 2 -inboxed = 17 -design_id = 1 -viewdesigns = 17 -private_stream = 17 -created = 142 -modified = 384 - -[user__keys] -id = K -nickname = U -email = U -incomingemail = U -sms = U -uri = U - -[user_group] -id = 129 -nickname = 2 -fullname = 2 -homepage = 2 -description = 34 -location = 2 -original_logo = 2 -homepage_logo = 2 -stream_logo = 2 -mini_logo = 2 -design_id = 1 -created = 142 -modified = 384 -uri = 2 -mainpage = 2 -join_policy = 1 -force_scope = 1 - -[user_group__keys] -id = N - -[user_openid] -canonical = 130 -display = 130 -user_id = 129 -created = 142 -modified = 384 - -[user_openid__keys] -canonical = K -display = U - -[user_openid_trustroot] -trustroot = 130 -user_id = 129 -created = 142 -modified = 384 - -[user_openid__keys] -trustroot = K -user_id = K - -[user_location_prefs] -user_id = 129 -share_location = 17 -created = 142 -modified = 384 - -[user_location_prefs__keys] -user_id = K - -[user_im_prefs] -user_id = 129 -screenname = 130 -transport = 130 -notify = 17 -replies = 17 -microid = 17 -updatefrompresence = 17 -created = 142 -modified = 384 - -[user_im_prefs__keys] -user_id = K -transport = K -; There's another unique index on (transport, screenname) -; but we have no way to represent a compound index other than -; the primary key in here. To ensure proper cache purging, -; we need to tweak the class. - -[user_urlshortener_prefs] -user_id = 129 -urlshorteningservice = 2 -maxurllength = 129 -maxnoticelength = 129 -created = 142 -modified = 384 - -[user_urlshortener_prefs__keys] -user_id = K diff --git a/classes/statusnet.links.ini b/classes/statusnet.links.ini deleted file mode 100644 index 17a8c40085..0000000000 --- a/classes/statusnet.links.ini +++ /dev/null @@ -1,74 +0,0 @@ -[avatar] -profile_id = profile:id - -[user] -id = profile:id -carrier = sms_carrier:id - -[remote_profile] -id = profile:id - -[notice] -profile_id = profile:id -reply_to = notice:id -profile_id = profile_tag:tagged - -[reply] -notice_id = notice:id -profile_id = profile:id - -[token] -consumer_key = consumer:consumer_key - -; Compatibility hack for PHP 5.3 -; This entry has been moved to the class definition, as commas are no longer -; considered valid in keys, causing parse_ini_file() to reject the whole file. -;[nonce] -;consumer_key,token = token:consumer_key,token - -[confirm_address] -user_id = user:id - -[remember_me] -user_id = user:id - -[queue_item] -notice_id = notice:id - -[subscription] -subscriber = profile:id -subscribed = profile:id - -[fave] -notice_id = notice:id -user_id = user:id - -[file_oembed] -file_id = file:id - -[file_redirection] -file_id = file:id - -[file_thumbnail] -file_id = file:id - -[file_to_post] -file_id = file:id -post_id = notice:id - -[profile_list] -tagger = profile:id - -[profile_tag] -tagger = profile:id -tagged = profile:id -; in class definition: -;tag,tagger = profile_list:tag,tagger - -[profile_list] -tagger = profile:id - -[profile_tag_subscription] -profile_tag_id = profile_list:id -profile_id = profile:id - diff --git a/lib/statusnet.php b/lib/statusnet.php index 73185b1692..ce0d41e51e 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -362,13 +362,6 @@ class StatusNet $config_files); } - // Fixup for statusnet.ini - $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1); - - if ($_db_name != 'statusnet' && !array_key_exists('ini_'.$_db_name, $config['db'])) { - $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/statusnet.ini'; - } - // Backwards compatibility if (array_key_exists('memcached', $config)) { if ($config['memcached']['enabled']) { From feb9030fb97fb08bb4ba0f8bdd7f2910d7a4b84a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 18:05:37 -0400 Subject: [PATCH 051/118] Remove sequenceKey() since we now use Managed_DataObject --- classes/Confirm_address.php | 3 --- classes/File_oembed.php | 5 ----- classes/File_thumbnail.php | 5 ----- classes/Inbox.php | 5 ----- classes/Login_token.php | 13 ------------- classes/Remember_me.php | 5 ----- classes/User_im_prefs.php | 13 ------------- 7 files changed, 49 deletions(-) diff --git a/classes/Confirm_address.php b/classes/Confirm_address.php index 7f59cab430..056df836fc 100644 --- a/classes/Confirm_address.php +++ b/classes/Confirm_address.php @@ -26,9 +26,6 @@ class Confirm_address extends Managed_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function sequenceKey() - { return array(false, false); } - public static function schemaDef() { return array( diff --git a/classes/File_oembed.php b/classes/File_oembed.php index 56afdde197..ae46e61bd4 100644 --- a/classes/File_oembed.php +++ b/classes/File_oembed.php @@ -79,11 +79,6 @@ class File_oembed extends Managed_DataObject ); } - function sequenceKey() - { - return array(false, false, false); - } - function _getOembed($url) { $parameters = array( 'maxwidth' => common_config('attachments', 'thumb_width'), diff --git a/classes/File_thumbnail.php b/classes/File_thumbnail.php index 1adcd91987..064b454e2d 100644 --- a/classes/File_thumbnail.php +++ b/classes/File_thumbnail.php @@ -63,11 +63,6 @@ class File_thumbnail extends Managed_DataObject ); } - function sequenceKey() - { - return array(false, false, false); - } - /** * Save oEmbed-provided thumbnail data * diff --git a/classes/Inbox.php b/classes/Inbox.php index 6ba40df224..c618ff7aca 100644 --- a/classes/Inbox.php +++ b/classes/Inbox.php @@ -61,11 +61,6 @@ class Inbox extends Managed_DataObject ); } - function sequenceKey() - { - return array(false, false, false); - } - /** * Create a new inbox from existing Notice_inbox stuff */ diff --git a/classes/Login_token.php b/classes/Login_token.php index 3733af66cf..7049c7c7fe 100644 --- a/classes/Login_token.php +++ b/classes/Login_token.php @@ -58,19 +58,6 @@ class Login_token extends Managed_DataObject const TIMEOUT = 120; // seconds after which to timeout the token - /* - DB_DataObject calculates the sequence key(s) by taking the first key returned by the keys() function. - In this case, the keys() function returns user_id as the first key. user_id is not a sequence, but - DB_DataObject's sequenceKey() will incorrectly think it is. Then, since the sequenceKey() is a numeric - type, but is not set to autoincrement in the database, DB_DataObject will create a _seq table and - manage the sequence itself. This is not the correct behavior for the user_id in this class. - So we override that incorrect behavior, and simply say there is no sequence key. - */ - function sequenceKey() - { - return array(false,false); - } - function makeNew($user) { $login_token = Login_token::staticGet('user_id', $user->id); diff --git a/classes/Remember_me.php b/classes/Remember_me.php index ceac155347..6523ad8174 100644 --- a/classes/Remember_me.php +++ b/classes/Remember_me.php @@ -23,11 +23,6 @@ class Remember_me extends Managed_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - function sequenceKey() - { - return array(false, false); - } - public static function schemaDef() { return array( diff --git a/classes/User_im_prefs.php b/classes/User_im_prefs.php index 00b4e65c15..cc9dea608d 100644 --- a/classes/User_im_prefs.php +++ b/classes/User_im_prefs.php @@ -80,19 +80,6 @@ class User_im_prefs extends Managed_DataObject ); } - /* - DB_DataObject calculates the sequence key(s) by taking the first key returned by the keys() function. - In this case, the keys() function returns user_id as the first key. user_id is not a sequence, but - DB_DataObject's sequenceKey() will incorrectly think it is. Then, since the sequenceKey() is a numeric - type, but is not set to autoincrement in the database, DB_DataObject will create a _seq table and - manage the sequence itself. This is not the correct behavior for the user_id in this class. - So we override that incorrect behavior, and simply say there is no sequence key. - */ - function sequenceKey() - { - return array(false,false); - } - /** * We have two compound keys with unique constraints: * (transport, user_id) which is our primary key, and From 0022bb8110e596496edb0009bc1b7a1a005db83d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 18:06:06 -0400 Subject: [PATCH 052/118] fix calls to staticGet() to avoid problems with default args --- lib/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index f3be1d0ddc..ba705eb7fa 100644 --- a/lib/util.php +++ b/lib/util.php @@ -413,7 +413,7 @@ function common_remembered_user() return null; } - $rm = Remember_me::staticGet($code); + $rm = Remember_me::staticGet('code', $code); if (!$rm) { common_log(LOG_WARNING, 'No such remember code: ' . $code); @@ -427,7 +427,7 @@ function common_remembered_user() return null; } - $user = User::staticGet($rm->user_id); + $user = User::staticGet('id', $rm->user_id); if (!$user) { common_log(LOG_WARNING, 'No such user for rememberme: ' . $rm->user_id); From 55d5c9566bee62f2091bcb8b945c87b8edcfc2f0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 18:22:27 -0400 Subject: [PATCH 053/118] remove obsolete .sql files --- db/074to080.sql | 121 ------- db/074to080_pg.sql | 108 ------ db/08to09.sql | 190 ----------- db/08to09_pg.sql | 140 -------- db/095topeopletags.sql | 4 - db/096to097.sql | 26 -- db/beta5tobeta6.sql | 28 -- db/innodb.sql | 2 - db/rc2torc3.sql | 17 - db/rc3torc4.sql | 50 --- db/site_093to094.sql | 13 - db/statusnet.sql | 759 ----------------------------------------- db/statusnet_pg.sql | 649 ----------------------------------- 13 files changed, 2107 deletions(-) delete mode 100644 db/074to080.sql delete mode 100644 db/074to080_pg.sql delete mode 100644 db/08to09.sql delete mode 100644 db/08to09_pg.sql delete mode 100644 db/095topeopletags.sql delete mode 100644 db/096to097.sql delete mode 100644 db/beta5tobeta6.sql delete mode 100644 db/innodb.sql delete mode 100644 db/rc2torc3.sql delete mode 100644 db/rc3torc4.sql delete mode 100644 db/site_093to094.sql delete mode 100644 db/statusnet.sql delete mode 100644 db/statusnet_pg.sql diff --git a/db/074to080.sql b/db/074to080.sql deleted file mode 100644 index e3631e214a..0000000000 --- a/db/074to080.sql +++ /dev/null @@ -1,121 +0,0 @@ -alter table user - add column design_id integer comment 'id of a design' references design(id), - add column viewdesigns tinyint default 1 comment 'whether to view user-provided designs'; - -alter table notice add column - conversation integer comment 'id of root notice in this conversation' references notice (id), - add index notice_conversation_idx (conversation); - -alter table foreign_user - modify column id bigint not null comment 'unique numeric key on foreign service'; - -alter table foreign_link - modify column foreign_id bigint unsigned comment 'link to user on foreign service, if exists'; - -alter table user_group - add column design_id integer comment 'id of a design' references design(id); - -create table file ( - id integer primary key auto_increment, - url varchar(255) comment 'destination URL after following redirections', - mimetype varchar(50) comment 'mime type of resource', - size integer comment 'size of resource when available', - title varchar(255) comment 'title of resource when available', - date integer(11) comment 'date of resource according to http query', - protected integer(1) comment 'true when URL is private (needs login)', - filename varchar(255) comment 'if a local file, name of the file', - modified timestamp comment 'date this record was modified', - - unique(url) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table file_oembed ( - file_id integer primary key comment 'oEmbed for that URL/file' references file (id), - version varchar(20) comment 'oEmbed spec. version', - type varchar(20) comment 'oEmbed type: photo, video, link, rich', - provider varchar(50) comment 'name of this oEmbed provider', - provider_url varchar(255) comment 'URL of this oEmbed provider', - width integer comment 'width of oEmbed resource when available', - height integer comment 'height of oEmbed resource when available', - html text comment 'html representation of this oEmbed resource when applicable', - title varchar(255) comment 'title of oEmbed resource when available', - author_name varchar(50) comment 'author name for this oEmbed resource', - author_url varchar(255) comment 'author URL for this oEmbed resource', - url varchar(255) comment 'URL for this oEmbed resource when applicable (photo, link)', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table file_redirection ( - - url varchar(255) primary key comment 'short URL (or any other kind of redirect) for file (id)', - file_id integer comment 'short URL for what URL/file' references file (id), - redirections integer comment 'redirect count', - httpcode integer comment 'HTTP status code (20x, 30x, etc.)', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table file_thumbnail ( - - file_id integer primary key comment 'thumbnail for what URL/file' references file (id), - url varchar(255) comment 'URL of thumbnail', - width integer comment 'width of thumbnail', - height integer comment 'height of thumbnail', - modified timestamp comment 'date this record was modified', - - unique(url) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table file_to_post ( - - file_id integer comment 'id of URL/file' references file (id), - post_id integer comment 'id of the notice it belongs to' references notice (id), - modified timestamp comment 'date this record was modified', - - constraint primary key (file_id, post_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table design ( - id integer primary key auto_increment comment 'design ID', - backgroundcolor integer comment 'main background color', - contentcolor integer comment 'content area background color', - sidebarcolor integer comment 'sidebar background color', - textcolor integer comment 'text color', - linkcolor integer comment 'link color', - backgroundimage varchar(255) comment 'background image, if any', - disposition tinyint default 1 comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table group_block ( - group_id integer not null comment 'group profile is blocked from' references user_group (id), - blocked integer not null comment 'profile that is blocked' references profile (id), - blocker integer not null comment 'user making the block' references user (id), - modified timestamp comment 'date of blocking', - - constraint primary key (group_id, blocked) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table group_alias ( - - alias varchar(64) primary key comment 'additional nickname for the group', - group_id integer not null comment 'group profile is blocked from' references user_group (id), - modified timestamp comment 'date alias was created', - - index group_alias_group_id_idx (group_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table session ( - - id varchar(32) primary key comment 'session ID', - session_data text comment 'session data', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - index session_modified_idx (modified) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - diff --git a/db/074to080_pg.sql b/db/074to080_pg.sql deleted file mode 100644 index 0a7171ae56..0000000000 --- a/db/074to080_pg.sql +++ /dev/null @@ -1,108 +0,0 @@ -BEGIN; -create sequence design_seq; -create table design ( - id bigint default nextval('design_seq') /* comment 'design ID'*/, - backgroundcolor integer /* comment 'main background color'*/ , - contentcolor integer /*comment 'content area background color'*/ , - sidebarcolor integer /*comment 'sidebar background color'*/ , - textcolor integer /*comment 'text color'*/ , - linkcolor integer /*comment 'link color'*/, - backgroundimage varchar(255) /*comment 'background image, if any'*/, - disposition int default 1 /*comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image'*/, - primary key (id) -); -alter table "user" - add column design_id integer references design(id); -alter table "user" - add column viewdesigns integer default 1; - -alter table notice add column - conversation integer references notice (id); - -create index notice_conversation_idx on notice(conversation); - -alter table foreign_user - alter column id TYPE bigint; - -alter table foreign_user alter column id set not null; - -alter table foreign_link - alter column foreign_id TYPE bigint; - -alter table user_group - add column design_id integer; - -/*attachments and URLs stuff */ -create sequence file_seq; -create table file ( - id bigint default nextval('file_seq') primary key /* comment 'unique identifier' */, - url varchar(255) unique, - mimetype varchar(50), - size integer, - title varchar(255), - date integer, - protected integer, - filename text /* comment 'if a local file, name of the file' */, - modified timestamp default CURRENT_TIMESTAMP /* comment 'date this record was modified'*/ -); - -create sequence file_oembed_seq; -create table file_oembed ( - file_id bigint default nextval('file_oembed_seq') primary key /* comment 'unique identifier' */, - version varchar(20), - type varchar(20), - provider varchar(50), - provider_url varchar(255), - width integer, - height integer, - html text, - title varchar(255), - author_name varchar(50), - author_url varchar(255), - url varchar(255) -); - -create sequence file_redirection_seq; -create table file_redirection ( - url varchar(255) primary key, - file_id bigint, - redirections integer, - httpcode integer -); - -create sequence file_thumbnail_seq; -create table file_thumbnail ( - file_id bigint primary key, - url varchar(255) unique, - width integer, - height integer -); -create sequence file_to_post_seq; -create table file_to_post ( - file_id bigint, - post_id bigint, - - primary key (file_id, post_id) -); - - -create table group_block ( - group_id integer not null /* comment 'group profile is blocked from' */ references user_group (id), - blocked integer not null /* comment 'profile that is blocked' */references profile (id), - blocker integer not null /* comment 'user making the block'*/ references "user" (id), - modified timestamp /* comment 'date of blocking'*/ , - - primary key (group_id, blocked) -); - -create table group_alias ( - - alias varchar(64) /* comment 'additional nickname for the group'*/ , - group_id integer not null /* comment 'group profile is blocked from'*/ references user_group (id), - modified timestamp /* comment 'date alias was created'*/, - primary key (alias) - -); -create index group_alias_group_id_idx on group_alias (group_id); - -COMMIT; \ No newline at end of file diff --git a/db/08to09.sql b/db/08to09.sql deleted file mode 100644 index ba6f382005..0000000000 --- a/db/08to09.sql +++ /dev/null @@ -1,190 +0,0 @@ -alter table notice - modify column content text comment 'update content', - add column lat decimal(10,7) comment 'latitude', - add column lon decimal(10,7) comment 'longitude', - add column location_id integer comment 'location id if possible', - add column location_ns integer comment 'namespace for location', - add column repeat_of integer comment 'notice this is a repeat of' references notice (id), - drop index notice_profile_id_idx, - add index notice_profile_id_idx (profile_id,created,id), - add index notice_repeatof_idx (repeat_of); - -alter table message - modify column content text comment 'message content'; - -alter table profile - modify column bio text comment 'descriptive biography', - add column lat decimal(10,7) comment 'latitude', - add column lon decimal(10,7) comment 'longitude', - add column location_id integer comment 'location id if possible', - add column location_ns integer comment 'namespace for location'; - -alter table user_group - modify column description text comment 'group description'; - -alter table file_oembed - add column mimetype varchar(50) comment 'mime type of resource'; - -alter table fave - drop index fave_user_id_idx, - add index fave_user_id_idx (user_id,modified); - -alter table subscription - drop index subscription_subscriber_idx, - add index subscription_subscriber_idx (subscriber,created), - drop index subscription_subscribed_idx, - add index subscription_subscribed_idx (subscribed,created); - -create table deleted_notice ( - - id integer primary key comment 'identity of notice', - profile_id integer not null comment 'author of the notice', - uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI', - created datetime not null comment 'date the notice record was created', - deleted datetime not null comment 'date the notice record was created', - - index deleted_notice_profile_id_idx (profile_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table config ( - - section varchar(32) comment 'configuration section', - setting varchar(32) comment 'configuration setting', - value varchar(255) comment 'configuration value', - - constraint primary key (section, setting) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table profile_role ( - - profile_id integer not null comment 'account having the role' references profile (id), - role varchar(32) not null comment 'string representing the role', - created datetime not null comment 'date the role was granted', - - constraint primary key (profile_id, role) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table location_namespace ( - - id integer primary key comment 'identity for this namespace', - description varchar(255) comment 'description of the namespace', - created datetime not null comment 'date the record was created', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table login_token ( - user_id integer not null comment 'user owning this token' references user (id), - token char(32) not null comment 'token useable for logging in', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table user_location_prefs ( - user_id integer not null comment 'user who has the preference' references user (id), - share_location tinyint default 1 comment 'Whether to share location data', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table queue_item_new ( - id integer auto_increment primary key comment 'unique identifier', - frame blob not null comment 'data: object reference or opaque string', - transport varchar(8) not null comment 'queue for what? "email", "jabber", "sms", "irc", ...', - created datetime not null comment 'date this record was created', - claimed datetime comment 'date this item was claimed', - - index queue_item_created_idx (created) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -insert into queue_item_new (frame,transport,created,claimed) - select notice_id,transport,created,claimed from queue_item; -alter table queue_item rename to queue_item_old; -alter table queue_item_new rename to queue_item; - -alter table consumer - add consumer_secret varchar(255) not null comment 'secret value'; - -alter table token - add verifier varchar(255) comment 'verifier string for OAuth 1.0a', - add verified_callback varchar(255) comment 'verified callback URL for OAuth 1.0a'; - -create table oauth_application ( - id integer auto_increment primary key comment 'unique identifier', - owner integer not null comment 'owner of the application' references profile (id), - consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key), - name varchar(255) not null comment 'name of the application', - description varchar(255) comment 'description of the application', - icon varchar(255) not null comment 'application icon', - source_url varchar(255) comment 'application homepage - used for source link', - organization varchar(255) comment 'name of the organization running the application', - homepage varchar(255) comment 'homepage for the organization', - callback_url varchar(255) comment 'url to redirect to after authentication', - type tinyint default 0 comment 'type of app, 1 = browser, 2 = desktop', - access_type tinyint default 0 comment 'default access type, bit 1 = read, bit 2 = write', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table oauth_application_user ( - profile_id integer not null comment 'user of the application' references profile (id), - application_id integer not null comment 'id of the application' references oauth_application (id), - access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write, bit 3 = revoked', - token varchar(255) comment 'request or access token', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - constraint primary key (profile_id, application_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table inbox ( - - user_id integer not null comment 'user receiving the notice' references user (id), - notice_ids blob comment 'packed list of notice ids', - - constraint primary key (user_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table conversation ( - id integer auto_increment primary key comment 'unique identifier', - uri varchar(225) unique comment 'URI of the conversation', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - --- stub entry to push the autoincrement past existing notice ids -insert into conversation (id,created) - select max(id)+1, now() from notice; - -alter table user_group - add uri varchar(255) unique key comment 'universal identifier', - add mainpage varchar(255) comment 'page for group info to link to', - drop index nickname; - -create table local_group ( - - group_id integer primary key comment 'group represented' references user_group (id), - nickname varchar(64) unique key comment 'group represented', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -insert into local_group (group_id, nickname, created) - select id, nickname, created from user_group; - -alter table file_to_post - add index post_id_idx (post_id); - -alter table group_inbox - add index group_inbox_notice_id_idx (notice_id); - diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql deleted file mode 100644 index d3eb644437..0000000000 --- a/db/08to09_pg.sql +++ /dev/null @@ -1,140 +0,0 @@ --- SQL commands to update an 0.8.x version of Laconica --- to 0.9.x. - ---these are just comments -/* -alter table notice - modify column content text comment 'update content'; - -alter table message - modify column content text comment 'message content'; - -alter table profile - modify column bio text comment 'descriptive biography'; - -alter table user_group - modify column description text comment 'group description'; -*/ - -alter table file_oembed - add column mimetype varchar(50) /*comment 'mime type of resource'*/; - -create table config ( - - section varchar(32) /* comment 'configuration section'*/, - setting varchar(32) /* comment 'configuration setting'*/, - value varchar(255) /* comment 'configuration value'*/, - - primary key (section, setting) - -); - -create table profile_role ( - - profile_id integer not null /* comment 'account having the role'*/ references profile (id), - role varchar(32) not null /* comment 'string representing the role'*/, - created timestamp /* not null comment 'date the role was granted'*/, - - primary key (profile_id, role) - -); - -create table location_namespace ( - - id integer /*comment 'identity for this namespace'*/, - description text /* comment 'description of the namespace'*/ , - created integer not null /*comment 'date the record was created*/ , - /* modified timestamp comment 'date this record was modified',*/ - primary key (id) - -); - -create table login_token ( - user_id integer not null /* comment 'user owning this token'*/ references "user" (id), - token char(32) not null /* comment 'token useable for logging in'*/, - created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/, - modified timestamp /* comment 'date this record was modified'*/, - - primary key (user_id) -); - -DROP index fave_user_id_idx; -CREATE index fave_user_id_idx on fave (user_id,modified); - -DROP index subscription_subscriber_idx; -CREATE index subscription_subscriber_idx ON subscription (subscriber,created); - -DROP index subscription_subscribed_idx; -CREATE index subscription_subscribed_idx ON subscription (subscribed,created); - -DROP index notice_profile_id_idx; -CREATE index notice_profile_id_idx ON notice (profile_id,created,id); - -ALTER TABLE notice ADD COLUMN lat decimal(10, 7) /* comment 'latitude'*/; -ALTER TABLE notice ADD COLUMN lon decimal(10,7) /* comment 'longitude'*/; -ALTER TABLE notice ADD COLUMN location_id integer /* comment 'location id if possible'*/ ; -ALTER TABLE notice ADD COLUMN location_ns integer /* comment 'namespace for location'*/; -ALTER TABLE notice ADD COLUMN repeat_of integer /* comment 'notice this is a repeat of' */ references notice (id); - -ALTER TABLE profile ADD COLUMN lat decimal(10,7) /*comment 'latitude'*/ ; -ALTER TABLE profile ADD COLUMN lon decimal(10,7) /*comment 'longitude'*/; -ALTER TABLE profile ADD COLUMN location_id integer /* comment 'location id if possible'*/; -ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for location'*/; - -ALTER TABLE consumer add COLUMN consumer_secret varchar(255) not null ; /*comment 'secret value'*/ - -ALTER TABLE token ADD COLUMN verifier varchar(255); /* comment 'verifier string for OAuth 1.0a',*/ -ALTER TABLE token ADD COLUMN verified_callback varchar(255); /* comment 'verified callback URL for OAuth 1.0a',*/ - -create table queue_item_new ( - id serial /* comment 'unique identifier'*/, - frame bytea not null /* comment 'data: object reference or opaque string'*/, - transport varchar(8) not null /*comment 'queue for what? "email", "jabber", "sms", "irc", ...'*/, - created timestamp not null default CURRENT_TIMESTAMP /*comment 'date this record was created'*/, - claimed timestamp /*comment 'date this item was claimed'*/, - PRIMARY KEY (id) -); - -insert into queue_item_new (frame,transport,created,claimed) - select ('0x' || notice_id::text)::bytea,transport,created,claimed from queue_item; -alter table queue_item rename to queue_item_old; -alter table queue_item_new rename to queue_item; - -ALTER TABLE confirm_address ALTER column sent set default CURRENT_TIMESTAMP; - -create table user_location_prefs ( - user_id integer not null /*comment 'user who has the preference'*/ references "user" (id), - share_location int default 1 /* comment 'Whether to share location data'*/, - created timestamp not null /*comment 'date this record was created'*/, - modified timestamp /* comment 'date this record was modified'*/, - - primary key (user_id) -); - -create table inbox ( - - user_id integer not null /* comment 'user receiving the notice' */ references "user" (id), - notice_ids bytea /* comment 'packed list of notice ids' */, - - primary key (user_id) - -); - -create table user_location_prefs ( - user_id integer not null /*comment 'user who has the preference'*/ references "user" (id), - share_location int default 1 /* comment 'Whether to share location data'*/, - created timestamp not null /*comment 'date this record was created'*/, - modified timestamp /* comment 'date this record was modified'*/, - - primary key (user_id) -); - -create table inbox ( - - user_id integer not null /* comment 'user receiving the notice' */ references "user" (id), - notice_ids bytea /* comment 'packed list of notice ids' */, - - primary key (user_id) - -); - diff --git a/db/095topeopletags.sql b/db/095topeopletags.sql deleted file mode 100644 index e193b98156..0000000000 --- a/db/095topeopletags.sql +++ /dev/null @@ -1,4 +0,0 @@ -/* populate people tags metadata */ - -insert into profile_list (tagger, tag, modified, description, private) - select distinct tagger, tag, modified, null, false from profile_tag; diff --git a/db/096to097.sql b/db/096to097.sql deleted file mode 100644 index 209a3a8811..0000000000 --- a/db/096to097.sql +++ /dev/null @@ -1,26 +0,0 @@ --- Add indexes for sorting changes in 0.9.7 - --- Allows sorting public timeline, api/statuses/repeats, and conversations by timestamp efficiently -alter table notice - add index notice_created_id_is_local_idx (created,id,is_local), - - add index notice_repeat_of_created_id_idx (repeat_of, created, id), - drop index notice_repeatof_idx, - - add index notice_conversation_created_id_idx (conversation, created, id), - drop index notice_conversation_idx; - --- Allows sorting tag-filtered public timeline by timestamp efficiently -alter table notice_tag add index notice_tag_tag_created_notice_id_idx (tag, created, notice_id); - --- Needed for sorting reply/mentions timelines -alter table reply add index reply_profile_id_modified_notice_id_idx (profile_id, modified, notice_id); - --- Needed for sorting group messages by timestamp -alter table group_inbox add index group_inbox_group_id_created_notice_id_idx (group_id, created, notice_id); - --- Helps make some reverse role lookups more efficient if there's a lot of assigned accounts -alter table profile_role add index profile_role_role_created_profile_id_idx (role, created, profile_id); - --- Fix for sorting a user's group memberships by order joined -alter table group_member add index group_member_profile_id_created_idx (profile_id, created); diff --git a/db/beta5tobeta6.sql b/db/beta5tobeta6.sql deleted file mode 100644 index e9dff17efe..0000000000 --- a/db/beta5tobeta6.sql +++ /dev/null @@ -1,28 +0,0 @@ -alter table oauth_application - modify column name varchar(255) not null unique key comment 'name of the application', - modify column access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write'; - -alter table user_group -add column uri varchar(255) unique key comment 'universal identifier', -add column mainpage varchar(255) comment 'page for group info to link to', -drop index nickname; - -create table conversation ( - id integer auto_increment primary key comment 'unique identifier', - uri varchar(225) unique comment 'URI of the conversation', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table local_group ( - group_id integer primary key comment 'group represented' references user_group (id), - nickname varchar(64) unique key comment 'group represented', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -insert into local_group (group_id, nickname, created) -select id, nickname, created from user_group; - diff --git a/db/innodb.sql b/db/innodb.sql deleted file mode 100644 index f3ab6cd690..0000000000 --- a/db/innodb.sql +++ /dev/null @@ -1,2 +0,0 @@ -alter table profile drop index nickname, engine=InnoDB; -alter table notice drop index content, engine=InnoDB; diff --git a/db/rc2torc3.sql b/db/rc2torc3.sql deleted file mode 100644 index 886b9adf22..0000000000 --- a/db/rc2torc3.sql +++ /dev/null @@ -1,17 +0,0 @@ -create table user_location_prefs ( - user_id integer not null comment 'user who has the preference' references user (id), - share_location tinyint default 1 comment 'Whether to share location data', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table inbox ( - - user_id integer not null comment 'user receiving the notice' references user (id), - notice_ids blob comment 'packed list of notice ids', - - constraint primary key (user_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; diff --git a/db/rc3torc4.sql b/db/rc3torc4.sql deleted file mode 100644 index 917c1f1c41..0000000000 --- a/db/rc3torc4.sql +++ /dev/null @@ -1,50 +0,0 @@ -create table queue_item_new ( - id integer auto_increment primary key comment 'unique identifier', - frame blob not null comment 'data: object reference or opaque string', - transport varchar(8) not null comment 'queue for what? "email", "jabber", "sms", "irc", ...', - created datetime not null comment 'date this record was created', - claimed datetime comment 'date this item was claimed', - - index queue_item_created_idx (created) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -insert into queue_item_new (frame,transport,created,claimed) - select notice_id,transport,created,claimed from queue_item; -alter table queue_item rename to queue_item_old; -alter table queue_item_new rename to queue_item; - -alter table consumer - add consumer_secret varchar(255) not null comment 'secret value'; - -alter table token - add verifier varchar(255) comment 'verifier string for OAuth 1.0a', - add verified_callback varchar(255) comment 'verified callback URL for OAuth 1.0a'; - -create table oauth_application ( - id integer auto_increment primary key comment 'unique identifier', - owner integer not null comment 'owner of the application' references profile (id), - consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key), - name varchar(255) not null comment 'name of the application', - description varchar(255) comment 'description of the application', - icon varchar(255) not null comment 'application icon', - source_url varchar(255) comment 'application homepage - used for source link', - organization varchar(255) comment 'name of the organization running the application', - homepage varchar(255) comment 'homepage for the organization', - callback_url varchar(255) comment 'url to redirect to after authentication', - type tinyint default 0 comment 'type of app, 1 = browser, 2 = desktop', - access_type tinyint default 0 comment 'default access type, bit 1 = read, bit 2 = write', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table oauth_application_user ( - profile_id integer not null comment 'user of the application' references profile (id), - application_id integer not null comment 'id of the application' references oauth_application (id), - access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write, bit 3 = revoked', - token varchar(255) comment 'request or access token', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - constraint primary key (profile_id, application_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - diff --git a/db/site_093to094.sql b/db/site_093to094.sql deleted file mode 100644 index 30cea31dfa..0000000000 --- a/db/site_093to094.sql +++ /dev/null @@ -1,13 +0,0 @@ -alter table status_network - drop primary key, - add column site_id integer auto_increment primary key first, - add unique key (nickname); - -create table status_network_tag ( - site_id integer comment 'unique id', - tag varchar(64) comment 'tag name', - created datetime not null comment 'date the record was created', - - constraint primary key (site_id, tag) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - diff --git a/db/statusnet.sql b/db/statusnet.sql deleted file mode 100644 index 29a555948b..0000000000 --- a/db/statusnet.sql +++ /dev/null @@ -1,759 +0,0 @@ -/* local and remote users have profiles */ - -create table profile ( - - id integer auto_increment primary key comment 'unique identifier', - nickname varchar(64) not null comment 'nickname or username', - fullname varchar(255) comment 'display name', - profileurl varchar(255) comment 'URL, cached so we dont regenerate', - homepage varchar(255) comment 'identifying URL', - bio text comment 'descriptive biography', - location varchar(255) comment 'physical location', - lat decimal(10,7) comment 'latitude', - lon decimal(10,7) comment 'longitude', - location_id integer comment 'location id if possible', - location_ns integer comment 'namespace for location', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - index profile_nickname_idx (nickname), - FULLTEXT(nickname, fullname, location, bio, homepage) -) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table avatar ( - profile_id integer not null comment 'foreign key to profile table' references profile (id), - original boolean default false comment 'uploaded by user or generated?', - width integer not null comment 'image width', - height integer not null comment 'image height', - mediatype varchar(32) not null comment 'file type', - filename varchar(255) null comment 'local filename, if local', - url varchar(255) unique key comment 'avatar location', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (profile_id, width, height), - index avatar_profile_id_idx (profile_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table sms_carrier ( - id integer primary key comment 'primary key for SMS carrier', - name varchar(64) unique key comment 'name of the carrier', - email_pattern varchar(255) not null comment 'sprintf pattern for making an email address from a phone number', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -/* local users */ - -create table user ( - - id integer primary key comment 'foreign key to profile table' references profile (id), - nickname varchar(64) unique key comment 'nickname or username, duped in profile', - password varchar(255) comment 'salted password, can be null for OpenID users', - email varchar(255) unique key comment 'email address for password recovery etc.', - incomingemail varchar(255) unique key comment 'email address for post-by-email', - emailnotifysub tinyint default 1 comment 'Notify by email of subscriptions', - emailnotifyfav tinyint default 1 comment 'Notify by email of favorites', - emailnotifynudge tinyint default 1 comment 'Notify by email of nudges', - emailnotifymsg tinyint default 1 comment 'Notify by email of direct messages', - emailnotifyattn tinyint default 1 comment 'Notify by email of @-replies', - emailmicroid tinyint default 1 comment 'whether to publish email microid', - language varchar(50) comment 'preferred language', - timezone varchar(50) comment 'timezone', - emailpost tinyint default 1 comment 'Post by email', - sms varchar(64) unique key comment 'sms phone number', - carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id), - smsnotify tinyint default 0 comment 'whether to send notices to SMS', - smsreplies tinyint default 0 comment 'whether to send notices to SMS on replies', - smsemail varchar(255) comment 'built from sms and carrier', - uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI', - autosubscribe tinyint default 0 comment 'automatically subscribe to users who subscribe to us', - urlshorteningservice varchar(50) default 'ur1.ca' comment 'service to use for auto-shortening URLs', - inboxed tinyint default 0 comment 'has an inbox been created for this user?', - design_id integer comment 'id of a design' references design(id), - viewdesigns tinyint default 1 comment 'whether to view user-provided designs', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - index user_smsemail_idx (smsemail) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - -/* remote people */ - -create table remote_profile ( - id integer primary key comment 'foreign key to profile table' references profile (id), - uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI', - postnoticeurl varchar(255) comment 'URL we use for posting notices', - updateprofileurl varchar(255) comment 'URL we use for updates to this profile', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table subscription ( - subscriber integer not null comment 'profile listening', - subscribed integer not null comment 'profile being listened to', - jabber tinyint default 1 comment 'deliver jabber messages', - sms tinyint default 1 comment 'deliver sms messages', - token varchar(255) comment 'authorization token', - secret varchar(255) comment 'token secret', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (subscriber, subscribed), - index subscription_subscriber_idx (subscriber, created), - index subscription_subscribed_idx (subscribed, created), - index subscription_token_idx (token) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table notice ( - id integer auto_increment primary key comment 'unique identifier', - profile_id integer not null comment 'who made the update' references profile (id), - uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI', - content text comment 'update content', - rendered text comment 'HTML version of the content', - url varchar(255) comment 'URL of any attachment (image, video, bookmark, whatever)', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - reply_to integer comment 'notice replied to (usually a guess)' references notice (id), - is_local tinyint default 0 comment 'notice was generated by a user', - source varchar(32) comment 'source of comment, like "web", "im", or "clientname"', - conversation integer comment 'id of root notice in this conversation' references notice (id), - lat decimal(10,7) comment 'latitude', - lon decimal(10,7) comment 'longitude', - location_id integer comment 'location id if possible', - location_ns integer comment 'namespace for location', - repeat_of integer comment 'notice this is a repeat of' references notice (id), - - -- For public timeline... - index notice_created_id_is_local_idx (created,id,is_local), - - -- For profile timelines... - index notice_profile_id_idx (profile_id,created,id), - - -- For api/statuses/repeats... - index notice_repeat_of_created_id_idx (repeat_of, created, id), - - -- For conversation views - index notice_conversation_created_id_idx (conversation, created, id), - - -- Are these needed/used? - index notice_replyto_idx (reply_to), - - FULLTEXT(content) -) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table notice_source ( - code varchar(32) primary key not null comment 'source code', - name varchar(255) not null comment 'name of the source', - url varchar(255) not null comment 'url to link to', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table reply ( - notice_id integer not null comment 'notice that is the reply' references notice (id), - profile_id integer not null comment 'profile replied to' references profile (id), - modified timestamp not null comment 'date this record was modified', - replied_id integer comment 'notice replied to (not used, see notice.reply_to)', - - constraint primary key (notice_id, profile_id), - index reply_notice_id_idx (notice_id), - index reply_profile_id_idx (profile_id), - index reply_replied_id_idx (replied_id), - - -- Needed for sorting reply/mentions timelines - index reply_profile_id_modified_notice_id_idx (profile_id, modified, notice_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table fave ( - notice_id integer not null comment 'notice that is the favorite' references notice (id), - user_id integer not null comment 'user who likes this notice' references user (id), - modified timestamp not null comment 'date this record was modified', - - constraint primary key (notice_id, user_id), - index fave_notice_id_idx (notice_id), - index fave_user_id_idx (user_id,modified), - index fave_modified_idx (modified) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -/* tables for OAuth */ - -create table consumer ( - consumer_key varchar(255) primary key comment 'unique identifier, root URL', - consumer_secret varchar(255) not null comment 'secret value', - seed char(32) not null comment 'seed for new tokens by this consumer', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table token ( - consumer_key varchar(255) not null comment 'unique identifier, root URL' references consumer (consumer_key), - tok char(32) not null comment 'identifying value', - secret char(32) not null comment 'secret value', - type tinyint not null default 0 comment 'request or access', - state tinyint default 0 comment 'for requests, 0 = initial, 1 = authorized, 2 = used', - verifier varchar(255) comment 'verifier string for OAuth 1.0a', - verified_callback varchar(255) comment 'verified callback URL for OAuth 1.0a', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (consumer_key, tok) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table nonce ( - consumer_key varchar(255) not null comment 'unique identifier, root URL', - tok char(32) null comment 'buggy old value, ignored', - nonce char(32) not null comment 'nonce', - ts datetime not null comment 'timestamp sent', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (consumer_key, ts, nonce) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table oauth_application ( - id integer auto_increment primary key comment 'unique identifier', - owner integer not null comment 'owner of the application' references profile (id), - consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key), - name varchar(255) not null unique key comment 'name of the application', - description varchar(255) comment 'description of the application', - icon varchar(255) not null comment 'application icon', - source_url varchar(255) comment 'application homepage - used for source link', - organization varchar(255) comment 'name of the organization running the application', - homepage varchar(255) comment 'homepage for the organization', - callback_url varchar(255) comment 'url to redirect to after authentication', - type tinyint default 0 comment 'type of app, 1 = browser, 2 = desktop', - access_type tinyint default 0 comment 'default access type, bit 1 = read, bit 2 = write', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table oauth_application_user ( - profile_id integer not null comment 'user of the application' references profile (id), - application_id integer not null comment 'id of the application' references oauth_application (id), - access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write', - token varchar(255) comment 'request or access token', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - constraint primary key (profile_id, application_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table oauth_token_association ( - profile_id integer not null comment 'user of the application' references profile (id), - application_id integer not null comment 'id of the application' references oauth_application (id), - token varchar(255) comment 'request or access token', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - constraint primary key (profile_id, application_id, token) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -/* These are used by JanRain OpenID library */ - -create table oid_associations ( - server_url BLOB, - handle VARCHAR(255) character set latin1, - secret BLOB, - issued INTEGER, - lifetime INTEGER, - assoc_type VARCHAR(64), - PRIMARY KEY (server_url(255), handle) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table oid_nonces ( - server_url VARCHAR(2047), - timestamp INTEGER, - salt CHAR(40), - UNIQUE (server_url(255), timestamp, salt) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table confirm_address ( - code varchar(32) not null primary key comment 'good random code', - user_id integer not null comment 'user who requested confirmation' references user (id), - address varchar(255) not null comment 'address (email, xmpp, SMS, etc.)', - address_extra varchar(255) not null comment 'carrier ID, for SMS', - address_type varchar(8) not null comment 'address type ("email", "xmpp", "sms")', - claimed datetime comment 'date this was claimed for queueing', - sent datetime comment 'date this was sent for queueing', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table remember_me ( - code varchar(32) not null primary key comment 'good random code', - user_id integer not null comment 'user who is logged in' references user (id), - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table queue_item ( - id integer auto_increment primary key comment 'unique identifier', - frame blob not null comment 'data: object reference or opaque string', - transport varchar(8) not null comment 'queue for what? "email", "xmpp", "sms", "irc", ...', - created datetime not null comment 'date this record was created', - claimed datetime comment 'date this item was claimed', - - index queue_item_created_idx (created) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -/* Hash tags */ -create table notice_tag ( - tag varchar( 64 ) not null comment 'hash tag associated with this notice', - notice_id integer not null comment 'notice tagged' references notice (id), - created datetime not null comment 'date this record was created', - - constraint primary key (tag, notice_id), - index notice_tag_created_idx (created), - index notice_tag_notice_id_idx (notice_id), - - -- For sorting tag-filtered public timeline - index notice_tag_tag_created_notice_id_idx (tag, created, notice_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -/* Synching with foreign services */ - -create table foreign_service ( - id int not null primary key comment 'numeric key for service', - name varchar(32) not null unique key comment 'name of the service', - description varchar(255) comment 'description', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table foreign_user ( - id bigint not null comment 'unique numeric key on foreign service', - service int not null comment 'foreign key to service' references foreign_service(id), - uri varchar(255) not null unique key comment 'identifying URI', - nickname varchar(255) comment 'nickname on foreign service', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (id, service) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table foreign_link ( - user_id int comment 'link to user on this system, if exists' references user (id), - foreign_id bigint unsigned comment 'link to user on foreign service, if exists' references foreign_user(id), - service int not null comment 'foreign key to service' references foreign_service(id), - credentials varchar(255) comment 'authc credentials, typically a password', - noticesync tinyint not null default 1 comment 'notice synchronization, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies', - friendsync tinyint not null default 2 comment 'friend synchronization, bit 1 = sync outgoing, bit 2 = sync incoming', - profilesync tinyint not null default 1 comment 'profile synchronization, bit 1 = sync outgoing, bit 2 = sync incoming', - last_noticesync datetime default null comment 'last time notices were imported', - last_friendsync datetime default null comment 'last time friends were imported', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id, foreign_id, service), - index foreign_user_user_id_idx (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table foreign_subscription ( - service int not null comment 'service where relationship happens' references foreign_service(id), - subscriber int not null comment 'subscriber on foreign service' references foreign_user (id), - subscribed int not null comment 'subscribed user' references foreign_user (id), - created datetime not null comment 'date this record was created', - - constraint primary key (service, subscriber, subscribed), - index foreign_subscription_subscriber_idx (subscriber), - index foreign_subscription_subscribed_idx (subscribed) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table invitation ( - code varchar(32) not null primary key comment 'random code for an invitation', - user_id int not null comment 'who sent the invitation' references user (id), - address varchar(255) not null comment 'invitation sent to', - address_type varchar(8) not null comment 'address type ("email", "xmpp", "sms")', - created datetime not null comment 'date this record was created', - - index invitation_address_idx (address, address_type), - index invitation_user_id_idx (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table message ( - id integer auto_increment primary key comment 'unique identifier', - uri varchar(255) unique key comment 'universally unique identifier', - from_profile integer not null comment 'who the message is from' references profile (id), - to_profile integer not null comment 'who the message is to' references profile (id), - content text comment 'message content', - rendered text comment 'HTML version of the content', - url varchar(255) comment 'URL of any attachment (image, video, bookmark, whatever)', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - source varchar(32) comment 'source of comment, like "web", "im", or "clientname"', - - index message_from_idx (from_profile), - index message_to_idx (to_profile), - index message_created_idx (created) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table notice_inbox ( - user_id integer not null comment 'user receiving the message' references user (id), - notice_id integer not null comment 'notice received' references notice (id), - created datetime not null comment 'date the notice was created', - source tinyint default 1 comment 'reason it is in the inbox, 1=subscription', - - constraint primary key (user_id, notice_id), - index notice_inbox_notice_id_idx (notice_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table profile_tag ( - tagger integer not null comment 'user making the tag' references profile (id), - tagged integer not null comment 'profile tagged' references profile (id), - tag varchar(64) not null comment 'hash tag associated with this notice', - modified timestamp comment 'date the tag was added', - - constraint primary key (tagger, tagged, tag), - index profile_tag_modified_idx (modified), - index profile_tag_tagger_tag_idx (tagger, tag), - index profile_tag_tagged_idx (tagged) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -/* people tag metadata */ -create table profile_list ( - id integer auto_increment unique key comment 'unique identifier', - tagger integer not null comment 'user making the tag' references profile (id), - tag varchar(64) not null comment 'hash tag', - description text comment 'description for the tag', - private tinyint(1) default 0 comment 'is this list private', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - uri varchar(255) unique key comment 'universal identifier', - mainpage varchar(255) comment 'page for tag info info to link to', - tagged_count smallint not null default 0 comment 'number of people tagged', - subscriber_count smallint not null default 0 comment 'number of people subscribing', - - constraint primary key (tagger, tag), - index profile_list_tag_idx (tag), - index profile_list_tagged_count_idx (tagged_count), - index profile_list_modified_idx (modified), - index profile_list_subscriber_count_idx (subscriber_count) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table profile_tag_inbox ( - profile_tag_id integer not null comment 'peopletag receiving the message' references profile_tag (id), - notice_id integer not null comment 'notice received' references notice (id), - created datetime not null comment 'date the notice was created', - - constraint primary key (profile_tag_id, notice_id), - index profile_tag_inbox_created_idx (created), - index profile_tag_inbox_notice_id_idx (notice_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table profile_tag_subscription ( - profile_tag_id integer not null comment 'foreign key to profile_tag' references profile_list (id), - - profile_id integer not null comment 'foreign key to profile table' references profile (id), - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (profile_tag_id, profile_id), - index profile_tag_subscription_profile_id_idx (profile_id), - index profile_tag_subscription_created_idx (created) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table profile_block ( - blocker integer not null comment 'user making the block' references user (id), - blocked integer not null comment 'profile that is blocked' references profile (id), - modified timestamp comment 'date of blocking', - - constraint primary key (blocker, blocked) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table user_group ( - id integer auto_increment primary key comment 'unique identifier', - - nickname varchar(64) comment 'nickname for addressing', - fullname varchar(255) comment 'display name', - homepage varchar(255) comment 'URL, cached so we dont regenerate', - description text comment 'group description', - location varchar(255) comment 'related physical location, if any', - - original_logo varchar(255) comment 'original size logo', - homepage_logo varchar(255) comment 'homepage (profile) size logo', - stream_logo varchar(255) comment 'stream-sized logo', - mini_logo varchar(255) comment 'mini logo', - design_id integer comment 'id of a design' references design(id), - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - uri varchar(255) unique key comment 'universal identifier', - mainpage varchar(255) comment 'page for group info to link to', - - index user_group_nickname_idx (nickname) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table group_member ( - group_id integer not null comment 'foreign key to user_group' references user_group (id), - profile_id integer not null comment 'foreign key to profile table' references profile (id), - is_admin boolean default false comment 'is this user an admin?', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (group_id, profile_id), - index group_member_profile_id_idx (profile_id), - index group_member_created_idx (created), - - -- To pull up a list of someone's groups in order joined - index group_member_profile_id_created_idx (profile_id, created) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table related_group ( - group_id integer not null comment 'foreign key to user_group' references user_group (id), - related_group_id integer not null comment 'foreign key to user_group' references user_group (id), - - created datetime not null comment 'date this record was created', - - constraint primary key (group_id, related_group_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table group_inbox ( - group_id integer not null comment 'group receiving the message' references user_group (id), - notice_id integer not null comment 'notice received' references notice (id), - created datetime not null comment 'date the notice was created', - - constraint primary key (group_id, notice_id), - index group_inbox_created_idx (created), - index group_inbox_notice_id_idx (notice_id), - - -- Needed for sorting group messages by timestamp - index group_inbox_group_id_created_notice_id_idx (group_id, created, notice_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table file ( - - id integer primary key auto_increment, - url varchar(255) comment 'destination URL after following redirections', - mimetype varchar(50) comment 'mime type of resource', - size integer comment 'size of resource when available', - title varchar(255) comment 'title of resource when available', - date integer(11) comment 'date of resource according to http query', - protected integer(1) comment 'true when URL is private (needs login)', - filename varchar(255) comment 'if a local file, name of the file', - - modified timestamp comment 'date this record was modified', - - unique(url) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table file_oembed ( - file_id integer primary key comment 'oEmbed for that URL/file' references file (id), - version varchar(20) comment 'oEmbed spec. version', - type varchar(20) comment 'oEmbed type: photo, video, link, rich', - mimetype varchar(50) comment 'mime type of resource', - provider varchar(50) comment 'name of this oEmbed provider', - provider_url varchar(255) comment 'URL of this oEmbed provider', - width integer comment 'width of oEmbed resource when available', - height integer comment 'height of oEmbed resource when available', - html text comment 'html representation of this oEmbed resource when applicable', - title varchar(255) comment 'title of oEmbed resource when available', - author_name varchar(50) comment 'author name for this oEmbed resource', - author_url varchar(255) comment 'author URL for this oEmbed resource', - url varchar(255) comment 'URL for this oEmbed resource when applicable (photo, link)', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci; - -create table file_redirection ( - - url varchar(255) primary key comment 'short URL (or any other kind of redirect) for file (id)', - file_id integer comment 'short URL for what URL/file' references file (id), - redirections integer comment 'redirect count', - httpcode integer comment 'HTTP status code (20x, 30x, etc.)', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table file_thumbnail ( - - file_id integer primary key comment 'thumbnail for what URL/file' references file (id), - url varchar(255) comment 'URL of thumbnail', - width integer comment 'width of thumbnail', - height integer comment 'height of thumbnail', - modified timestamp comment 'date this record was modified', - - unique(url) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table file_to_post ( - - file_id integer comment 'id of URL/file' references file (id), - post_id integer comment 'id of the notice it belongs to' references notice (id), - modified timestamp comment 'date this record was modified', - - constraint primary key (file_id, post_id), - index post_id_idx (post_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table design ( - id integer primary key auto_increment comment 'design ID', - backgroundcolor integer comment 'main background color', - contentcolor integer comment 'content area background color', - sidebarcolor integer comment 'sidebar background color', - textcolor integer comment 'text color', - linkcolor integer comment 'link color', - backgroundimage varchar(255) comment 'background image, if any', - disposition tinyint default 1 comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table group_block ( - group_id integer not null comment 'group profile is blocked from' references user_group (id), - blocked integer not null comment 'profile that is blocked' references profile (id), - blocker integer not null comment 'user making the block' references user (id), - modified timestamp comment 'date of blocking', - - constraint primary key (group_id, blocked) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table group_alias ( - - alias varchar(64) primary key comment 'additional nickname for the group', - group_id integer not null comment 'group profile is blocked from' references user_group (id), - modified timestamp comment 'date alias was created', - - index group_alias_group_id_idx (group_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table session ( - - id varchar(32) primary key comment 'session ID', - session_data text comment 'session data', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - index session_modified_idx (modified) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table deleted_notice ( - - id integer primary key comment 'identity of notice', - profile_id integer not null comment 'author of the notice', - uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI', - created datetime not null comment 'date the notice record was created', - deleted datetime not null comment 'date the notice record was created', - - index deleted_notice_profile_id_idx (profile_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table config ( - - section varchar(32) comment 'configuration section', - setting varchar(32) comment 'configuration setting', - value varchar(255) comment 'configuration value', - - constraint primary key (section, setting) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table profile_role ( - - profile_id integer not null comment 'account having the role' references profile (id), - role varchar(32) not null comment 'string representing the role', - created datetime not null comment 'date the role was granted', - - constraint primary key (profile_id, role), - index profile_role_role_created_profile_id_idx (role, created, profile_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table location_namespace ( - - id integer primary key comment 'identity for this namespace', - description varchar(255) comment 'description of the namespace', - created datetime not null comment 'date the record was created', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table login_token ( - user_id integer not null comment 'user owning this token' references user (id), - token char(32) not null comment 'token useable for logging in', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table user_location_prefs ( - user_id integer not null comment 'user who has the preference' references user (id), - share_location tinyint default 1 comment 'Whether to share location data', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table inbox ( - - user_id integer not null comment 'user receiving the notice' references user (id), - notice_ids blob comment 'packed list of notice ids', - - constraint primary key (user_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table user_im_prefs ( - user_id integer not null comment 'user' references user (id), - screenname varchar(255) not null comment 'screenname on this service', - transport varchar(255) not null comment 'transport (ex xmpp, aim)', - notify tinyint(1) not null default 0 comment 'Notify when a new notice is sent', - replies tinyint(1) not null default 0 comment 'Send replies from people not subscribed to', - microid tinyint(1) not null default 1 comment 'Publish a MicroID', - updatefrompresence tinyint(1) not null default 0 comment 'Send replies from people not subscribed to.', - created timestamp not null DEFAULT CURRENT_TIMESTAMP comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id, transport), - constraint unique key `transport_screenname_key` ( `transport` , `screenname` ) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table conversation ( - id integer auto_increment primary key comment 'unique identifier', - uri varchar(225) unique comment 'URI of the conversation', - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table local_group ( - - group_id integer primary key comment 'group represented' references user_group (id), - nickname varchar(64) unique key comment 'group represented', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified' - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -create table user_urlshortener_prefs ( - - user_id integer not null comment 'user' references user (id), - urlshorteningservice varchar(50) default 'ur1.ca' comment 'service to use for auto-shortening URLs', - maxurllength integer not null comment 'urls greater than this length will be shortened, 0 = always, null = never', - maxnoticelength integer not null comment 'notices with content greater than this value will have all urls shortened, 0 = always, null = never', - - created datetime not null comment 'date this record was created', - modified timestamp comment 'date this record was modified', - - constraint primary key (user_id) -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql deleted file mode 100644 index fe0758de89..0000000000 --- a/db/statusnet_pg.sql +++ /dev/null @@ -1,649 +0,0 @@ -/* local and remote users have profiles */ -create sequence profile_seq; -create table profile ( - id bigint default nextval('profile_seq') primary key /* comment 'unique identifier' */, - nickname varchar(64) not null /* comment 'nickname or username' */, - fullname varchar(255) /* comment 'display name' */, - profileurl varchar(255) /* comment 'URL, cached so we dont regenerate' */, - homepage varchar(255) /* comment 'identifying URL' */, - bio varchar(140) /* comment 'descriptive biography' */, - location varchar(255) /* comment 'physical location' */, - lat decimal(10,7) /* comment 'latitude'*/ , - lon decimal(10,7) /* comment 'longitude'*/ , - location_id integer /* comment 'location id if possible'*/ , - location_ns integer /* comment 'namespace for location'*/ , - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - textsearch tsvector -); -create index profile_nickname_idx on profile using btree(nickname); - -create table avatar ( - profile_id integer not null /* comment 'foreign key to profile table' */ references profile (id) , - original integer default 0 /* comment 'uploaded by user or generated?' */, - width integer not null /* comment 'image width' */, - height integer not null /* comment 'image height' */, - mediatype varchar(32) not null /* comment 'file type' */, - filename varchar(255) null /* comment 'local filename, if local' */, - url varchar(255) unique /* comment 'avatar location' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key(profile_id, width, height) -); -create index avatar_profile_id_idx on avatar using btree(profile_id); - -create sequence sms_carrier_seq; -create table sms_carrier ( - id bigint default nextval('sms_carrier_seq') primary key /* comment 'primary key for SMS carrier' */, - name varchar(64) unique /* comment 'name of the carrier' */, - email_pattern varchar(255) not null /* comment 'sprintf pattern for making an email address from a phone number' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified ' */ -); - -create sequence design_seq; -create table design ( - id bigint default nextval('design_seq') /* comment 'design ID'*/, - backgroundcolor integer /* comment 'main background color'*/ , - contentcolor integer /*comment 'content area background color'*/ , - sidebarcolor integer /*comment 'sidebar background color'*/ , - textcolor integer /*comment 'text color'*/ , - linkcolor integer /*comment 'link color'*/, - backgroundimage varchar(255) /*comment 'background image, if any'*/, - disposition int default 1 /*comment 'bit 1 = hide background image, bit 2 = display background image, bit 4 = tile background image'*/, - primary key (id) -); - -/* local users */ - -create table "user" ( - id integer primary key /* comment 'foreign key to profile table' */ references profile (id) , - nickname varchar(64) unique /* comment 'nickname or username, duped in profile' */, - password varchar(255) /* comment 'salted password, can be null for OpenID users' */, - email varchar(255) unique /* comment 'email address for password recovery etc.' */, - incomingemail varchar(255) unique /* comment 'email address for post-by-email' */, - emailnotifysub integer default 1 /* comment 'Notify by email of subscriptions' */, - emailnotifyfav integer default 1 /* comment 'Notify by email of favorites' */, - emailnotifynudge integer default 1 /* comment 'Notify by email of nudges' */, - emailnotifymsg integer default 1 /* comment 'Notify by email of direct messages' */, - emailnotifyattn integer default 1 /* command 'Notify by email of @-replies' */, - emailmicroid integer default 1 /* comment 'whether to publish email microid' */, - language varchar(50) /* comment 'preferred language' */, - timezone varchar(50) /* comment 'timezone' */, - emailpost integer default 1 /* comment 'Post by email' */, - jabber varchar(255) unique /* comment 'jabber ID for notices' */, - jabbernotify integer default 0 /* comment 'whether to send notices to jabber' */, - jabberreplies integer default 0 /* comment 'whether to send notices to jabber on replies' */, - jabbermicroid integer default 1 /* comment 'whether to publish xmpp microid' */, - updatefrompresence integer default 0 /* comment 'whether to record updates from Jabber presence notices' */, - sms varchar(64) unique /* comment 'sms phone number' */, - carrier integer /* comment 'foreign key to sms_carrier' */ references sms_carrier (id) , - smsnotify integer default 0 /* comment 'whether to send notices to SMS' */, - smsreplies integer default 0 /* comment 'whether to send notices to SMS on replies' */, - smsemail varchar(255) /* comment 'built from sms and carrier' */, - uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */, - autosubscribe integer default 0 /* comment 'automatically subscribe to users who subscribe to us' */, - urlshorteningservice varchar(50) default 'ur1.ca' /* comment 'service to use for auto-shortening URLs' */, - inboxed integer default 0 /* comment 'has an inbox been created for this user?' */, - design_id integer /* comment 'id of a design' */references design(id), - viewdesigns integer default 1 /* comment 'whether to view user-provided designs'*/, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ - -); -create index user_smsemail_idx on "user" using btree(smsemail); - -/* remote people */ - -create table remote_profile ( - id integer primary key /* comment 'foreign key to profile table' */ references profile (id) , - uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */, - postnoticeurl varchar(255) /* comment 'URL we use for posting notices' */, - updateprofileurl varchar(255) /* comment 'URL we use for updates to this profile' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ -); - -create table subscription ( - subscriber integer not null /* comment 'profile listening' */, - subscribed integer not null /* comment 'profile being listened to' */, - jabber integer default 1 /* comment 'deliver jabber messages' */, - sms integer default 1 /* comment 'deliver sms messages' */, - token varchar(255) /* comment 'authorization token' */, - secret varchar(255) /* comment 'token secret' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key (subscriber, subscribed) -); -create index subscription_subscriber_idx on subscription using btree(subscriber,created); -create index subscription_subscribed_idx on subscription using btree(subscribed,created); - -create sequence notice_seq; -create table notice ( - - id bigint default nextval('notice_seq') primary key /* comment 'unique identifier' */, - profile_id integer not null /* comment 'who made the update' */ references profile (id) , - uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI' */, - content varchar(140) /* comment 'update content' */, - rendered text /* comment 'HTML version of the content' */, - url varchar(255) /* comment 'URL of any attachment (image, video, bookmark, whatever)' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - reply_to integer /* comment 'notice replied to (usually a guess)' */ references notice (id) , - is_local integer default 0 /* comment 'notice was generated by a user' */, - source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */, - conversation integer /*id of root notice in this conversation' */ references notice (id), - lat decimal(10,7) /* comment 'latitude'*/ , - lon decimal(10,7) /* comment 'longitude'*/ , - location_id integer /* comment 'location id if possible'*/ , - location_ns integer /* comment 'namespace for location'*/ , - repeat_of integer /* comment 'notice this is a repeat of' */ references notice (id) - -/* FULLTEXT(content) */ -); - -create index notice_profile_id_idx on notice using btree(profile_id,created,id); -create index notice_created_idx on notice using btree(created); - -create table notice_source ( - code varchar(32) primary key not null /* comment 'source code' */, - name varchar(255) not null /* comment 'name of the source' */, - url varchar(255) not null /* comment 'url to link to' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ -); - -create table reply ( - - notice_id integer not null /* comment 'notice that is the reply' */ references notice (id) , - profile_id integer not null /* comment 'profile replied to' */ references profile (id) , - modified timestamp /* comment 'date this record was modified' */, - replied_id integer /* comment 'notice replied to (not used, see notice.reply_to)' */, - - primary key (notice_id, profile_id) - -); -create index reply_notice_id_idx on reply using btree(notice_id); -create index reply_profile_id_idx on reply using btree(profile_id); -create index reply_replied_id_idx on reply using btree(replied_id); - -create table fave ( - - notice_id integer not null /* comment 'notice that is the favorite' */ references notice (id), - user_id integer not null /* comment 'user who likes this notice' */ references "user" (id) , - modified timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was modified' */, - primary key (notice_id, user_id) - -); -create index fave_notice_id_idx on fave using btree(notice_id); -create index fave_user_id_idx on fave using btree(user_id,modified); -create index fave_modified_idx on fave using btree(modified); - -/* tables for OAuth */ - -create table consumer ( - consumer_key varchar(255) primary key /* comment 'unique identifier, root URL' */, - consumer_secret varchar(255) not null /* comment 'secret value', */, - seed char(32) not null /* comment 'seed for new tokens by this consumer' */, - - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ -); - -create table token ( - consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */ references consumer (consumer_key), - tok char(32) not null /* comment 'identifying value' */, - secret char(32) not null /* comment 'secret value' */, - type integer not null default 0 /* comment 'request or access' */, - state integer default 0 /* comment 'for requests 0 = initial, 1 = authorized, 2 = used' */, - - verifier varchar(255) /*comment 'verifier string for OAuth 1.0a'*/, - verified_callback varchar(255) /*comment 'verified callback URL for OAuth 1.0a'*/, - - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key (consumer_key, tok) -); - -create table nonce ( - consumer_key varchar(255) not null /* comment 'unique identifier, root URL' */, - tok char(32) /* comment 'buggy old value, ignored' */, - nonce char(32) null /* comment 'buggy old value, ignored */, - ts integer not null /* comment 'timestamp sent' values are epoch, and only used internally */, - - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key (consumer_key, ts, nonce) -); - -create sequence oauth_application_seq; -create table oauth_application ( - id bigint default nextval('oauth_application_seq') primary key /* comment 'unique identifier' */, - owner integer not null /* comment 'owner of the application' */ references profile (id), - consumer_key varchar(255) not null /* comment 'application consumer key' */ references consumer (consumer_key), - name varchar(255) unique not null /* comment 'name of the application' */, - description varchar(255) /* comment 'description of the application' */, - icon varchar(255) not null /* comment 'application icon' */, - source_url varchar(255) /* comment 'application homepage - used for source link' */, - organization varchar(255) /* comment 'name of the organization running the application' */, - homepage varchar(255) /* comment 'homepage for the organization' */, - callback_url varchar(255) /* comment 'url to redirect to after authentication' */, - "type" integer default 0 /* comment 'type of app, 1 = browser, 2 = desktop' */, - access_type integer default 0 /* comment 'default access type, bit 1 = read, bit 2 = write' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ -); - -create table oauth_application_user ( - profile_id integer not null /* 'user of the application' */ references profile (id), - application_id integer not null /* 'id of the application' */ references oauth_application (id), - access_type integer default 0 /* 'access type, bit 1 = read, bit 2 = write' */, - token varchar(255) /* 'request or access token' */, - created timestamp not null default CURRENT_TIMESTAMP /* 'date this record was created' */, - modified timestamp /* 'date this record was modified' */, - primary key (profile_id, application_id) -); - -/* These are used by JanRain OpenID library */ - -create table oid_associations ( - server_url varchar(2047), - handle varchar(255), - secret bytea, - issued integer, - lifetime integer, - assoc_type varchar(64), - primary key (server_url, handle) -); - -create table oid_nonces ( - server_url varchar(2047), - "timestamp" integer, - salt character(40), - unique (server_url, "timestamp", salt) -); - -create table confirm_address ( - code varchar(32) not null primary key /* comment 'good random code' */, - user_id integer not null /* comment 'user who requested confirmation' */ references "user" (id), - address varchar(255) not null /* comment 'address (email, Jabber, SMS, etc.)' */, - address_extra varchar(255) not null default '' /* comment 'carrier ID, for SMS' */, - address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms")' */, - claimed timestamp /* comment 'date this was claimed for queueing' */, - sent timestamp default CURRENT_TIMESTAMP /* comment 'date this was sent for queueing' */, - modified timestamp /* comment 'date this record was modified' */ -); - -create table remember_me ( - code varchar(32) not null primary key /* comment 'good random code' */, - user_id integer not null /* comment 'user who is logged in' */ references "user" (id), - modified timestamp /* comment 'date this record was modified' */ -); - -create table queue_item ( - id serial /* comment 'unique identifier'*/, - frame bytea not null /* comment 'data: object reference or opaque string'*/, - transport varchar(8) not null /*comment 'queue for what? "email", "jabber", "sms", "irc", ...'*/, - created timestamp not null default CURRENT_TIMESTAMP /*comment 'date this record was created'*/, - claimed timestamp /*comment 'date this item was claimed'*/, - PRIMARY KEY (id) -); -create index queue_item_created_idx on queue_item using btree(created); - -/* Hash tags */ -create table notice_tag ( - tag varchar( 64 ) not null /* comment 'hash tag associated with this notice' */, - notice_id integer not null /* comment 'notice tagged' */ references notice (id) , - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - - primary key (tag, notice_id) -); -create index notice_tag_created_idx on notice_tag using btree(created); - -/* Synching with foreign services */ - -create table foreign_service ( - id int not null primary key /* comment 'numeric key for service' */, - name varchar(32) not null unique /* comment 'name of the service' */, - description varchar(255) /* comment 'description' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ -); - -create table foreign_user ( - id int not null unique /* comment 'unique numeric key on foreign service' */, - service int not null /* comment 'foreign key to service' */ references foreign_service(id) , - uri varchar(255) not null unique /* comment 'identifying URI' */, - nickname varchar(255) /* comment 'nickname on foreign service' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key (id, service) -); - -create table foreign_link ( - user_id int /* comment 'link to user on this system, if exists' */ references "user" (id), - foreign_id int /* comment 'link' */ references foreign_user (id), - service int not null /* comment 'foreign key to service' */ references foreign_service (id), - credentials varchar(255) /* comment 'authc credentials, typically a password' */, - noticesync int not null default 1 /* comment 'notice synchronisation, bit 1 = sync outgoing, bit 2 = sync incoming, bit 3 = filter local replies' */, - friendsync int not null default 2 /* comment 'friend synchronisation, bit 1 = sync outgoing, bit 2 = sync incoming */, - profilesync int not null default 1 /* comment 'profile synchronization, bit 1 = sync outgoing, bit 2 = sync incoming' */, - last_noticesync timestamp default null /* comment 'last time notices were imported' */, - last_friendsync timestamp default null /* comment 'last time friends were imported' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key (user_id,foreign_id,service) -); -create index foreign_user_user_id_idx on foreign_link using btree(user_id); - -create table foreign_subscription ( - service int not null /* comment 'service where relationship happens' */ references foreign_service(id) , - subscriber int not null /* comment 'subscriber on foreign service' */ , - subscribed int not null /* comment 'subscribed user' */ , - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - - primary key (service, subscriber, subscribed) -); -create index foreign_subscription_subscriber_idx on foreign_subscription using btree(subscriber); -create index foreign_subscription_subscribed_idx on foreign_subscription using btree(subscribed); - -create table invitation ( - code varchar(32) not null primary key /* comment 'random code for an invitation' */, - user_id int not null /* comment 'who sent the invitation' */ references "user" (id), - address varchar(255) not null /* comment 'invitation sent to' */, - address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms") '*/, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */ - -); -create index invitation_address_idx on invitation using btree(address,address_type); -create index invitation_user_id_idx on invitation using btree(user_id); - -create sequence message_seq; -create table message ( - - id bigint default nextval('message_seq') primary key /* comment 'unique identifier' */, - uri varchar(255) unique /* comment 'universally unique identifier' */, - from_profile integer not null /* comment 'who the message is from' */ references profile (id), - to_profile integer not null /* comment 'who the message is to' */ references profile (id), - content varchar(140) /* comment 'message content' */, - rendered text /* comment 'HTML version of the content' */, - url varchar(255) /* comment 'URL of any attachment (image, video, bookmark, whatever)' */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */ - -); -create index message_from_idx on message using btree(from_profile); -create index message_to_idx on message using btree(to_profile); -create index message_created_idx on message using btree(created); - -create table notice_inbox ( - - user_id integer not null /* comment 'user receiving the message' */ references "user" (id), - notice_id integer not null /* comment 'notice received' */ references notice (id), - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date the notice was created' */, - source integer default 1 /* comment 'reason it is in the inbox: 1=subscription' */, - - primary key (user_id, notice_id) -); -create index notice_inbox_notice_id_idx on notice_inbox using btree(notice_id); - -create table profile_tag ( - tagger integer not null /* comment 'user making the tag' */ references "user" (id), - tagged integer not null /* comment 'profile tagged' */ references profile (id), - tag varchar(64) not null /* comment 'hash tag associated with this notice' */, - modified timestamp /* comment 'date the tag was added' */, - - primary key (tagger, tagged, tag) -); -create index profile_tag_modified_idx on profile_tag using btree(modified); -create index profile_tag_tagger_tag_idx on profile_tag using btree(tagger,tag); - -create table profile_block ( - - blocker integer not null /* comment 'user making the block' */ references "user" (id), - blocked integer not null /* comment 'profile that is blocked' */ references profile (id), - modified timestamp /* comment 'date of blocking' */, - - primary key (blocker, blocked) - -); - -create sequence user_group_seq; -create table user_group ( - - id bigint default nextval('user_group_seq') primary key /* comment 'unique identifier' */, - - nickname varchar(64) unique /* comment 'nickname for addressing' */, - fullname varchar(255) /* comment 'display name' */, - homepage varchar(255) /* comment 'URL, cached so we dont regenerate' */, - description varchar(140) /* comment 'descriptive biography' */, - location varchar(255) /* comment 'related physical location, if any' */, - - original_logo varchar(255) /* comment 'original size logo' */, - homepage_logo varchar(255) /* comment 'homepage (profile) size logo' */, - stream_logo varchar(255) /* comment 'stream-sized logo' */, - mini_logo varchar(255) /* comment 'mini logo' */, - design_id integer /*comment 'id of a design' */ references design(id), - - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ - -); -create index user_group_nickname_idx on user_group using btree(nickname); - -create table group_member ( - - group_id integer not null /* comment 'foreign key to user_group' */ references user_group (id), - profile_id integer not null /* comment 'foreign key to profile table' */ references profile (id), - is_admin integer default 0 /* comment 'is this user an admin?' */, - - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key (group_id, profile_id) -); - -create table related_group ( - - group_id integer not null /* comment 'foreign key to user_group' */ references user_group (id) , - related_group_id integer not null /* comment 'foreign key to user_group' */ references user_group (id), - - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, - - primary key (group_id, related_group_id) - -); - -create table group_inbox ( - group_id integer not null /* comment 'group receiving the message' references user_group (id) */, - notice_id integer not null /* comment 'notice received' references notice (id) */, - created timestamp not null default CURRENT_TIMESTAMP /* comment 'date the notice was created' */, - primary key (group_id, notice_id) -); -create index group_inbox_created_idx on group_inbox using btree(created); - -/*attachments and URLs stuff */ -create sequence file_seq; -create table file ( - id bigint default nextval('file_seq') primary key /* comment 'unique identifier' */, - url varchar(255) unique, - mimetype varchar(50), - size integer, - title varchar(255), - date integer, - protected integer, - filename text /* comment 'if a local file, name of the file' */, - modified timestamp default CURRENT_TIMESTAMP /* comment 'date this record was modified'*/ -); - -create sequence file_oembed_seq; -create table file_oembed ( - file_id bigint default nextval('file_oembed_seq') primary key /* comment 'unique identifier' */, - version varchar(20), - type varchar(20), - mimetype varchar(50), - provider varchar(50), - provider_url varchar(255), - width integer, - height integer, - html text, - title varchar(255), - author_name varchar(50), - author_url varchar(255), - url varchar(255) -); - -create sequence file_redirection_seq; -create table file_redirection ( - url varchar(255) primary key, - file_id bigint, - redirections integer, - httpcode integer -); - -create sequence file_thumbnail_seq; -create table file_thumbnail ( - file_id bigint primary key, - url varchar(255) unique, - width integer, - height integer -); - -create sequence file_to_post_seq; -create table file_to_post ( - file_id bigint, - post_id bigint, - - primary key (file_id, post_id) -); - -create table group_block ( - group_id integer not null /* comment 'group profile is blocked from' */ references user_group (id), - blocked integer not null /* comment 'profile that is blocked' */references profile (id), - blocker integer not null /* comment 'user making the block'*/ references "user" (id), - modified timestamp /* comment 'date of blocking'*/ , - - primary key (group_id, blocked) -); - -create table group_alias ( - - alias varchar(64) /* comment 'additional nickname for the group'*/ , - group_id integer not null /* comment 'group profile is blocked from'*/ references user_group (id), - modified timestamp /* comment 'date alias was created'*/, - primary key (alias) - -); -create index group_alias_group_id_idx on group_alias (group_id); - -create table session ( - - id varchar(32) primary key /* comment 'session ID'*/, - session_data text /* comment 'session data'*/, - created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/, - modified integer DEFAULT extract(epoch from CURRENT_TIMESTAMP) /* comment 'date this record was modified'*/ -); - -create index session_modified_idx on session (modified); - -create table deleted_notice ( - - id integer primary key /* comment 'identity of notice'*/ , - profile_id integer /* not null comment 'author of the notice'*/, - uri varchar(255) unique /* comment 'universally unique identifier, usually a tag URI'*/, - created timestamp not null /* comment 'date the notice record was created'*/ , - deleted timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date the notice record was created'*/ -); - -CREATE index deleted_notice_profile_id_idx on deleted_notice (profile_id); - -/* Textsearch stuff */ - -create index textsearch_idx on profile using gist(textsearch); -create index noticecontent_idx on notice using gist(to_tsvector('english',content)); -create trigger textsearchupdate before insert or update on profile for each row -execute procedure tsvector_update_trigger(textsearch, 'pg_catalog.english', nickname, fullname, location, bio, homepage); - -create table config ( - - section varchar(32) /* comment 'configuration section'*/, - setting varchar(32) /* comment 'configuration setting'*/, - value varchar(255) /* comment 'configuration value'*/, - - primary key (section, setting) - -); - -create table profile_role ( - - profile_id integer not null /* comment 'account having the role'*/ references profile (id), - role varchar(32) not null /* comment 'string representing the role'*/, - created timestamp /* not null comment 'date the role was granted'*/, - - primary key (profile_id, role) - -); - -create table location_namespace ( - - id integer /*comment 'identity for this namespace'*/, - description text /* comment 'description of the namespace'*/ , - created integer not null /*comment 'date the record was created*/ , - /* modified timestamp comment 'date this record was modified',*/ - primary key (id) - -); - -create table login_token ( - user_id integer not null /* comment 'user owning this token'*/ references "user" (id), - token char(32) not null /* comment 'token useable for logging in'*/, - created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/, - modified timestamp /* comment 'date this record was modified'*/, - - primary key (user_id) -); - -create table user_location_prefs ( - user_id integer not null /* comment 'user who has the preference' */ references "user" (id), - share_location integer default 1 /* comment 'Whether to share location data' */, - created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */, - - primary key (user_id) -); - -create table inbox ( - - user_id integer not null /* comment 'user receiving the notice' */ references "user" (id), - notice_ids bytea /* comment 'packed list of notice ids' */, - - primary key (user_id) - -); - -create sequence conversation_seq; -create table conversation ( - id bigint default nextval('conversation_seq') primary key /* comment 'unique identifier' */, - uri varchar(225) unique /* comment 'URI of the conversation' */, - created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ -); - -create table local_group ( - - group_id integer primary key /* comment 'group represented' */ references user_group (id), - nickname varchar(64) unique /* comment 'group represented' */, - - created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created' */, - modified timestamp /* comment 'date this record was modified' */ - -); - From f2387d9ad80948b014008834526dc42d8528fbf2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 18:23:28 -0400 Subject: [PATCH 054/118] remove old and dangerous rebuild scripts --- scripts/rebuilddb.sh | 14 -------------- scripts/rebuilddb_psql.sh | 34 ---------------------------------- 2 files changed, 48 deletions(-) delete mode 100755 scripts/rebuilddb.sh delete mode 100755 scripts/rebuilddb_psql.sh diff --git a/scripts/rebuilddb.sh b/scripts/rebuilddb.sh deleted file mode 100755 index 89bc6e252d..0000000000 --- a/scripts/rebuilddb.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -export user=$1 -export password=$2 -export DB=$3 -export SCR=$4 - -mysqldump -u $user --password=$password -c -t --hex-blob $DB > /tmp/$DB.sql -mysqladmin -u $user --password=$password -f drop $DB -mysqladmin -u $user --password=$password create $DB -mysql -u $user --password=$password $DB < $SCR -mysql -u $user --password=$password $DB < /tmp/$DB.sql - - diff --git a/scripts/rebuilddb_psql.sh b/scripts/rebuilddb_psql.sh deleted file mode 100755 index 6b15b9212f..0000000000 --- a/scripts/rebuilddb_psql.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash -# -# ******************************* WARNING ********************************* -# Do not run this script until you have read and understood the information -# below, AND backed up your database. Failure to observe these instructions -# may result in losing all the data in your database. -# -# This script is used to upgrade StatusNet's PostgreSQL database to the -# latest version. It does the following: -# -# 1. Dumps the existing data to /tmp/rebuilddb_psql.sql -# 2. Clears out the objects (tables, etc) in the database schema -# 3. Reconstructs the database schema using the latest script -# 4. Restores the data dumped in step 1 -# -# You MUST run this script as the 'postgres' user. -# You MUST be able to write to /tmp/rebuilddb_psql.sql -# You MUST specify the statusnet database user and database name on the -# command line, e.g. ./rebuilddb_psql.sh myuser mydbname -# - -user=$1 -DB=$2 - -cd `dirname $0` - -pg_dump -a -D --disable-trigger $DB > /tmp/rebuilddb_psql.sql -psql -c "drop schema public cascade; create schema public;" $DB -psql -c "grant all privileges on schema public to $user;" $DB -psql $DB < ../db/statusnet_pg.sql -psql $DB < /tmp/rebuilddb_psql.sql -for tab in `psql -c '\dts' $DB -tA | cut -d\| -f2`; do - psql -c "ALTER TABLE \"$tab\" OWNER TO $user;" $DB -done From 2b55641a9f0112b36943bbf30e6a12b211330a18 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 18:28:50 -0400 Subject: [PATCH 055/118] split gigantic README into separate files --- CONFIGURE | 854 +++++++++++++++++++++++++++++ INSTALL | 519 ++++++++++++++++++ PLUGINS | 44 ++ README | 1542 ----------------------------------------------------- UPGRADE | 121 +++++ 5 files changed, 1538 insertions(+), 1542 deletions(-) create mode 100644 CONFIGURE create mode 100644 INSTALL create mode 100644 PLUGINS create mode 100644 UPGRADE diff --git a/CONFIGURE b/CONFIGURE new file mode 100644 index 0000000000..0a3579885c --- /dev/null +++ b/CONFIGURE @@ -0,0 +1,854 @@ +Configuration options +===================== + +The main configuration file for StatusNet (excepting configurations for +dependency software) is config.php in your StatusNet directory. If you +edit any other file in the directory, like lib/default.php (where most +of the defaults are defined), you will lose your configuration options +in any upgrade, and you will wish that you had been more careful. + +Starting with version 0.9.0, a Web based configuration panel has been +added to StatusNet. The preferred method for changing config options is +to use this panel. + +A command-line script, setconfig.php, can be used to set individual +configuration options. It's in the scripts/ directory. + +Starting with version 0.7.1, you can put config files in the +/etc/statusnet/ directory on your server, if it exists. Config files +will be included in this order: + +* /etc/statusnet/statusnet.php - server-wide config +* /etc/statusnet/.php - for a virtual host +* /etc/statusnet/_.php - for a path +* INSTALLDIR/config.php - for a particular implementation + +Almost all configuration options are made through a two-dimensional +associative array, cleverly named $config. A typical configuration +line will be: + + $config['section']['option'] = value; + +For brevity, the following documentation describes each section and +option. + +site +---- + +This section is a catch-all for site-wide variables. + +name: the name of your site, like 'YourCompany Microblog'. +server: the server part of your site's URLs, like 'example.net'. +path: The path part of your site's URLs, like 'statusnet' or '' + (installed in root). +fancy: whether or not your site uses fancy URLs (see Fancy URLs + section above). Default is false. +logfile: full path to a file for StatusNet to save logging + information to. You may want to use this if you don't have + access to syslog. +logdebug: whether to log additional debug info like backtraces on + hard errors. Default false. +locale_path: full path to the directory for locale data. Unless you + store all your locale data in one place, you probably + don't need to use this. +language: default language for your site. Defaults to US English. + Note that this is overridden if a user is logged in and has + selected a different language. It is also overridden if the + user is NOT logged in, but their browser requests a different + langauge. Since pretty much everybody's browser requests a + language, that means that changing this setting has little or + no effect in practice. +languages: A list of languages supported on your site. Typically you'd + only change this if you wanted to disable support for one + or another language: + "unset($config['site']['languages']['de'])" will disable + support for German. +theme: Theme for your site (see Theme section). Two themes are + provided by default: 'default' and 'stoica' (the one used by + Identi.ca). It's appreciated if you don't use the 'stoica' theme + except as the basis for your own. +email: contact email address for your site. By default, it's extracted + from your Web server environment; you may want to customize it. +broughtbyurl: name of an organization or individual who provides the + service. Each page will include a link to this name in the + footer. A good way to link to the blog, forum, wiki, + corporate portal, or whoever is making the service available. +broughtby: text used for the "brought by" link. +timezone: default timezone for message display. Users can set their + own time zone. Defaults to 'UTC', which is a pretty good default. +closed: If set to 'true', will disallow registration on your site. + This is a cheap way to restrict accounts to only one + individual or group; just register the accounts you want on + the service, *then* set this variable to 'true'. +inviteonly: If set to 'true', will only allow registration if the user + was invited by an existing user. +private: If set to 'true', anonymous users will be redirected to the + 'login' page. Also, API methods that normally require no + authentication will require it. Note that this does not turn + off registration; use 'closed' or 'inviteonly' for the + behaviour you want. +notice: A plain string that will appear on every page. A good place + to put introductory information about your service, or info about + upgrades and outages, or other community info. Any HTML will + be escaped. +logo: URL of an image file to use as the logo for the site. Overrides + the logo in the theme, if any. +ssllogo: URL of an image file to use as the logo on SSL pages. If unset, + theme logo is used instead. +ssl: Whether to use SSL and https:// URLs for some or all pages. + Possible values are 'always' (use it for all pages), 'never' + (don't use it for any pages), or 'sometimes' (use it for + sensitive pages that include passwords like login and registration, + but not for regular pages). Default to 'never'. +sslserver: use an alternate server name for SSL URLs, like + 'secure.example.org'. You should be careful to set cookie + parameters correctly so that both the SSL server and the + "normal" server can access the session cookie and + preferably other cookies as well. +shorturllength: ignored. See 'url' section below. +dupelimit: minimum time allowed for one person to say the same thing + twice. Default 60s. Anything lower is considered a user + or UI error. +textlimit: default max size for texts in the site. Defaults to 0 (no limit). + Can be fine-tuned for notices, messages, profile bios and group descriptions. + +db +-- + +This section is a reference to the configuration options for +DB_DataObject (see ). The ones that you may want to +set are listed below for clarity. + +database: a DSN (Data Source Name) for your StatusNet database. This is + in the format 'protocol://username:password@hostname/databasename', + where 'protocol' is 'mysql' or 'mysqli' (or possibly 'postgresql', if you + really know what you're doing), 'username' is the username, + 'password' is the password, and etc. +ini_yourdbname: if your database is not named 'statusnet', you'll need + to set this to point to the location of the + statusnet.ini file. Note that the real name of your database + should go in there, not literally 'yourdbname'. +db_driver: You can try changing this to 'MDB2' to use the other driver + type for DB_DataObject, but note that it breaks the OpenID + libraries, which only support PEAR::DB. +debug: On a database error, you may get a message saying to set this + value to 5 to see debug messages in the browser. This breaks + just about all pages, and will also expose the username and + password +quote_identifiers: Set this to true if you're using postgresql. +type: either 'mysql' or 'postgresql' (used for some bits of + database-type-specific SQL in the code). Defaults to mysql. +mirror: you can set this to an array of DSNs, like the above + 'database' value. If it's set, certain read-only actions will + use a random value out of this array for the database, rather + than the one in 'database' (actually, 'database' is overwritten). + You can offload a busy DB server by setting up MySQL replication + and adding the slaves to this array. Note that if you want some + requests to go to the 'database' (master) server, you'll need + to include it in this array, too. +utf8: whether to talk to the database in UTF-8 mode. This is the default + with new installations, but older sites may want to turn it off + until they get their databases fixed up. See "UTF-8 database" + above for details. +schemacheck: when to let plugins check the database schema to add + tables or update them. Values can be 'runtime' (default) + or 'script'. 'runtime' can be costly (plugins check the + schema on every hit, adding potentially several db + queries, some quite long), but not everyone knows how to + run a script. If you can, set this to 'script' and run + scripts/checkschema.php whenever you install or upgrade a + plugin. + +syslog +------ + +By default, StatusNet sites log error messages to the syslog facility. +(You can override this using the 'logfile' parameter described above). + +appname: The name that StatusNet uses to log messages. By default it's + "statusnet", but if you have more than one installation on the + server, you may want to change the name for each instance so + you can track log messages more easily. +priority: level to log at. Currently ignored. +facility: what syslog facility to used. Defaults to LOG_USER, only + reset if you know what syslog is and have a good reason + to change it. + +queue +----- + +You can configure the software to queue time-consuming tasks, like +sending out SMS email or XMPP messages, for off-line processing. See +'Queues and daemons' above for how to set this up. + +enabled: Whether to uses queues. Defaults to false. +subsystem: Which kind of queueserver to use. Values include "db" for + our hacked-together database queuing (no other server + required) and "stomp" for a stomp server. +stomp_server: "broker URI" for stomp server. Something like + "tcp://hostname:61613". More complicated ones are + possible; see your stomp server's documentation for + details. +queue_basename: a root name to use for queues (stomp only). Typically + something like '/queue/sitename/' makes sense. If running + multiple instances on the same server, make sure that + either this setting or $config['site']['nickname'] are + unique for each site to keep them separate. + +stomp_username: username for connecting to the stomp server; defaults + to null. +stomp_password: password for connecting to the stomp server; defaults + to null. + +stomp_persistent: keep items across queue server restart, if enabled. + Under ActiveMQ, the server configuration determines if and how + persistent storage is actually saved. + + If using a message queue server other than ActiveMQ, you may + need to disable this if it does not support persistence. + +stomp_transactions: use transactions to aid in error detection. + A broken transaction will be seen quickly, allowing a message + to be redelivered immediately if a daemon crashes. + + If using a message queue server other than ActiveMQ, you may + need to disable this if it does not support transactions. + +stomp_acks: send acknowledgements to aid in flow control. + An acknowledgement of successful processing tells the server + we're ready for more and can help keep things moving smoothly. + + This should *not* be turned off when running with ActiveMQ, but + if using another message queue server that does not support + acknowledgements you might need to disable this. + +softlimit: an absolute or relative "soft memory limit"; daemons will + restart themselves gracefully when they find they've hit + this amount of memory usage. Defaults to 90% of PHP's global + memory_limit setting. + +inboxes: delivery of messages to receiver's inboxes can be delayed to + queue time for best interactive performance on the sender. + This may however be annoyingly slow when using the DB queues, + so you can set this to false if it's causing trouble. + +breakout: for stomp, individual queues are by default grouped up for + best scalability. If some need to be run by separate daemons, + etc they can be manually adjusted here. + + Default will share all queues for all sites within each group. + Specify as / or //, + using nickname identifier as site. + + 'main/distrib' separate "distrib" queue covering all sites + 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite' + +max_retries: for stomp, drop messages after N failed attempts to process. + Defaults to 10. + +dead_letter_dir: for stomp, optional directory to dump data on failed + queue processing events after discarding them. + +stomp_no_transactions: for stomp, the server does not support transactions, + so do not try to user them. This is needed for http://www.morbidq.com/. + +stomp_no_acks: for stomp, the server does not support acknowledgements. + so do not try to user them. This is needed for http://www.morbidq.com/. + +license +------- + +The default license to use for your users notices. The default is the +Creative Commons Attribution 3.0 license, which is probably the right +choice for any public site. Note that some other servers will not +accept notices if you apply a stricter license than this. + +type: one of 'cc' (for Creative Commons licenses), 'allrightsreserved' + (default copyright), or 'private' (for private and confidential + information). +owner: for 'allrightsreserved' or 'private', an assigned copyright + holder (for example, an employer for a private site). If + not specified, will be attributed to 'contributors'. +url: URL of the license, used for links. +title: Title for the license, like 'Creative Commons Attribution 3.0'. +image: A button shown on each page for the license. + +mail +---- + +This is for configuring out-going email. We use PEAR's Mail module, +see: http://pear.php.net/manual/en/package.mail.mail.factory.php + +backend: the backend to use for mail, one of 'mail', 'sendmail', and + 'smtp'. Defaults to PEAR's default, 'mail'. +params: if the mail backend requires any parameters, you can provide + them in an associative array. + +nickname +-------- + +This is for configuring nicknames in the service. + +blacklist: an array of strings for usernames that may not be + registered. A default array exists for strings that are + used by StatusNet (e.g. 'doc', 'main', 'avatar', 'theme') + but you may want to add others if you have other software + installed in a subdirectory of StatusNet or if you just + don't want certain words used as usernames. +featured: an array of nicknames of 'featured' users of the site. + Can be useful to draw attention to well-known users, or + interesting people, or whatever. + +avatar +------ + +For configuring avatar access. + +dir: Directory to look for avatar files and to put them into. + Defaults to avatar subdirectory of install directory; if + you change it, make sure to change path, too. +path: Path to avatars. Defaults to path for avatar subdirectory, + but you can change it if you wish. Note that this will + be included with the avatar server, too. +server: If set, defines another server where avatars are stored in the + root directory. Note that the 'avatar' subdir still has to be + writeable. You'd typically use this to split HTTP requests on + the client to speed up page loading, either with another + virtual server or with an NFS or SAMBA share. Clients + typically only make 2 connections to a single server at a + time , so this can parallelize the job. + Defaults to null. +ssl: Whether to access avatars using HTTPS. Defaults to null, meaning + to guess based on site-wide SSL settings. + +public +------ + +For configuring the public stream. + +localonly: If set to true, only messages posted by users of this + service (rather than other services, filtered through OStatus) + are shown in the public stream. Default true. +blacklist: An array of IDs of users to hide from the public stream. + Useful if you have someone making excessive Twitterfeed posts + to the site, other kinds of automated posts, testing bots, etc. +autosource: Sources of notices that are from automatic posters, and thus + should be kept off the public timeline. Default empty. + +theme +----- + +server: Like avatars, you can speed up page loading by pointing the + theme file lookup to another server (virtual or real). + Defaults to NULL, meaning to use the site server. +dir: Directory where theme files are stored. Used to determine + whether to show parts of a theme file. Defaults to the theme + subdirectory of the install directory. +path: Path part of theme URLs, before the theme name. Relative to the + theme server. It may make sense to change this path when upgrading, + (using version numbers as the path) to make sure that all files are + reloaded by caching clients or proxies. Defaults to null, + which means to use the site path + '/theme'. +ssl: Whether to use SSL for theme elements. Default is null, which means + guess based on site SSL settings. +sslserver: SSL server to use when page is HTTPS-encrypted. If + unspecified, site ssl server and so on will be used. +sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. + +javascript +---------- + +server: You can speed up page loading by pointing the + theme file lookup to another server (virtual or real). + Defaults to NULL, meaning to use the site server. +path: Path part of Javascript URLs. Defaults to null, + which means to use the site path + '/js/'. +ssl: Whether to use SSL for JavaScript files. Default is null, which means + guess based on site SSL settings. +sslserver: SSL server to use when page is HTTPS-encrypted. If + unspecified, site ssl server and so on will be used. +sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. +bustframes: If true, all web pages will break out of framesets. If false, + can comfortably live in a frame or iframe... probably. Default + to true. + +xmpp +---- + +For configuring the XMPP sub-system. + +enabled: Whether to accept and send messages by XMPP. Default false. +server: server part of XMPP ID for update user. +port: connection port for clients. Default 5222, which you probably + shouldn't need to change. +user: username for the client connection. Users will receive messages + from 'user'@'server'. +resource: a unique identifier for the connection to the server. This + is actually used as a prefix for each XMPP component in the system. +password: password for the user account. +host: some XMPP domains are served by machines with a different + hostname. (For example, @gmail.com GTalk users connect to + talk.google.com). Set this to the correct hostname if that's the + case with your server. +encryption: Whether to encrypt the connection between StatusNet and the + XMPP server. Defaults to true, but you can get + considerably better performance turning it off if you're + connecting to a server on the same machine or on a + protected network. +debug: if turned on, this will make the XMPP library blurt out all of + the incoming and outgoing messages as XML stanzas. Use as a + last resort, and never turn it on if you don't have queues + enabled, since it will spit out sensitive data to the browser. +public: an array of JIDs to send _all_ notices to. This is useful for + participating in third-party search and archiving services. + +invite +------ + +For configuring invites. + +enabled: Whether to allow users to send invites. Default true. + +tag +--- + +Miscellaneous tagging stuff. + +dropoff: Decay factor for tag listing, in seconds. + Defaults to exponential decay over ten days; you can twiddle + with it to try and get better results for your site. + +popular +------- + +Settings for the "popular" section of the site. + +dropoff: Decay factor for popularity listing, in seconds. + Defaults to exponential decay over ten days; you can twiddle + with it to try and get better results for your site. + +daemon +------ + +For daemon processes. + +piddir: directory that daemon processes should write their PID file + (process ID) to. Defaults to /var/run/, which is where this + stuff should usually go on Unix-ish systems. +user: If set, the daemons will try to change their effective user ID + to this user before running. Probably a good idea, especially if + you start the daemons as root. Note: user name, like 'daemon', + not 1001. +group: If set, the daemons will try to change their effective group ID + to this named group. Again, a name, not a numerical ID. + +memcached +--------- + +You can get a significant boost in performance by caching some +database data in memcached . + +enabled: Set to true to enable. Default false. +server: a string with the hostname of the memcached server. Can also + be an array of hostnames, if you've got more than one server. +base: memcached uses key-value pairs to store data. We build long, + funny-looking keys to make sure we don't have any conflicts. The + base of the key is usually a simplified version of the site name + (like "Identi.ca" => "identica"), but you can overwrite this if + you need to. You can safely ignore it if you only have one + StatusNet site using your memcached server. +port: Port to connect to; defaults to 11211. + +emailpost +--------- + +For post-by-email. + +enabled: Whether to enable post-by-email. Defaults to true. You will + also need to set up maildaemon.php. + +sms +--- + +For SMS integration. + +enabled: Whether to enable SMS integration. Defaults to true. Queues + should also be enabled. + +integration +----------- + +A catch-all for integration with other systems. + +taguri: base for tag:// URIs. Defaults to site-server + ',2009'. + +inboxes +------- + +For notice inboxes. + +enabled: No longer used. If you set this to something other than true, + StatusNet will no longer run. + +throttle +-------- + +For notice-posting throttles. + +enabled: Whether to throttle posting. Defaults to false. +count: Each user can make this many posts in 'timespan' seconds. So, if count + is 100 and timespan is 3600, then there can be only 100 posts + from a user every hour. +timespan: see 'count'. + +profile +------- + +Profile management. + +biolimit: max character length of bio; 0 means no limit; null means to use + the site text limit default. +backup: whether users can backup their own profiles. Defaults to true. +restore: whether users can restore their profiles from backup files. Defaults + to true. +delete: whether users can delete their own accounts. Defaults to false. +move: whether users can move their accounts to another server. Defaults + to true. + +newuser +------- + +Options with new users. + +default: nickname of a user account to automatically subscribe new + users to. Typically this would be system account for e.g. + service updates or announcements. Users are able to unsub + if they want. Default is null; no auto subscribe. +welcome: nickname of a user account that sends welcome messages to new + users. Can be the same as 'default' account, although on + busy servers it may be a good idea to keep that one just for + 'urgent' messages. Default is null; no message. + +If either of these special user accounts are specified, the users should +be created before the configuration is updated. + +snapshot +-------- + +The software will, by default, send statistical snapshots about the +local installation to a stats server on the status.net Web site. This +data is used by the developers to prioritize development decisions. No +identifying data about users or organizations is collected. The data +is available to the public for review. Participating in this survey +helps StatusNet developers take your needs into account when updating +the software. + +run: string indicating when to run the statistics. Values can be 'web' + (run occasionally at Web time), 'cron' (run from a cron script), + or 'never' (don't ever run). If you set it to 'cron', remember to + schedule the script to run on a regular basis. +frequency: if run value is 'web', how often to report statistics. + Measured in Web hits; depends on how active your site is. + Default is 10000 -- that is, one report every 10000 Web hits, + on average. +reporturl: URL to post statistics to. Defaults to StatusNet developers' + report system, but if they go evil or disappear you may + need to update this to another value. Note: if you + don't want to report stats, it's much better to + set 'run' to 'never' than to set this value to something + nonsensical. + +attachments +----------- + +The software lets users upload files with their notices. You can configure +the types of accepted files by mime types and a trio of quota options: +per file, per user (total), per user per month. + +We suggest the use of the pecl file_info extension to handle mime type +detection. + +supported: an array of mime types you accept to store and distribute, + like 'image/gif', 'video/mpeg', 'audio/mpeg', etc. Make sure you + setup your server to properly recognize the types you want to + support. +uploads: false to disable uploading files with notices (true by default). +filecommand: The required MIME_Type library may need to use the 'file' + command. It tries the one in the Web server's path, but if + you're having problems with uploads, try setting this to the + correct value. Note: 'file' must accept '-b' and '-i' options. + +For quotas, be sure you've set the upload_max_filesize and post_max_size +in php.ini to be large enough to handle your upload. In httpd.conf +(if you're using apache), check that the LimitRequestBody directive isn't +set too low (it's optional, so it may not be there at all). + +file_quota: maximum size for a single file upload in bytes. A user can send + any amount of notices with attachments as long as each attachment + is smaller than file_quota. +user_quota: total size in bytes a user can store on this server. Each user + can store any number of files as long as their total size does + not exceed the user_quota. +monthly_quota: total size permitted in the current month. This is the total + size in bytes that a user can upload each month. +dir: directory accessible to the Web process where uploads should go. + Defaults to the 'file' subdirectory of the install directory, which + should be writeable by the Web user. +server: server name to use when creating URLs for uploaded files. + Defaults to null, meaning to use the default Web server. Using + a virtual server here can speed up Web performance. +path: URL path, relative to the server, to find files. Defaults to + main path + '/file/'. +ssl: whether to use HTTPS for file URLs. Defaults to null, meaning to + guess based on other SSL settings. +filecommand: command to use for determining the type of a file. May be + skipped if fileinfo extension is installed. Defaults to + '/usr/bin/file'. +sslserver: if specified, this server will be used when creating HTTPS + URLs. Otherwise, the site SSL server will be used, with /file/ path. +sslpath: if this and the sslserver are specified, this path will be used + when creating HTTPS URLs. Otherwise, the attachments|path value + will be used. + +group +----- + +Options for group functionality. + +maxaliases: maximum number of aliases a group can have. Default 3. Set + to 0 or less to prevent aliases in a group. +desclimit: maximum number of characters to allow in group descriptions. + null (default) means to use the site-wide text limits. 0 + means no limit. +addtag: Whether to add a tag for the group nickname for every group post + (pre-1.0.x behaviour). Defaults to false. + +oembed +-------- + +oEmbed endpoint for multimedia attachments (links in posts). Will also +work as 'oohembed' for backwards compatibility. + +endpoint: oohembed endpoint using http://oohembed.com/ software. Defaults to + 'http://oohembed.com/oohembed/'. +order: Array of methods to check for OEmbed data. Methods include 'built-in' + (use a built-in function to simulate oEmbed for some sites), + 'well-known' (use well-known public oEmbed endpoints), + 'discovery' (discover using headers in HTML), 'service' (use + a third-party service, like oohembed or embed.ly. Default is + array('built-in', 'well-known', 'service', 'discovery'). Note that very + few sites implement oEmbed; 'discovery' is going to fail 99% of the + time. + +search +------ + +Some stuff for search. + +type: type of search. Ignored if PostgreSQL or Sphinx are enabled. Can either + be 'fulltext' (default) or 'like'. The former is faster and more efficient + but requires the lame old MyISAM engine for MySQL. The latter + will work with InnoDB but could be miserably slow on large + systems. We'll probably add another type sometime in the future, + with our own indexing system (maybe like MediaWiki's). + +sessions +-------- + +Session handling. + +handle: boolean. Whether we should register our own PHP session-handling + code (using the database and memcache if enabled). Defaults to false. + Setting this to true makes some sense on large or multi-server + sites, but it probably won't hurt for smaller ones, either. +debug: whether to output debugging info for session storage. Can help + with weird session bugs, sometimes. Default false. + +background +---------- + +Users can upload backgrounds for their pages; this section defines +their use. + +server: the server to use for background. Using a separate (even + virtual) server for this can speed up load times. Default is + null; same as site server. +dir: directory to write backgrounds too. Default is '/background/' + subdir of install dir. +path: path to backgrounds. Default is sub-path of install path; note + that you may need to change this if you change site-path too. +sslserver: SSL server to use when page is HTTPS-encrypted. If + unspecified, site ssl server and so on will be used. +sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. + +ping +---- + +Using the "XML-RPC Ping" method initiated by weblogs.com, the site can +notify third-party servers of updates. + +notify: an array of URLs for ping endpoints. Default is the empty + array (no notification). + +design +------ + +Default design (colors and background) for the site. Actual appearance +depends on the theme. Null values mean to use the theme defaults. + +backgroundcolor: Hex color of the site background. +contentcolor: Hex color of the content area background. +sidebarcolor: Hex color of the sidebar background. +textcolor: Hex color of all non-link text. +linkcolor: Hex color of all links. +backgroundimage: Image to use for the background. +disposition: Flags for whether or not to tile the background image. + +notice +------ + +Configuration options specific to notices. + +contentlimit: max length of the plain-text content of a notice. + Default is null, meaning to use the site-wide text limit. + 0 means no limit. +defaultscope: default scope for notices. If null, the default + scope depends on site/private. It's 1 if the site is private, + 0 otherwise. Set this value to override. + +message +------- + +Configuration options specific to messages. + +contentlimit: max length of the plain-text content of a message. + Default is null, meaning to use the site-wide text limit. + 0 means no limit. + +logincommand +------------ + +Configuration options for the login command. + +disabled: whether to enable this command. If enabled, users who send + the text 'login' to the site through any channel will + receive a link to login to the site automatically in return. + Possibly useful for users who primarily use an XMPP or SMS + interface and can't be bothered to remember their site + password. Note that the security implications of this are + pretty serious and have not been thoroughly tested. You + should enable it only after you've convinced yourself that + it is safe. Default is 'false'. + +singleuser +---------- + +If an installation has only one user, this can simplify a lot of the +interface. It also makes the user's profile the root URL. + +enabled: Whether to run in "single user mode". Default false. +nickname: nickname of the single user. If no nickname is specified, + the site owner account will be used (if present). + +robotstxt +--------- + +We put out a default robots.txt file to guide the processing of +Web crawlers. See http://www.robotstxt.org/ for more information +on the format of this file. + +crawldelay: if non-empty, this value is provided as the Crawl-Delay: + for the robots.txt file. see http://ur1.ca/l5a0 + for more information. Default is zero, no explicit delay. +disallow: Array of (virtual) directories to disallow. Default is 'main', + 'search', 'message', 'settings', 'admin'. Ignored when site + is private, in which case the entire site ('/') is disallowed. + +api +--- + +Options for the Twitter-like API. + +realm: HTTP Basic Auth realm (see http://tools.ietf.org/html/rfc2617 + for details). Some third-party tools like ping.fm want this to be + 'Identi.ca API', so set it to that if you want to. default = null, + meaning 'something based on the site name'. + +nofollow +-------- + +We optionally put 'rel="nofollow"' on some links in some pages. The +following configuration settings let you fine-tune how or when things +are nofollowed. See http://en.wikipedia.org/wiki/Nofollow for more +information on what 'nofollow' means. + +subscribers: whether to nofollow links to subscribers on the profile + and personal pages. Default is true. +members: links to members on the group page. Default true. +peopletag: links to people listed in the peopletag page. Default true. +external: external links in notices. One of three values: 'sometimes', + 'always', 'never'. If 'sometimes', then external links are not + nofollowed on profile, notice, and favorites page. Default is + 'sometimes'. + +url +--- + +Everybody loves URL shorteners. These are some options for fine-tuning +how and when the server shortens URLs. + +shortener: URL shortening service to use by default. Users can override + individually. 'ur1.ca' by default. +maxlength: If an URL is strictly longer than this limit, it will be + shortened. Note that the URL shortener service may return an + URL longer than this limit. Defaults to 25. Users can + override. If set to 0, all URLs will be shortened. +maxnoticelength: If a notice is strictly longer than this limit, all + URLs in the notice will be shortened. Users can override. + -1 means the text limit for notices. + +router +------ + +We use a router class for mapping URLs to code. This section controls +how that router works. + +cache: whether to cache the router in memcache (or another caching + mechanism). Defaults to true, but may be set to false for + developers (who might be actively adding pages, so won't want the + router cached) or others who see strange behavior. You're unlikely + to need this unless you're a developer. + +http +---- + +Settings for the HTTP client. + +ssl_cafile: location of the CA file for SSL. If not set, won't verify + SSL peers. Default unset. +curl: Use cURL for doing HTTP calls. You must + have the PHP curl extension installed for this to work. +proxy_host: Host to use for proxying HTTP requests. If unset, doesn't + do any HTTP proxy stuff. Default unset. +proxy_port: Port to use to connect to HTTP proxy host. Default null. +proxy_user: Username to use for authenticating to the HTTP proxy. Default null. +proxy_password: Password to use for authenticating to the HTTP proxy. Default null. +proxy_auth_scheme: Scheme to use for authenticating to the HTTP proxy. Default null. + +plugins +------- + +default: associative array mapping plugin name to array of arguments. To disable + a default plugin, unset its value in this array. +locale_path: path for finding plugin locale files. In the plugin's directory + by default. +server: Server to find static files for a plugin when the page is plain old HTTP. + Defaults to site/server (same as pages). Use this to move plugin CSS and + JS files to a CDN. +sslserver: Server to find static files for a plugin when the page is HTTPS. Defaults + to site/server (same as pages). Use this to move plugin CSS and JS files + to a CDN. +path: Path to the plugin files. defaults to site/path + '/plugins/'. Expects that + each plugin will have a subdirectory at plugins/NameOfPlugin. Change this + if you're using a CDN. +sslpath: Path to use on the SSL server. Same as plugins/path. diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000000..db7aba017f --- /dev/null +++ b/INSTALL @@ -0,0 +1,519 @@ +Prerequisites +============= + +The following software packages are *required* for this software to +run correctly. + +- PHP 5.2.3+. It may be possible to run this software on earlier + versions of PHP, but many of the functions used are only available + in PHP 5.2 or above. 5.2.6 or later is needed for XMPP background + daemons on 64-bit platforms. PHP 5.3.x should work correctly in this + release, but problems with some plugins are possible. +- MySQL 5.x. The StatusNet database is stored, by default, in a MySQL + server. It has been primarily tested on 5.x servers, although it may + be possible to install on earlier (or later!) versions. The server + *must* support the MyISAM storage engine -- the default for most + MySQL servers -- *and* the InnoDB storage engine. +- A Web server. Preferably, you should have Apache 2.2.x with the + mod_rewrite extension installed and enabled. + +Your PHP installation must include the following PHP extensions: + +- Curl. This is for fetching files by HTTP. +- XMLWriter. This is for formatting XML and HTML output. +- MySQL. For accessing the database. +- GD. For scaling down avatar images. +- mbstring. For handling Unicode (UTF-8) encoded strings. + +For some functionality, you will also need the following extensions: + +- Memcache. A client for the memcached server, which caches database + information in volatile memory. This is important for adequate + performance on high-traffic sites. You will also need a memcached + server to store the data in. +- Mailparse. Efficient parsing of email requires this extension. + Submission by email or SMS-over-email uses this extension. +- Sphinx Search. A client for the sphinx server, an alternative + to MySQL or Postgresql fulltext search. You will also need a + Sphinx server to serve the search queries. +- bcmath or gmp. For Salmon signatures (part of OStatus). Needed + if you have OStatus configured. +- gettext. For multiple languages. Default on many PHP installs; + will be emulated if not present. + +You will almost definitely get 2-3 times better performance from your +site if you install a PHP bytecode cache/accelerator. Some well-known +examples are: eaccelerator, Turck mmcache, xcache, apc. Zend Optimizer +is a proprietary accelerator installed on some hosting sites. + +External libraries +------------------ + +A number of external PHP libraries are used to provide basic +functionality and optional functionality for your system. For your +convenience, they are available in the "extlib" directory of this +package, and you do not have to download and install them. However, +you may want to keep them up-to-date with the latest upstream version, +and the URLs are listed here for your convenience. + +- DB_DataObject http://pear.php.net/package/DB_DataObject +- Validate http://pear.php.net/package/Validate +- OpenID from OpenIDEnabled (not the PEAR version!). We decided + to use the openidenabled.com version since it's more widely + implemented, and seems to be better supported. + http://openidenabled.com/php-openid/ +- PEAR DB. Although this is an older data access system (new + packages should probably use PHP DBO), the OpenID libraries + depend on PEAR DB so we use it here, too. DB_DataObject can + also use PEAR MDB2, which may give you better performance + but won't work with OpenID. + http://pear.php.net/package/DB +- OAuth.php from http://oauth.googlecode.com/svn/code/php/ +- markdown.php from http://michelf.com/projects/php-markdown/ +- PEAR Mail, for sending out mail notifications + http://pear.php.net/package/Mail +- PEAR Net_SMTP, if you use the SMTP factory for notifications + http://pear.php.net/package/Net_SMTP +- PEAR Net_Socket, if you use the SMTP factory for notifications + http://pear.php.net/package/Net_Socket +- XMPPHP, the follow-up to Class.Jabber.php. Probably the best XMPP + library available for PHP. http://xmpphp.googlecode.com/. Note that + as of this writing the version of this library that is available in + the extlib directory is *significantly different* from the upstream + version (patches have been submitted). Upgrading to the upstream + version may render your StatusNet site unable to send or receive XMPP + messages. +- Facebook library. Used for the Facebook application. +- PEAR Validate is used for URL and email validation. +- Console_GetOpt for parsing command-line options. + predecessor to OStatus. +- HTTP_Request2, a library for making HTTP requests. +- PEAR Net_URL2 is an HTTP_Request2 dependency. + +A design goal of StatusNet is that the basic Web functionality should +work on even the most restrictive commercial hosting services. +However, additional functionality, such as receiving messages by +Jabber/GTalk, require that you be able to run long-running processes +on your account. In addition, posting by email or from SMS require +that you be able to install a mail filter in your mail server. + +Installation +============ + +Installing the basic StatusNet Web component is relatively easy, +especially if you've previously installed PHP/MySQL packages. + +1. Unpack the tarball you downloaded on your Web server. Usually a + command like this will work: + + tar zxf statusnet-0.9.9.tar.gz + + ...which will make a statusnet-0.9.9 subdirectory in your current + directory. (If you don't have shell access on your Web server, you + may have to unpack the tarball on your local computer and FTP the + files to the server.) + +2. Move the tarball to a directory of your choosing in your Web root + directory. Usually something like this will work: + + mv statusnet-0.9.9 /var/www/statusnet + + This will make your StatusNet instance available in the statusnet path of + your server, like "http://example.net/statusnet". "microblog" or + "statusnet" might also be good path names. If you know how to + configure virtual hosts on your web server, you can try setting up + "http://micro.example.net/" or the like. + +3. Make your target directory writeable by the Web server. + + chmod a+w /var/www/statusnet/ + + On some systems, this will probably work: + + chgrp www-data /var/www/statusnet/ + chmod g+w /var/www/statusnet/ + + If your Web server runs as another user besides "www-data", try + that user's default group instead. As a last resort, you can create + a new group like "statusnet" and add the Web server's user to the group. + +4. You should also take this moment to make your avatar, background, and + file subdirectories writeable by the Web server. An insecure way to do + this is: + + chmod a+w /var/www/statusnet/avatar + chmod a+w /var/www/statusnet/background + chmod a+w /var/www/statusnet/file + + You can also make the avatar, background, and file directories + writeable by the Web server group, as noted above. + +5. Create a database to hold your microblog data. Something like this + should work: + + mysqladmin -u "username" --password="password" create statusnet + + Note that StatusNet must have its own database; you can't share the + database with another program. You can name it whatever you want, + though. + + (If you don't have shell access to your server, you may need to use + a tool like PHPAdmin to create a database. Check your hosting + service's documentation for how to create a new MySQL database.) + +6. Create a new database account that StatusNet will use to access the + database. If you have shell access, this will probably work from the + MySQL shell: + + GRANT ALL on statusnet.* + TO 'statusnetuser'@'localhost' + IDENTIFIED BY 'statusnetpassword'; + + You should change 'statusnetuser' and 'statusnetpassword' to your preferred new + username and password. You may want to test logging in to MySQL as + this new user. + +7. In a browser, navigate to the StatusNet install script; something like: + + http://yourserver.example.com/statusnet/install.php + + Enter the database connection information and your site name. The + install program will configure your site and install the initial, + almost-empty database. + +8. You should now be able to navigate to your microblog's main directory + and see the "Public Timeline", which will be empty. If not, magic + has happened! You can now register a new user, post some notices, + edit your profile, etc. However, you may want to wait to do that stuff + if you think you can set up "fancy URLs" (see below), since some + URLs are stored in the database. + +Fancy URLs +---------- + +By default, StatusNet will use URLs that include the main PHP program's +name in them. For example, a user's home profile might be +found at: + + http://example.org/statusnet/index.php/statusnet/fred + +On certain systems that don't support this kind of syntax, they'll +look like this: + + http://example.org/statusnet/index.php?p=statusnet/fred + +It's possible to configure the software so it looks like this instead: + + http://example.org/statusnet/fred + +These "fancy URLs" are more readable and memorable for users. To use +fancy URLs, you must either have Apache 2.x with .htaccess enabled and +mod_rewrite enabled, -OR- know how to configure "url redirection" in +your server. + +1. Copy the htaccess.sample file to .htaccess in your StatusNet + directory. Note: if you have control of your server's httpd.conf or + similar configuration files, it can greatly improve performance to + import the .htaccess file into your conf file instead. If you're + not sure how to do it, you may save yourself a lot of headache by + just leaving the .htaccess file. + +2. Change the "RewriteBase" in the new .htaccess file to be the URL path + to your StatusNet installation on your server. Typically this will + be the path to your StatusNet directory relative to your Web root. + +3. Add or uncomment or change a line in your config.php file so it says: + + $config['site']['fancy'] = true; + +You should now be able to navigate to a "fancy" URL on your server, +like: + + http://example.net/statusnet/main/register + +If you changed your HTTP server configuration, you may need to restart +the server first. + +If it doesn't work, double-check that AllowOverride for the StatusNet +directory is 'All' in your Apache configuration file. This is usually +/etc/httpd.conf, /etc/apache/httpd.conf, or (on Debian and Ubuntu) +/etc/apache2/sites-available/default. See the Apache documentation for +.htaccess files for more details: + + http://httpd.apache.org/docs/2.2/howto/htaccess.html + +Also, check that mod_rewrite is installed and enabled: + + http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html + +Sphinx +------ + +To use a Sphinx server to search users and notices, you'll need to +enable the SphinxSearch plugin. Add to your config.php: + + addPlugin('SphinxSearch'); + $config['sphinx']['server'] = 'searchhost.local'; + +You also need to install, compile and enable the sphinx pecl extension for +php on the client side, which itself depends on the sphinx development files. + +See plugins/SphinxSearch/README for more details and server setup. + +SMS +--- + +StatusNet supports a cheap-and-dirty system for sending update messages +to mobile phones and for receiving updates from the mobile. Instead of +sending through the SMS network itself, which is costly and requires +buy-in from the wireless carriers, it simply piggybacks on the email +gateways that many carriers provide to their customers. So, SMS +configuration is essentially email configuration. + +Each user sends to a made-up email address, which they keep a secret. +Incoming email that is "From" the user's SMS email address, and "To" +the users' secret email address on the site's domain, will be +converted to a notice and stored in the DB. + +For this to work, there *must* be a domain or sub-domain for which all +(or most) incoming email can pass through the incoming mail filter. + +1. Run the SQL script carrier.sql in your StatusNet database. This will + usually work: + + mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql + + This will populate your database with a list of wireless carriers + that support email SMS gateways. + +2. Make sure the maildaemon.php file is executable: + + chmod +x scripts/maildaemon.php + + Note that "daemon" is kind of a misnomer here; the script is more + of a filter than a daemon. + +2. Edit /etc/aliases on your mail server and add the following line: + + *: /path/to/statusnet/scripts/maildaemon.php + +3. Run whatever code you need to to update your aliases database. For + many mail servers (Postfix, Exim, Sendmail), this should work: + + newaliases + + You may need to restart your mail server for the new database to + take effect. + +4. Set the following in your config.php file: + + $config['mail']['domain'] = 'yourdomain.example.net'; + +At this point, post-by-email and post-by-SMS-gateway should work. Note +that if your mail server is on a different computer from your email +server, you'll need to have a full installation of StatusNet, a working +config.php, and access to the StatusNet database from the mail server. + +XMPP +---- + +XMPP (eXtended Message and Presence Protocol, ) is the +instant-messenger protocol that drives Jabber and GTalk IM. You can +distribute messages via XMPP using the system below; however, you +need to run the XMPP incoming daemon to allow incoming messages as +well. + +1. You may want to strongly consider setting up your own XMPP server. + Ejabberd, OpenFire, and JabberD are all Open Source servers. + Jabber, Inc. provides a high-performance commercial server. + +2. You must register a Jabber ID (JID) with your new server. It helps + to choose a name like "update@example.com" or "notice" or something + similar. Alternately, your "update JID" can be registered on a + publicly-available XMPP service, like jabber.org or GTalk. + + StatusNet will not register the JID with your chosen XMPP server; + you need to do this manually, with an XMPP client like Gajim, + Telepathy, or Pidgin.im. + +3. Configure your site's XMPP variables, as described below in the + configuration section. + +On a default installation, your site can broadcast messages using +XMPP. Users won't be able to post messages using XMPP unless you've +got the XMPP daemon running. See 'Queues and daemons' below for how +to set that up. Also, once you have a sizable number of users, sending +a lot of SMS, OStatus, and XMPP messages whenever someone posts a message +can really slow down your site; it may cause posting to timeout. + +NOTE: stream_select(), a crucial function for network programming, is +broken on PHP 5.2.x less than 5.2.6 on amd64-based servers. We don't +work around this bug in StatusNet; current recommendation is to move +off of amd64 to another server. + +Public feed +----------- + +You can send *all* messages from your social networking site to a +third-party service using XMPP. This can be useful for providing +search, indexing, bridging, or other cool services. + +To configure a downstream site to receive your public stream, add +their "JID" (Jabber ID) to your config.php as follows: + + $config['xmpp']['public'][] = 'downstream@example.net'; + +(Don't miss those square brackets at the end.) Note that your XMPP +broadcasting must be configured as mentioned above. Although you can +send out messages at "Web time", high-volume sites should strongly +consider setting up queues and daemons. + +Queues and daemons +------------------ + +Some activities that StatusNet needs to do, like broadcast OStatus, SMS, +and XMPP messages, can be 'queued' and done by off-line bots instead. +For this to work, you must be able to run long-running offline +processes, either on your main Web server or on another server you +control. (Your other server will still need all the above +prerequisites, with the exception of Apache.) Installing on a separate +server is probably a good idea for high-volume sites. + +1. You'll need the "CLI" (command-line interface) version of PHP + installed on whatever server you use. + +2. If you're using a separate server for queues, install StatusNet + somewhere on the server. You don't need to worry about the + .htaccess file, but make sure that your config.php file is close + to, or identical to, your Web server's version. + +3. In your config.php files (both the Web server and the queues + server!), set the following variable: + + $config['queue']['enabled'] = true; + + You may also want to look at the 'daemon' section of this file for + more daemon options. Note that if you set the 'user' and/or 'group' + options, you'll need to create that user and/or group by hand. + They're not created automatically. + +4. On the queues server, run the command scripts/startdaemons.sh. + +This will run the queue handlers: + +* queuedaemon.php - polls for queued items for inbox processing and + pushing out to OStatus, SMS, XMPP, etc. +* xmppdaemon.php - listens for new XMPP messages from users and stores + them as notices in the database; also pulls queued XMPP output from + queuedaemon.php to push out to clients. + +These two daemons will automatically restart in most cases of failure +including memory leaks (if a memory_limit is set), but may still die +or behave oddly if they lose connections to the XMPP or queue servers. + +Additional daemons may be also started by this script for certain +plugins, such as the Twitter bridge. + +It may be a good idea to use a daemon-monitoring service, like 'monit', +to check their status and keep them running. + +All the daemons write their process IDs (pids) to /var/run/ by +default. This can be useful for starting, stopping, and monitoring the +daemons. + +Since version 0.8.0, it's now possible to use a STOMP server instead of +our kind of hacky home-grown DB-based queue solution. This is strongly +recommended for best response time, especially when using XMPP. + +See the "queues" config section below for how to configure to use STOMP. +As of this writing, the software has been tested with ActiveMQ 5.3. + +Themes +------ + +There are two themes shipped with this version of StatusNet: "identica", +which is what the Identi.ca site uses, and "default", which is a good +basis for other sites. + +As of right now, your ability to change the theme is site-wide; users +can't choose their own theme. Additionally, the only thing you can +change in the theme is CSS stylesheets and some image files; you can't +change the HTML output, like adding or removing menu items. + +You can choose a theme using the $config['site']['theme'] element in +the config.php file. See below for details. + +You can add your own theme by making a sub-directory of the 'theme' +subdirectory with the name of your theme. Each theme can have the +following files: + +display.css: a CSS2 file for "default" styling for all browsers. +ie6.css: a CSS2 file for override styling for fixing up Internet + Explorer 6. +ie7.css: a CSS2 file for override styling for fixing up Internet + Explorer 7. +logo.png: a logo image for the site. +default-avatar-profile.png: a 96x96 pixel image to use as the avatar for + users who don't upload their own. +default-avatar-stream.png: Ditto, but 48x48. For streams of notices. +default-avatar-mini.png: Ditto ditto, but 24x24. For subscriptions + listing on profile pages. + +You may want to start by copying the files from the default theme to +your own directory. + +NOTE: the HTML generated by StatusNet changed *radically* between +version 0.6.x and 0.7.x. Older themes will need signification +modification to use the new output format. + +Translation +----------- + +Translations in StatusNet use the gettext system . +Theoretically, you can add your own sub-directory to the locale/ +subdirectory to add a new language to your system. You'll need to +compile the ".po" files into ".mo" files, however. + +Contributions of translation information to StatusNet are very easy: +you can use the Web interface at translatewiki.net to add one +or a few or lots of new translations -- or even new languages. You can +also download more up-to-date .po files there, if you so desire. + +For info on helping with translations, see http://status.net/wiki/Translations + +Backups +------- + +There is no built-in system for doing backups in StatusNet. You can make +backups of a working StatusNet system by backing up the database and +the Web directory. To backup the database use mysqldump +and to backup the Web directory, try tar. + +Private +------- + +The administrator can set the "private" flag for a site so that it's +not visible to non-logged-in users. This might be useful for +workgroups who want to share a social networking site for project +management, but host it on a public server. + +Total privacy is not guaranteed or ensured. Also, privacy is +all-or-nothing for a site; you can't have some accounts or notices +private, and others public. The interaction of private sites +with OStatus is undefined. + +Access to file attachments can also be restricted to logged-in users only. +1. Add a directory outside the web root where your file uploads will be + stored. Usually a command like this will work: + + mkdir /var/www/statusnet-files + +2. Make the file uploads directory writeable by the web server. An + insecure way to do this is: + + chmod a+x /var/www/statusnet-files + +3. Tell StatusNet to use this directory for file uploads. Add a line + like this to your config.php: + + $config['attachments']['dir'] = '/var/www/statusnet-files'; diff --git a/PLUGINS b/PLUGINS new file mode 100644 index 0000000000..79533b96de --- /dev/null +++ b/PLUGINS @@ -0,0 +1,44 @@ +Plugins +======= + +Beginning with the 0.7.x branch, StatusNet has supported a simple but +powerful plugin architecture. Important events in the code are named, +like 'StartNoticeSave', and other software can register interest +in those events. When the events happen, the other software is called +and has a choice of accepting or rejecting the events. + +In the simplest case, you can add a function to config.php and use the +Event::addHandler() function to hook an event: + + function AddGoogleLink($action) + { + $action->menuItem('http://www.google.com/', _('Google'), _('Search engine')); + return true; + } + + Event::addHandler('EndPrimaryNav', 'AddGoogleLink'); + +This adds a menu item to the end of the main navigation menu. You can +see the list of existing events, and parameters that handlers must +implement, in EVENTS.txt. + +The Plugin class in lib/plugin.php makes it easier to write more +complex plugins. Sub-classes can just create methods named +'onEventName', where 'EventName' is the name of the event (case +matters!). These methods will be automatically registered as event +handlers by the Plugin constructor (which you must call from your own +class's constructor). + +Several example plugins are included in the plugins/ directory. You +can enable a plugin with the following line in config.php: + + addPlugin('Example', array('param1' => 'value1', + 'param2' => 'value2')); + +This will look for and load files named 'ExamplePlugin.php' or +'Example/ExamplePlugin.php' either in the plugins/ directory (for +plugins that ship with StatusNet) or in the local/ directory (for +plugins you write yourself or that you get from somewhere else) or +local/plugins/. + +Plugins are documented in their own directories. diff --git a/README b/README index bba3b19869..ffc77fcbe5 100644 --- a/README +++ b/README @@ -118,1548 +118,6 @@ A full changelog is available at http://status.net/wiki/StatusNet_0.9.9. NOTE: The short-lived StatusNet 0.9.8 ("Letter Never Sent") did not adequately fix bug #3260 as originally thought; thus this new release. -Prerequisites -============= - -The following software packages are *required* for this software to -run correctly. - -- PHP 5.2.3+. It may be possible to run this software on earlier - versions of PHP, but many of the functions used are only available - in PHP 5.2 or above. 5.2.6 or later is needed for XMPP background - daemons on 64-bit platforms. PHP 5.3.x should work correctly in this - release, but problems with some plugins are possible. -- MySQL 5.x. The StatusNet database is stored, by default, in a MySQL - server. It has been primarily tested on 5.x servers, although it may - be possible to install on earlier (or later!) versions. The server - *must* support the MyISAM storage engine -- the default for most - MySQL servers -- *and* the InnoDB storage engine. -- A Web server. Preferably, you should have Apache 2.2.x with the - mod_rewrite extension installed and enabled. - -Your PHP installation must include the following PHP extensions: - -- Curl. This is for fetching files by HTTP. -- XMLWriter. This is for formatting XML and HTML output. -- MySQL. For accessing the database. -- GD. For scaling down avatar images. -- mbstring. For handling Unicode (UTF-8) encoded strings. - -For some functionality, you will also need the following extensions: - -- Memcache. A client for the memcached server, which caches database - information in volatile memory. This is important for adequate - performance on high-traffic sites. You will also need a memcached - server to store the data in. -- Mailparse. Efficient parsing of email requires this extension. - Submission by email or SMS-over-email uses this extension. -- Sphinx Search. A client for the sphinx server, an alternative - to MySQL or Postgresql fulltext search. You will also need a - Sphinx server to serve the search queries. -- bcmath or gmp. For Salmon signatures (part of OStatus). Needed - if you have OStatus configured. -- gettext. For multiple languages. Default on many PHP installs; - will be emulated if not present. - -You will almost definitely get 2-3 times better performance from your -site if you install a PHP bytecode cache/accelerator. Some well-known -examples are: eaccelerator, Turck mmcache, xcache, apc. Zend Optimizer -is a proprietary accelerator installed on some hosting sites. - -External libraries ------------------- - -A number of external PHP libraries are used to provide basic -functionality and optional functionality for your system. For your -convenience, they are available in the "extlib" directory of this -package, and you do not have to download and install them. However, -you may want to keep them up-to-date with the latest upstream version, -and the URLs are listed here for your convenience. - -- DB_DataObject http://pear.php.net/package/DB_DataObject -- Validate http://pear.php.net/package/Validate -- OpenID from OpenIDEnabled (not the PEAR version!). We decided - to use the openidenabled.com version since it's more widely - implemented, and seems to be better supported. - http://openidenabled.com/php-openid/ -- PEAR DB. Although this is an older data access system (new - packages should probably use PHP DBO), the OpenID libraries - depend on PEAR DB so we use it here, too. DB_DataObject can - also use PEAR MDB2, which may give you better performance - but won't work with OpenID. - http://pear.php.net/package/DB -- OAuth.php from http://oauth.googlecode.com/svn/code/php/ -- markdown.php from http://michelf.com/projects/php-markdown/ -- PEAR Mail, for sending out mail notifications - http://pear.php.net/package/Mail -- PEAR Net_SMTP, if you use the SMTP factory for notifications - http://pear.php.net/package/Net_SMTP -- PEAR Net_Socket, if you use the SMTP factory for notifications - http://pear.php.net/package/Net_Socket -- XMPPHP, the follow-up to Class.Jabber.php. Probably the best XMPP - library available for PHP. http://xmpphp.googlecode.com/. Note that - as of this writing the version of this library that is available in - the extlib directory is *significantly different* from the upstream - version (patches have been submitted). Upgrading to the upstream - version may render your StatusNet site unable to send or receive XMPP - messages. -- Facebook library. Used for the Facebook application. -- PEAR Validate is used for URL and email validation. -- Console_GetOpt for parsing command-line options. - predecessor to OStatus. -- HTTP_Request2, a library for making HTTP requests. -- PEAR Net_URL2 is an HTTP_Request2 dependency. - -A design goal of StatusNet is that the basic Web functionality should -work on even the most restrictive commercial hosting services. -However, additional functionality, such as receiving messages by -Jabber/GTalk, require that you be able to run long-running processes -on your account. In addition, posting by email or from SMS require -that you be able to install a mail filter in your mail server. - -Installation -============ - -Installing the basic StatusNet Web component is relatively easy, -especially if you've previously installed PHP/MySQL packages. - -1. Unpack the tarball you downloaded on your Web server. Usually a - command like this will work: - - tar zxf statusnet-0.9.9.tar.gz - - ...which will make a statusnet-0.9.9 subdirectory in your current - directory. (If you don't have shell access on your Web server, you - may have to unpack the tarball on your local computer and FTP the - files to the server.) - -2. Move the tarball to a directory of your choosing in your Web root - directory. Usually something like this will work: - - mv statusnet-0.9.9 /var/www/statusnet - - This will make your StatusNet instance available in the statusnet path of - your server, like "http://example.net/statusnet". "microblog" or - "statusnet" might also be good path names. If you know how to - configure virtual hosts on your web server, you can try setting up - "http://micro.example.net/" or the like. - -3. Make your target directory writeable by the Web server. - - chmod a+w /var/www/statusnet/ - - On some systems, this will probably work: - - chgrp www-data /var/www/statusnet/ - chmod g+w /var/www/statusnet/ - - If your Web server runs as another user besides "www-data", try - that user's default group instead. As a last resort, you can create - a new group like "statusnet" and add the Web server's user to the group. - -4. You should also take this moment to make your avatar, background, and - file subdirectories writeable by the Web server. An insecure way to do - this is: - - chmod a+w /var/www/statusnet/avatar - chmod a+w /var/www/statusnet/background - chmod a+w /var/www/statusnet/file - - You can also make the avatar, background, and file directories - writeable by the Web server group, as noted above. - -5. Create a database to hold your microblog data. Something like this - should work: - - mysqladmin -u "username" --password="password" create statusnet - - Note that StatusNet must have its own database; you can't share the - database with another program. You can name it whatever you want, - though. - - (If you don't have shell access to your server, you may need to use - a tool like PHPAdmin to create a database. Check your hosting - service's documentation for how to create a new MySQL database.) - -6. Create a new database account that StatusNet will use to access the - database. If you have shell access, this will probably work from the - MySQL shell: - - GRANT ALL on statusnet.* - TO 'statusnetuser'@'localhost' - IDENTIFIED BY 'statusnetpassword'; - - You should change 'statusnetuser' and 'statusnetpassword' to your preferred new - username and password. You may want to test logging in to MySQL as - this new user. - -7. In a browser, navigate to the StatusNet install script; something like: - - http://yourserver.example.com/statusnet/install.php - - Enter the database connection information and your site name. The - install program will configure your site and install the initial, - almost-empty database. - -8. You should now be able to navigate to your microblog's main directory - and see the "Public Timeline", which will be empty. If not, magic - has happened! You can now register a new user, post some notices, - edit your profile, etc. However, you may want to wait to do that stuff - if you think you can set up "fancy URLs" (see below), since some - URLs are stored in the database. - -Fancy URLs ----------- - -By default, StatusNet will use URLs that include the main PHP program's -name in them. For example, a user's home profile might be -found at: - - http://example.org/statusnet/index.php/statusnet/fred - -On certain systems that don't support this kind of syntax, they'll -look like this: - - http://example.org/statusnet/index.php?p=statusnet/fred - -It's possible to configure the software so it looks like this instead: - - http://example.org/statusnet/fred - -These "fancy URLs" are more readable and memorable for users. To use -fancy URLs, you must either have Apache 2.x with .htaccess enabled and -mod_rewrite enabled, -OR- know how to configure "url redirection" in -your server. - -1. Copy the htaccess.sample file to .htaccess in your StatusNet - directory. Note: if you have control of your server's httpd.conf or - similar configuration files, it can greatly improve performance to - import the .htaccess file into your conf file instead. If you're - not sure how to do it, you may save yourself a lot of headache by - just leaving the .htaccess file. - -2. Change the "RewriteBase" in the new .htaccess file to be the URL path - to your StatusNet installation on your server. Typically this will - be the path to your StatusNet directory relative to your Web root. - -3. Add or uncomment or change a line in your config.php file so it says: - - $config['site']['fancy'] = true; - -You should now be able to navigate to a "fancy" URL on your server, -like: - - http://example.net/statusnet/main/register - -If you changed your HTTP server configuration, you may need to restart -the server first. - -If it doesn't work, double-check that AllowOverride for the StatusNet -directory is 'All' in your Apache configuration file. This is usually -/etc/httpd.conf, /etc/apache/httpd.conf, or (on Debian and Ubuntu) -/etc/apache2/sites-available/default. See the Apache documentation for -.htaccess files for more details: - - http://httpd.apache.org/docs/2.2/howto/htaccess.html - -Also, check that mod_rewrite is installed and enabled: - - http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html - -Sphinx ------- - -To use a Sphinx server to search users and notices, you'll need to -enable the SphinxSearch plugin. Add to your config.php: - - addPlugin('SphinxSearch'); - $config['sphinx']['server'] = 'searchhost.local'; - -You also need to install, compile and enable the sphinx pecl extension for -php on the client side, which itself depends on the sphinx development files. - -See plugins/SphinxSearch/README for more details and server setup. - -SMS ---- - -StatusNet supports a cheap-and-dirty system for sending update messages -to mobile phones and for receiving updates from the mobile. Instead of -sending through the SMS network itself, which is costly and requires -buy-in from the wireless carriers, it simply piggybacks on the email -gateways that many carriers provide to their customers. So, SMS -configuration is essentially email configuration. - -Each user sends to a made-up email address, which they keep a secret. -Incoming email that is "From" the user's SMS email address, and "To" -the users' secret email address on the site's domain, will be -converted to a notice and stored in the DB. - -For this to work, there *must* be a domain or sub-domain for which all -(or most) incoming email can pass through the incoming mail filter. - -1. Run the SQL script carrier.sql in your StatusNet database. This will - usually work: - - mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql - - This will populate your database with a list of wireless carriers - that support email SMS gateways. - -2. Make sure the maildaemon.php file is executable: - - chmod +x scripts/maildaemon.php - - Note that "daemon" is kind of a misnomer here; the script is more - of a filter than a daemon. - -2. Edit /etc/aliases on your mail server and add the following line: - - *: /path/to/statusnet/scripts/maildaemon.php - -3. Run whatever code you need to to update your aliases database. For - many mail servers (Postfix, Exim, Sendmail), this should work: - - newaliases - - You may need to restart your mail server for the new database to - take effect. - -4. Set the following in your config.php file: - - $config['mail']['domain'] = 'yourdomain.example.net'; - -At this point, post-by-email and post-by-SMS-gateway should work. Note -that if your mail server is on a different computer from your email -server, you'll need to have a full installation of StatusNet, a working -config.php, and access to the StatusNet database from the mail server. - -XMPP ----- - -XMPP (eXtended Message and Presence Protocol, ) is the -instant-messenger protocol that drives Jabber and GTalk IM. You can -distribute messages via XMPP using the system below; however, you -need to run the XMPP incoming daemon to allow incoming messages as -well. - -1. You may want to strongly consider setting up your own XMPP server. - Ejabberd, OpenFire, and JabberD are all Open Source servers. - Jabber, Inc. provides a high-performance commercial server. - -2. You must register a Jabber ID (JID) with your new server. It helps - to choose a name like "update@example.com" or "notice" or something - similar. Alternately, your "update JID" can be registered on a - publicly-available XMPP service, like jabber.org or GTalk. - - StatusNet will not register the JID with your chosen XMPP server; - you need to do this manually, with an XMPP client like Gajim, - Telepathy, or Pidgin.im. - -3. Configure your site's XMPP variables, as described below in the - configuration section. - -On a default installation, your site can broadcast messages using -XMPP. Users won't be able to post messages using XMPP unless you've -got the XMPP daemon running. See 'Queues and daemons' below for how -to set that up. Also, once you have a sizable number of users, sending -a lot of SMS, OStatus, and XMPP messages whenever someone posts a message -can really slow down your site; it may cause posting to timeout. - -NOTE: stream_select(), a crucial function for network programming, is -broken on PHP 5.2.x less than 5.2.6 on amd64-based servers. We don't -work around this bug in StatusNet; current recommendation is to move -off of amd64 to another server. - -Public feed ------------ - -You can send *all* messages from your social networking site to a -third-party service using XMPP. This can be useful for providing -search, indexing, bridging, or other cool services. - -To configure a downstream site to receive your public stream, add -their "JID" (Jabber ID) to your config.php as follows: - - $config['xmpp']['public'][] = 'downstream@example.net'; - -(Don't miss those square brackets at the end.) Note that your XMPP -broadcasting must be configured as mentioned above. Although you can -send out messages at "Web time", high-volume sites should strongly -consider setting up queues and daemons. - -Queues and daemons ------------------- - -Some activities that StatusNet needs to do, like broadcast OStatus, SMS, -and XMPP messages, can be 'queued' and done by off-line bots instead. -For this to work, you must be able to run long-running offline -processes, either on your main Web server or on another server you -control. (Your other server will still need all the above -prerequisites, with the exception of Apache.) Installing on a separate -server is probably a good idea for high-volume sites. - -1. You'll need the "CLI" (command-line interface) version of PHP - installed on whatever server you use. - -2. If you're using a separate server for queues, install StatusNet - somewhere on the server. You don't need to worry about the - .htaccess file, but make sure that your config.php file is close - to, or identical to, your Web server's version. - -3. In your config.php files (both the Web server and the queues - server!), set the following variable: - - $config['queue']['enabled'] = true; - - You may also want to look at the 'daemon' section of this file for - more daemon options. Note that if you set the 'user' and/or 'group' - options, you'll need to create that user and/or group by hand. - They're not created automatically. - -4. On the queues server, run the command scripts/startdaemons.sh. - -This will run the queue handlers: - -* queuedaemon.php - polls for queued items for inbox processing and - pushing out to OStatus, SMS, XMPP, etc. -* xmppdaemon.php - listens for new XMPP messages from users and stores - them as notices in the database; also pulls queued XMPP output from - queuedaemon.php to push out to clients. - -These two daemons will automatically restart in most cases of failure -including memory leaks (if a memory_limit is set), but may still die -or behave oddly if they lose connections to the XMPP or queue servers. - -Additional daemons may be also started by this script for certain -plugins, such as the Twitter bridge. - -It may be a good idea to use a daemon-monitoring service, like 'monit', -to check their status and keep them running. - -All the daemons write their process IDs (pids) to /var/run/ by -default. This can be useful for starting, stopping, and monitoring the -daemons. - -Since version 0.8.0, it's now possible to use a STOMP server instead of -our kind of hacky home-grown DB-based queue solution. This is strongly -recommended for best response time, especially when using XMPP. - -See the "queues" config section below for how to configure to use STOMP. -As of this writing, the software has been tested with ActiveMQ 5.3. - -Themes ------- - -There are two themes shipped with this version of StatusNet: "identica", -which is what the Identi.ca site uses, and "default", which is a good -basis for other sites. - -As of right now, your ability to change the theme is site-wide; users -can't choose their own theme. Additionally, the only thing you can -change in the theme is CSS stylesheets and some image files; you can't -change the HTML output, like adding or removing menu items. - -You can choose a theme using the $config['site']['theme'] element in -the config.php file. See below for details. - -You can add your own theme by making a sub-directory of the 'theme' -subdirectory with the name of your theme. Each theme can have the -following files: - -display.css: a CSS2 file for "default" styling for all browsers. -ie6.css: a CSS2 file for override styling for fixing up Internet - Explorer 6. -ie7.css: a CSS2 file for override styling for fixing up Internet - Explorer 7. -logo.png: a logo image for the site. -default-avatar-profile.png: a 96x96 pixel image to use as the avatar for - users who don't upload their own. -default-avatar-stream.png: Ditto, but 48x48. For streams of notices. -default-avatar-mini.png: Ditto ditto, but 24x24. For subscriptions - listing on profile pages. - -You may want to start by copying the files from the default theme to -your own directory. - -NOTE: the HTML generated by StatusNet changed *radically* between -version 0.6.x and 0.7.x. Older themes will need signification -modification to use the new output format. - -Translation ------------ - -Translations in StatusNet use the gettext system . -Theoretically, you can add your own sub-directory to the locale/ -subdirectory to add a new language to your system. You'll need to -compile the ".po" files into ".mo" files, however. - -Contributions of translation information to StatusNet are very easy: -you can use the Web interface at translatewiki.net to add one -or a few or lots of new translations -- or even new languages. You can -also download more up-to-date .po files there, if you so desire. - -For info on helping with translations, see http://status.net/wiki/Translations - -Backups -------- - -There is no built-in system for doing backups in StatusNet. You can make -backups of a working StatusNet system by backing up the database and -the Web directory. To backup the database use mysqldump -and to backup the Web directory, try tar. - -Private -------- - -The administrator can set the "private" flag for a site so that it's -not visible to non-logged-in users. This might be useful for -workgroups who want to share a social networking site for project -management, but host it on a public server. - -Total privacy is not guaranteed or ensured. Also, privacy is -all-or-nothing for a site; you can't have some accounts or notices -private, and others public. The interaction of private sites -with OStatus is undefined. - -Access to file attachments can also be restricted to logged-in users only. -1. Add a directory outside the web root where your file uploads will be - stored. Usually a command like this will work: - - mkdir /var/www/statusnet-files - -2. Make the file uploads directory writeable by the web server. An - insecure way to do this is: - - chmod a+x /var/www/statusnet-files - -3. Tell StatusNet to use this directory for file uploads. Add a line - like this to your config.php: - - $config['attachments']['dir'] = '/var/www/statusnet-files'; - -Upgrading -========= - -IMPORTANT NOTE: StatusNet 0.7.4 introduced a fix for some -incorrectly-stored international characters ("UTF-8"). For new -installations, it will now store non-ASCII characters correctly. -However, older installations will have the incorrect storage, and will -consequently show up "wrong" in browsers. See below for how to deal -with this situation. - -If you've been using StatusNet 0.7, 0.6, 0.5 or lower, or if you've -been tracking the "git" version of the software, you will probably -want to upgrade and keep your existing data. There is no automated -upgrade procedure in StatusNet 0.9.9. Try these step-by-step -instructions; read to the end first before trying them. - -0. Download StatusNet and set up all the prerequisites as if you were - doing a new install. -1. Make backups of both your database and your Web directory. UNDER NO - CIRCUMSTANCES should you try to do an upgrade without a known-good - backup. You have been warned. -2. Shut down Web access to your site, either by turning off your Web - server or by redirecting all pages to a "sorry, under maintenance" - page. -3. Shut down XMPP access to your site, typically by shutting down the - xmppdaemon.php process and all other daemons that you're running. - If you've got "monit" or "cron" automatically restarting your - daemons, make sure to turn that off, too. -4. Shut down SMS and email access to your site. The easy way to do - this is to comment out the line piping incoming email to your - maildaemon.php file, and running something like "newaliases". -5. Once all writing processes to your site are turned off, make a - final backup of the Web directory and database. -6. Move your StatusNet directory to a backup spot, like "statusnet.bak". -7. Unpack your StatusNet 0.9.9 tarball and move it to "statusnet" or - wherever your code used to be. -8. Copy the config.php file and the contents of the avatar/, background/, - file/, and local/ subdirectories from your old directory to your new - directory. -9. Copy htaccess.sample to .htaccess in the new directory. Change the - RewriteBase to use the correct path. -10. Rebuild the database. - - NOTE: this step is destructive and cannot be - reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't - do it without a known-good backup! - - If your database is at version 0.8.0 or higher in the 0.8.x line, you can run a - special upgrade script: - - mysql -u -p db/08to09.sql - - If you are upgrading from any 0.9.x version like 0.9.6, run this script: - - mysql -u -p db/096to097.sql - - Despite the name, it should work for any 0.9.x branch. - - Otherwise, go to your StatusNet directory and AFTER YOU MAKE A - BACKUP run the rebuilddb.sh script like this: - - ./scripts/rebuilddb.sh rootuser rootpassword database db/statusnet.sql - - Here, rootuser and rootpassword are the username and password for a - user who can drop and create databases as well as tables; typically - that's _not_ the user StatusNet runs as. Note that rebuilddb.sh drops - your database and rebuilds it; if there is an error you have no - database. Make sure you have a backup. - For PostgreSQL databases there is an equivalent, rebuilddb_psql.sh, - which operates slightly differently. Read the documentation in that - script before running it. -11. Use mysql or psql client to log into your database and make sure that - the notice, user, profile, subscription etc. tables are non-empty. -12. Turn back on the Web server, and check that things still work. -13. Turn back on XMPP bots and email maildaemon. Note that the XMPP - bots have changed since version 0.5; see above for details. - -If you're upgrading from very old versions, you may want to look at -the fixup_* scripts in the scripts directories. These will store some -precooked data in the DB. All upgraders should check out the inboxes -options below. - -NOTE: the database definition file, laconica.ini, has been renamed to -statusnet.ini (since this is the recommended database name). If you -have a line in your config.php pointing to the old name, you'll need -to update it. - -NOTE: the 1.0.0 version of StatusNet changed the URLs for all admin -panels from /admin/* to /panel/*. This now allows the (popular) -username 'admin', but blocks the considerably less popular username -'panel'. If you have an existing user named 'panel', you should rename -them before upgrading. - -Notice inboxes --------------- - -Notice inboxes are now required. If you don't have inboxes enabled, -StatusNet will no longer run. - -UTF-8 Database --------------- - -StatusNet 0.7.4 introduced a fix for some incorrectly-stored -international characters ("UTF-8"). This fix is not -backwards-compatible; installations from before 0.7.4 will show -non-ASCII characters of old notices incorrectly. This section explains -what to do. - -0. You can disable the new behaviour by setting the 'db''utf8' config - option to "false". You should only do this until you're ready to - convert your DB to the new format. -1. When you're ready to convert, you can run the fixup_utf8.php script - in the scripts/ subdirectory. If you've had the "new behaviour" - enabled (probably a good idea), you can give the ID of the first - "new" notice as a parameter, and only notices before that one will - be converted. Notices are converted in reverse chronological order, - so the most recent (and visible) ones will be converted first. The - script should work whether or not you have the 'db''utf8' config - option enabled. -2. When you're ready, set $config['db']['utf8'] to true, so that - new notices will be stored correctly. - -Configuration options -===================== - -The main configuration file for StatusNet (excepting configurations for -dependency software) is config.php in your StatusNet directory. If you -edit any other file in the directory, like lib/default.php (where most -of the defaults are defined), you will lose your configuration options -in any upgrade, and you will wish that you had been more careful. - -Starting with version 0.9.0, a Web based configuration panel has been -added to StatusNet. The preferred method for changing config options is -to use this panel. - -A command-line script, setconfig.php, can be used to set individual -configuration options. It's in the scripts/ directory. - -Starting with version 0.7.1, you can put config files in the -/etc/statusnet/ directory on your server, if it exists. Config files -will be included in this order: - -* /etc/statusnet/statusnet.php - server-wide config -* /etc/statusnet/.php - for a virtual host -* /etc/statusnet/_.php - for a path -* INSTALLDIR/config.php - for a particular implementation - -Almost all configuration options are made through a two-dimensional -associative array, cleverly named $config. A typical configuration -line will be: - - $config['section']['option'] = value; - -For brevity, the following documentation describes each section and -option. - -site ----- - -This section is a catch-all for site-wide variables. - -name: the name of your site, like 'YourCompany Microblog'. -server: the server part of your site's URLs, like 'example.net'. -path: The path part of your site's URLs, like 'statusnet' or '' - (installed in root). -fancy: whether or not your site uses fancy URLs (see Fancy URLs - section above). Default is false. -logfile: full path to a file for StatusNet to save logging - information to. You may want to use this if you don't have - access to syslog. -logdebug: whether to log additional debug info like backtraces on - hard errors. Default false. -locale_path: full path to the directory for locale data. Unless you - store all your locale data in one place, you probably - don't need to use this. -language: default language for your site. Defaults to US English. - Note that this is overridden if a user is logged in and has - selected a different language. It is also overridden if the - user is NOT logged in, but their browser requests a different - langauge. Since pretty much everybody's browser requests a - language, that means that changing this setting has little or - no effect in practice. -languages: A list of languages supported on your site. Typically you'd - only change this if you wanted to disable support for one - or another language: - "unset($config['site']['languages']['de'])" will disable - support for German. -theme: Theme for your site (see Theme section). Two themes are - provided by default: 'default' and 'stoica' (the one used by - Identi.ca). It's appreciated if you don't use the 'stoica' theme - except as the basis for your own. -email: contact email address for your site. By default, it's extracted - from your Web server environment; you may want to customize it. -broughtbyurl: name of an organization or individual who provides the - service. Each page will include a link to this name in the - footer. A good way to link to the blog, forum, wiki, - corporate portal, or whoever is making the service available. -broughtby: text used for the "brought by" link. -timezone: default timezone for message display. Users can set their - own time zone. Defaults to 'UTC', which is a pretty good default. -closed: If set to 'true', will disallow registration on your site. - This is a cheap way to restrict accounts to only one - individual or group; just register the accounts you want on - the service, *then* set this variable to 'true'. -inviteonly: If set to 'true', will only allow registration if the user - was invited by an existing user. -private: If set to 'true', anonymous users will be redirected to the - 'login' page. Also, API methods that normally require no - authentication will require it. Note that this does not turn - off registration; use 'closed' or 'inviteonly' for the - behaviour you want. -notice: A plain string that will appear on every page. A good place - to put introductory information about your service, or info about - upgrades and outages, or other community info. Any HTML will - be escaped. -logo: URL of an image file to use as the logo for the site. Overrides - the logo in the theme, if any. -ssllogo: URL of an image file to use as the logo on SSL pages. If unset, - theme logo is used instead. -ssl: Whether to use SSL and https:// URLs for some or all pages. - Possible values are 'always' (use it for all pages), 'never' - (don't use it for any pages), or 'sometimes' (use it for - sensitive pages that include passwords like login and registration, - but not for regular pages). Default to 'never'. -sslserver: use an alternate server name for SSL URLs, like - 'secure.example.org'. You should be careful to set cookie - parameters correctly so that both the SSL server and the - "normal" server can access the session cookie and - preferably other cookies as well. -shorturllength: ignored. See 'url' section below. -dupelimit: minimum time allowed for one person to say the same thing - twice. Default 60s. Anything lower is considered a user - or UI error. -textlimit: default max size for texts in the site. Defaults to 0 (no limit). - Can be fine-tuned for notices, messages, profile bios and group descriptions. - -db --- - -This section is a reference to the configuration options for -DB_DataObject (see ). The ones that you may want to -set are listed below for clarity. - -database: a DSN (Data Source Name) for your StatusNet database. This is - in the format 'protocol://username:password@hostname/databasename', - where 'protocol' is 'mysql' or 'mysqli' (or possibly 'postgresql', if you - really know what you're doing), 'username' is the username, - 'password' is the password, and etc. -ini_yourdbname: if your database is not named 'statusnet', you'll need - to set this to point to the location of the - statusnet.ini file. Note that the real name of your database - should go in there, not literally 'yourdbname'. -db_driver: You can try changing this to 'MDB2' to use the other driver - type for DB_DataObject, but note that it breaks the OpenID - libraries, which only support PEAR::DB. -debug: On a database error, you may get a message saying to set this - value to 5 to see debug messages in the browser. This breaks - just about all pages, and will also expose the username and - password -quote_identifiers: Set this to true if you're using postgresql. -type: either 'mysql' or 'postgresql' (used for some bits of - database-type-specific SQL in the code). Defaults to mysql. -mirror: you can set this to an array of DSNs, like the above - 'database' value. If it's set, certain read-only actions will - use a random value out of this array for the database, rather - than the one in 'database' (actually, 'database' is overwritten). - You can offload a busy DB server by setting up MySQL replication - and adding the slaves to this array. Note that if you want some - requests to go to the 'database' (master) server, you'll need - to include it in this array, too. -utf8: whether to talk to the database in UTF-8 mode. This is the default - with new installations, but older sites may want to turn it off - until they get their databases fixed up. See "UTF-8 database" - above for details. -schemacheck: when to let plugins check the database schema to add - tables or update them. Values can be 'runtime' (default) - or 'script'. 'runtime' can be costly (plugins check the - schema on every hit, adding potentially several db - queries, some quite long), but not everyone knows how to - run a script. If you can, set this to 'script' and run - scripts/checkschema.php whenever you install or upgrade a - plugin. - -syslog ------- - -By default, StatusNet sites log error messages to the syslog facility. -(You can override this using the 'logfile' parameter described above). - -appname: The name that StatusNet uses to log messages. By default it's - "statusnet", but if you have more than one installation on the - server, you may want to change the name for each instance so - you can track log messages more easily. -priority: level to log at. Currently ignored. -facility: what syslog facility to used. Defaults to LOG_USER, only - reset if you know what syslog is and have a good reason - to change it. - -queue ------ - -You can configure the software to queue time-consuming tasks, like -sending out SMS email or XMPP messages, for off-line processing. See -'Queues and daemons' above for how to set this up. - -enabled: Whether to uses queues. Defaults to false. -subsystem: Which kind of queueserver to use. Values include "db" for - our hacked-together database queuing (no other server - required) and "stomp" for a stomp server. -stomp_server: "broker URI" for stomp server. Something like - "tcp://hostname:61613". More complicated ones are - possible; see your stomp server's documentation for - details. -queue_basename: a root name to use for queues (stomp only). Typically - something like '/queue/sitename/' makes sense. If running - multiple instances on the same server, make sure that - either this setting or $config['site']['nickname'] are - unique for each site to keep them separate. - -stomp_username: username for connecting to the stomp server; defaults - to null. -stomp_password: password for connecting to the stomp server; defaults - to null. - -stomp_persistent: keep items across queue server restart, if enabled. - Under ActiveMQ, the server configuration determines if and how - persistent storage is actually saved. - - If using a message queue server other than ActiveMQ, you may - need to disable this if it does not support persistence. - -stomp_transactions: use transactions to aid in error detection. - A broken transaction will be seen quickly, allowing a message - to be redelivered immediately if a daemon crashes. - - If using a message queue server other than ActiveMQ, you may - need to disable this if it does not support transactions. - -stomp_acks: send acknowledgements to aid in flow control. - An acknowledgement of successful processing tells the server - we're ready for more and can help keep things moving smoothly. - - This should *not* be turned off when running with ActiveMQ, but - if using another message queue server that does not support - acknowledgements you might need to disable this. - -softlimit: an absolute or relative "soft memory limit"; daemons will - restart themselves gracefully when they find they've hit - this amount of memory usage. Defaults to 90% of PHP's global - memory_limit setting. - -inboxes: delivery of messages to receiver's inboxes can be delayed to - queue time for best interactive performance on the sender. - This may however be annoyingly slow when using the DB queues, - so you can set this to false if it's causing trouble. - -breakout: for stomp, individual queues are by default grouped up for - best scalability. If some need to be run by separate daemons, - etc they can be manually adjusted here. - - Default will share all queues for all sites within each group. - Specify as / or //, - using nickname identifier as site. - - 'main/distrib' separate "distrib" queue covering all sites - 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite' - -max_retries: for stomp, drop messages after N failed attempts to process. - Defaults to 10. - -dead_letter_dir: for stomp, optional directory to dump data on failed - queue processing events after discarding them. - -stomp_no_transactions: for stomp, the server does not support transactions, - so do not try to user them. This is needed for http://www.morbidq.com/. - -stomp_no_acks: for stomp, the server does not support acknowledgements. - so do not try to user them. This is needed for http://www.morbidq.com/. - -license -------- - -The default license to use for your users notices. The default is the -Creative Commons Attribution 3.0 license, which is probably the right -choice for any public site. Note that some other servers will not -accept notices if you apply a stricter license than this. - -type: one of 'cc' (for Creative Commons licenses), 'allrightsreserved' - (default copyright), or 'private' (for private and confidential - information). -owner: for 'allrightsreserved' or 'private', an assigned copyright - holder (for example, an employer for a private site). If - not specified, will be attributed to 'contributors'. -url: URL of the license, used for links. -title: Title for the license, like 'Creative Commons Attribution 3.0'. -image: A button shown on each page for the license. - -mail ----- - -This is for configuring out-going email. We use PEAR's Mail module, -see: http://pear.php.net/manual/en/package.mail.mail.factory.php - -backend: the backend to use for mail, one of 'mail', 'sendmail', and - 'smtp'. Defaults to PEAR's default, 'mail'. -params: if the mail backend requires any parameters, you can provide - them in an associative array. - -nickname --------- - -This is for configuring nicknames in the service. - -blacklist: an array of strings for usernames that may not be - registered. A default array exists for strings that are - used by StatusNet (e.g. 'doc', 'main', 'avatar', 'theme') - but you may want to add others if you have other software - installed in a subdirectory of StatusNet or if you just - don't want certain words used as usernames. -featured: an array of nicknames of 'featured' users of the site. - Can be useful to draw attention to well-known users, or - interesting people, or whatever. - -avatar ------- - -For configuring avatar access. - -dir: Directory to look for avatar files and to put them into. - Defaults to avatar subdirectory of install directory; if - you change it, make sure to change path, too. -path: Path to avatars. Defaults to path for avatar subdirectory, - but you can change it if you wish. Note that this will - be included with the avatar server, too. -server: If set, defines another server where avatars are stored in the - root directory. Note that the 'avatar' subdir still has to be - writeable. You'd typically use this to split HTTP requests on - the client to speed up page loading, either with another - virtual server or with an NFS or SAMBA share. Clients - typically only make 2 connections to a single server at a - time , so this can parallelize the job. - Defaults to null. -ssl: Whether to access avatars using HTTPS. Defaults to null, meaning - to guess based on site-wide SSL settings. - -public ------- - -For configuring the public stream. - -localonly: If set to true, only messages posted by users of this - service (rather than other services, filtered through OStatus) - are shown in the public stream. Default true. -blacklist: An array of IDs of users to hide from the public stream. - Useful if you have someone making excessive Twitterfeed posts - to the site, other kinds of automated posts, testing bots, etc. -autosource: Sources of notices that are from automatic posters, and thus - should be kept off the public timeline. Default empty. - -theme ------ - -server: Like avatars, you can speed up page loading by pointing the - theme file lookup to another server (virtual or real). - Defaults to NULL, meaning to use the site server. -dir: Directory where theme files are stored. Used to determine - whether to show parts of a theme file. Defaults to the theme - subdirectory of the install directory. -path: Path part of theme URLs, before the theme name. Relative to the - theme server. It may make sense to change this path when upgrading, - (using version numbers as the path) to make sure that all files are - reloaded by caching clients or proxies. Defaults to null, - which means to use the site path + '/theme'. -ssl: Whether to use SSL for theme elements. Default is null, which means - guess based on site SSL settings. -sslserver: SSL server to use when page is HTTPS-encrypted. If - unspecified, site ssl server and so on will be used. -sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. - -javascript ----------- - -server: You can speed up page loading by pointing the - theme file lookup to another server (virtual or real). - Defaults to NULL, meaning to use the site server. -path: Path part of Javascript URLs. Defaults to null, - which means to use the site path + '/js/'. -ssl: Whether to use SSL for JavaScript files. Default is null, which means - guess based on site SSL settings. -sslserver: SSL server to use when page is HTTPS-encrypted. If - unspecified, site ssl server and so on will be used. -sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. -bustframes: If true, all web pages will break out of framesets. If false, - can comfortably live in a frame or iframe... probably. Default - to true. - -xmpp ----- - -For configuring the XMPP sub-system. - -enabled: Whether to accept and send messages by XMPP. Default false. -server: server part of XMPP ID for update user. -port: connection port for clients. Default 5222, which you probably - shouldn't need to change. -user: username for the client connection. Users will receive messages - from 'user'@'server'. -resource: a unique identifier for the connection to the server. This - is actually used as a prefix for each XMPP component in the system. -password: password for the user account. -host: some XMPP domains are served by machines with a different - hostname. (For example, @gmail.com GTalk users connect to - talk.google.com). Set this to the correct hostname if that's the - case with your server. -encryption: Whether to encrypt the connection between StatusNet and the - XMPP server. Defaults to true, but you can get - considerably better performance turning it off if you're - connecting to a server on the same machine or on a - protected network. -debug: if turned on, this will make the XMPP library blurt out all of - the incoming and outgoing messages as XML stanzas. Use as a - last resort, and never turn it on if you don't have queues - enabled, since it will spit out sensitive data to the browser. -public: an array of JIDs to send _all_ notices to. This is useful for - participating in third-party search and archiving services. - -invite ------- - -For configuring invites. - -enabled: Whether to allow users to send invites. Default true. - -tag ---- - -Miscellaneous tagging stuff. - -dropoff: Decay factor for tag listing, in seconds. - Defaults to exponential decay over ten days; you can twiddle - with it to try and get better results for your site. - -popular -------- - -Settings for the "popular" section of the site. - -dropoff: Decay factor for popularity listing, in seconds. - Defaults to exponential decay over ten days; you can twiddle - with it to try and get better results for your site. - -daemon ------- - -For daemon processes. - -piddir: directory that daemon processes should write their PID file - (process ID) to. Defaults to /var/run/, which is where this - stuff should usually go on Unix-ish systems. -user: If set, the daemons will try to change their effective user ID - to this user before running. Probably a good idea, especially if - you start the daemons as root. Note: user name, like 'daemon', - not 1001. -group: If set, the daemons will try to change their effective group ID - to this named group. Again, a name, not a numerical ID. - -memcached ---------- - -You can get a significant boost in performance by caching some -database data in memcached . - -enabled: Set to true to enable. Default false. -server: a string with the hostname of the memcached server. Can also - be an array of hostnames, if you've got more than one server. -base: memcached uses key-value pairs to store data. We build long, - funny-looking keys to make sure we don't have any conflicts. The - base of the key is usually a simplified version of the site name - (like "Identi.ca" => "identica"), but you can overwrite this if - you need to. You can safely ignore it if you only have one - StatusNet site using your memcached server. -port: Port to connect to; defaults to 11211. - -emailpost ---------- - -For post-by-email. - -enabled: Whether to enable post-by-email. Defaults to true. You will - also need to set up maildaemon.php. - -sms ---- - -For SMS integration. - -enabled: Whether to enable SMS integration. Defaults to true. Queues - should also be enabled. - -integration ------------ - -A catch-all for integration with other systems. - -taguri: base for tag:// URIs. Defaults to site-server + ',2009'. - -inboxes -------- - -For notice inboxes. - -enabled: No longer used. If you set this to something other than true, - StatusNet will no longer run. - -throttle --------- - -For notice-posting throttles. - -enabled: Whether to throttle posting. Defaults to false. -count: Each user can make this many posts in 'timespan' seconds. So, if count - is 100 and timespan is 3600, then there can be only 100 posts - from a user every hour. -timespan: see 'count'. - -profile -------- - -Profile management. - -biolimit: max character length of bio; 0 means no limit; null means to use - the site text limit default. -backup: whether users can backup their own profiles. Defaults to true. -restore: whether users can restore their profiles from backup files. Defaults - to true. -delete: whether users can delete their own accounts. Defaults to false. -move: whether users can move their accounts to another server. Defaults - to true. - -newuser -------- - -Options with new users. - -default: nickname of a user account to automatically subscribe new - users to. Typically this would be system account for e.g. - service updates or announcements. Users are able to unsub - if they want. Default is null; no auto subscribe. -welcome: nickname of a user account that sends welcome messages to new - users. Can be the same as 'default' account, although on - busy servers it may be a good idea to keep that one just for - 'urgent' messages. Default is null; no message. - -If either of these special user accounts are specified, the users should -be created before the configuration is updated. - -snapshot --------- - -The software will, by default, send statistical snapshots about the -local installation to a stats server on the status.net Web site. This -data is used by the developers to prioritize development decisions. No -identifying data about users or organizations is collected. The data -is available to the public for review. Participating in this survey -helps StatusNet developers take your needs into account when updating -the software. - -run: string indicating when to run the statistics. Values can be 'web' - (run occasionally at Web time), 'cron' (run from a cron script), - or 'never' (don't ever run). If you set it to 'cron', remember to - schedule the script to run on a regular basis. -frequency: if run value is 'web', how often to report statistics. - Measured in Web hits; depends on how active your site is. - Default is 10000 -- that is, one report every 10000 Web hits, - on average. -reporturl: URL to post statistics to. Defaults to StatusNet developers' - report system, but if they go evil or disappear you may - need to update this to another value. Note: if you - don't want to report stats, it's much better to - set 'run' to 'never' than to set this value to something - nonsensical. - -attachments ------------ - -The software lets users upload files with their notices. You can configure -the types of accepted files by mime types and a trio of quota options: -per file, per user (total), per user per month. - -We suggest the use of the pecl file_info extension to handle mime type -detection. - -supported: an array of mime types you accept to store and distribute, - like 'image/gif', 'video/mpeg', 'audio/mpeg', etc. Make sure you - setup your server to properly recognize the types you want to - support. -uploads: false to disable uploading files with notices (true by default). -filecommand: The required MIME_Type library may need to use the 'file' - command. It tries the one in the Web server's path, but if - you're having problems with uploads, try setting this to the - correct value. Note: 'file' must accept '-b' and '-i' options. - -For quotas, be sure you've set the upload_max_filesize and post_max_size -in php.ini to be large enough to handle your upload. In httpd.conf -(if you're using apache), check that the LimitRequestBody directive isn't -set too low (it's optional, so it may not be there at all). - -file_quota: maximum size for a single file upload in bytes. A user can send - any amount of notices with attachments as long as each attachment - is smaller than file_quota. -user_quota: total size in bytes a user can store on this server. Each user - can store any number of files as long as their total size does - not exceed the user_quota. -monthly_quota: total size permitted in the current month. This is the total - size in bytes that a user can upload each month. -dir: directory accessible to the Web process where uploads should go. - Defaults to the 'file' subdirectory of the install directory, which - should be writeable by the Web user. -server: server name to use when creating URLs for uploaded files. - Defaults to null, meaning to use the default Web server. Using - a virtual server here can speed up Web performance. -path: URL path, relative to the server, to find files. Defaults to - main path + '/file/'. -ssl: whether to use HTTPS for file URLs. Defaults to null, meaning to - guess based on other SSL settings. -filecommand: command to use for determining the type of a file. May be - skipped if fileinfo extension is installed. Defaults to - '/usr/bin/file'. -sslserver: if specified, this server will be used when creating HTTPS - URLs. Otherwise, the site SSL server will be used, with /file/ path. -sslpath: if this and the sslserver are specified, this path will be used - when creating HTTPS URLs. Otherwise, the attachments|path value - will be used. - -group ------ - -Options for group functionality. - -maxaliases: maximum number of aliases a group can have. Default 3. Set - to 0 or less to prevent aliases in a group. -desclimit: maximum number of characters to allow in group descriptions. - null (default) means to use the site-wide text limits. 0 - means no limit. -addtag: Whether to add a tag for the group nickname for every group post - (pre-1.0.x behaviour). Defaults to false. - -oembed --------- - -oEmbed endpoint for multimedia attachments (links in posts). Will also -work as 'oohembed' for backwards compatibility. - -endpoint: oohembed endpoint using http://oohembed.com/ software. Defaults to - 'http://oohembed.com/oohembed/'. -order: Array of methods to check for OEmbed data. Methods include 'built-in' - (use a built-in function to simulate oEmbed for some sites), - 'well-known' (use well-known public oEmbed endpoints), - 'discovery' (discover using headers in HTML), 'service' (use - a third-party service, like oohembed or embed.ly. Default is - array('built-in', 'well-known', 'service', 'discovery'). Note that very - few sites implement oEmbed; 'discovery' is going to fail 99% of the - time. - -search ------- - -Some stuff for search. - -type: type of search. Ignored if PostgreSQL or Sphinx are enabled. Can either - be 'fulltext' (default) or 'like'. The former is faster and more efficient - but requires the lame old MyISAM engine for MySQL. The latter - will work with InnoDB but could be miserably slow on large - systems. We'll probably add another type sometime in the future, - with our own indexing system (maybe like MediaWiki's). - -sessions --------- - -Session handling. - -handle: boolean. Whether we should register our own PHP session-handling - code (using the database and memcache if enabled). Defaults to false. - Setting this to true makes some sense on large or multi-server - sites, but it probably won't hurt for smaller ones, either. -debug: whether to output debugging info for session storage. Can help - with weird session bugs, sometimes. Default false. - -background ----------- - -Users can upload backgrounds for their pages; this section defines -their use. - -server: the server to use for background. Using a separate (even - virtual) server for this can speed up load times. Default is - null; same as site server. -dir: directory to write backgrounds too. Default is '/background/' - subdir of install dir. -path: path to backgrounds. Default is sub-path of install path; note - that you may need to change this if you change site-path too. -sslserver: SSL server to use when page is HTTPS-encrypted. If - unspecified, site ssl server and so on will be used. -sslpath: If sslserver if defined, path to use when page is HTTPS-encrypted. - -ping ----- - -Using the "XML-RPC Ping" method initiated by weblogs.com, the site can -notify third-party servers of updates. - -notify: an array of URLs for ping endpoints. Default is the empty - array (no notification). - -design ------- - -Default design (colors and background) for the site. Actual appearance -depends on the theme. Null values mean to use the theme defaults. - -backgroundcolor: Hex color of the site background. -contentcolor: Hex color of the content area background. -sidebarcolor: Hex color of the sidebar background. -textcolor: Hex color of all non-link text. -linkcolor: Hex color of all links. -backgroundimage: Image to use for the background. -disposition: Flags for whether or not to tile the background image. - -notice ------- - -Configuration options specific to notices. - -contentlimit: max length of the plain-text content of a notice. - Default is null, meaning to use the site-wide text limit. - 0 means no limit. -defaultscope: default scope for notices. If null, the default - scope depends on site/private. It's 1 if the site is private, - 0 otherwise. Set this value to override. - -message -------- - -Configuration options specific to messages. - -contentlimit: max length of the plain-text content of a message. - Default is null, meaning to use the site-wide text limit. - 0 means no limit. - -logincommand ------------- - -Configuration options for the login command. - -disabled: whether to enable this command. If enabled, users who send - the text 'login' to the site through any channel will - receive a link to login to the site automatically in return. - Possibly useful for users who primarily use an XMPP or SMS - interface and can't be bothered to remember their site - password. Note that the security implications of this are - pretty serious and have not been thoroughly tested. You - should enable it only after you've convinced yourself that - it is safe. Default is 'false'. - -singleuser ----------- - -If an installation has only one user, this can simplify a lot of the -interface. It also makes the user's profile the root URL. - -enabled: Whether to run in "single user mode". Default false. -nickname: nickname of the single user. If no nickname is specified, - the site owner account will be used (if present). - -robotstxt ---------- - -We put out a default robots.txt file to guide the processing of -Web crawlers. See http://www.robotstxt.org/ for more information -on the format of this file. - -crawldelay: if non-empty, this value is provided as the Crawl-Delay: - for the robots.txt file. see http://ur1.ca/l5a0 - for more information. Default is zero, no explicit delay. -disallow: Array of (virtual) directories to disallow. Default is 'main', - 'search', 'message', 'settings', 'admin'. Ignored when site - is private, in which case the entire site ('/') is disallowed. - -api ---- - -Options for the Twitter-like API. - -realm: HTTP Basic Auth realm (see http://tools.ietf.org/html/rfc2617 - for details). Some third-party tools like ping.fm want this to be - 'Identi.ca API', so set it to that if you want to. default = null, - meaning 'something based on the site name'. - -nofollow --------- - -We optionally put 'rel="nofollow"' on some links in some pages. The -following configuration settings let you fine-tune how or when things -are nofollowed. See http://en.wikipedia.org/wiki/Nofollow for more -information on what 'nofollow' means. - -subscribers: whether to nofollow links to subscribers on the profile - and personal pages. Default is true. -members: links to members on the group page. Default true. -peopletag: links to people listed in the peopletag page. Default true. -external: external links in notices. One of three values: 'sometimes', - 'always', 'never'. If 'sometimes', then external links are not - nofollowed on profile, notice, and favorites page. Default is - 'sometimes'. - -url ---- - -Everybody loves URL shorteners. These are some options for fine-tuning -how and when the server shortens URLs. - -shortener: URL shortening service to use by default. Users can override - individually. 'ur1.ca' by default. -maxlength: If an URL is strictly longer than this limit, it will be - shortened. Note that the URL shortener service may return an - URL longer than this limit. Defaults to 25. Users can - override. If set to 0, all URLs will be shortened. -maxnoticelength: If a notice is strictly longer than this limit, all - URLs in the notice will be shortened. Users can override. - -1 means the text limit for notices. - -router ------- - -We use a router class for mapping URLs to code. This section controls -how that router works. - -cache: whether to cache the router in memcache (or another caching - mechanism). Defaults to true, but may be set to false for - developers (who might be actively adding pages, so won't want the - router cached) or others who see strange behavior. You're unlikely - to need this unless you're a developer. - -http ----- - -Settings for the HTTP client. - -ssl_cafile: location of the CA file for SSL. If not set, won't verify - SSL peers. Default unset. -curl: Use cURL for doing HTTP calls. You must - have the PHP curl extension installed for this to work. -proxy_host: Host to use for proxying HTTP requests. If unset, doesn't - do any HTTP proxy stuff. Default unset. -proxy_port: Port to use to connect to HTTP proxy host. Default null. -proxy_user: Username to use for authenticating to the HTTP proxy. Default null. -proxy_password: Password to use for authenticating to the HTTP proxy. Default null. -proxy_auth_scheme: Scheme to use for authenticating to the HTTP proxy. Default null. - -plugins -------- - -default: associative array mapping plugin name to array of arguments. To disable - a default plugin, unset its value in this array. -locale_path: path for finding plugin locale files. In the plugin's directory - by default. -server: Server to find static files for a plugin when the page is plain old HTTP. - Defaults to site/server (same as pages). Use this to move plugin CSS and - JS files to a CDN. -sslserver: Server to find static files for a plugin when the page is HTTPS. Defaults - to site/server (same as pages). Use this to move plugin CSS and JS files - to a CDN. -path: Path to the plugin files. defaults to site/path + '/plugins/'. Expects that - each plugin will have a subdirectory at plugins/NameOfPlugin. Change this - if you're using a CDN. -sslpath: Path to use on the SSL server. Same as plugins/path. - -Plugins -======= - -Beginning with the 0.7.x branch, StatusNet has supported a simple but -powerful plugin architecture. Important events in the code are named, -like 'StartNoticeSave', and other software can register interest -in those events. When the events happen, the other software is called -and has a choice of accepting or rejecting the events. - -In the simplest case, you can add a function to config.php and use the -Event::addHandler() function to hook an event: - - function AddGoogleLink($action) - { - $action->menuItem('http://www.google.com/', _('Google'), _('Search engine')); - return true; - } - - Event::addHandler('EndPrimaryNav', 'AddGoogleLink'); - -This adds a menu item to the end of the main navigation menu. You can -see the list of existing events, and parameters that handlers must -implement, in EVENTS.txt. - -The Plugin class in lib/plugin.php makes it easier to write more -complex plugins. Sub-classes can just create methods named -'onEventName', where 'EventName' is the name of the event (case -matters!). These methods will be automatically registered as event -handlers by the Plugin constructor (which you must call from your own -class's constructor). - -Several example plugins are included in the plugins/ directory. You -can enable a plugin with the following line in config.php: - - addPlugin('Example', array('param1' => 'value1', - 'param2' => 'value2')); - -This will look for and load files named 'ExamplePlugin.php' or -'Example/ExamplePlugin.php' either in the plugins/ directory (for -plugins that ship with StatusNet) or in the local/ directory (for -plugins you write yourself or that you get from somewhere else) or -local/plugins/. - -Plugins are documented in their own directories. - Troubleshooting =============== diff --git a/UPGRADE b/UPGRADE new file mode 100644 index 0000000000..71607ea1ee --- /dev/null +++ b/UPGRADE @@ -0,0 +1,121 @@ +Upgrading +========= + +IMPORTANT NOTE: StatusNet 0.7.4 introduced a fix for some +incorrectly-stored international characters ("UTF-8"). For new +installations, it will now store non-ASCII characters correctly. +However, older installations will have the incorrect storage, and will +consequently show up "wrong" in browsers. See below for how to deal +with this situation. + +If you've been using StatusNet 0.7, 0.6, 0.5 or lower, or if you've +been tracking the "git" version of the software, you will probably +want to upgrade and keep your existing data. There is no automated +upgrade procedure in StatusNet 0.9.9. Try these step-by-step +instructions; read to the end first before trying them. + +0. Download StatusNet and set up all the prerequisites as if you were + doing a new install. +1. Make backups of both your database and your Web directory. UNDER NO + CIRCUMSTANCES should you try to do an upgrade without a known-good + backup. You have been warned. +2. Shut down Web access to your site, either by turning off your Web + server or by redirecting all pages to a "sorry, under maintenance" + page. +3. Shut down XMPP access to your site, typically by shutting down the + xmppdaemon.php process and all other daemons that you're running. + If you've got "monit" or "cron" automatically restarting your + daemons, make sure to turn that off, too. +4. Shut down SMS and email access to your site. The easy way to do + this is to comment out the line piping incoming email to your + maildaemon.php file, and running something like "newaliases". +5. Once all writing processes to your site are turned off, make a + final backup of the Web directory and database. +6. Move your StatusNet directory to a backup spot, like "statusnet.bak". +7. Unpack your StatusNet 0.9.9 tarball and move it to "statusnet" or + wherever your code used to be. +8. Copy the config.php file and the contents of the avatar/, background/, + file/, and local/ subdirectories from your old directory to your new + directory. +9. Copy htaccess.sample to .htaccess in the new directory. Change the + RewriteBase to use the correct path. +10. Rebuild the database. + + NOTE: this step is destructive and cannot be + reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't + do it without a known-good backup! + + If your database is at version 0.8.0 or higher in the 0.8.x line, you can run a + special upgrade script: + + mysql -u -p db/08to09.sql + + If you are upgrading from any 0.9.x version like 0.9.6, run this script: + + mysql -u -p db/096to097.sql + + Despite the name, it should work for any 0.9.x branch. + + Otherwise, go to your StatusNet directory and AFTER YOU MAKE A + BACKUP run the rebuilddb.sh script like this: + + ./scripts/rebuilddb.sh rootuser rootpassword database db/statusnet.sql + + Here, rootuser and rootpassword are the username and password for a + user who can drop and create databases as well as tables; typically + that's _not_ the user StatusNet runs as. Note that rebuilddb.sh drops + your database and rebuilds it; if there is an error you have no + database. Make sure you have a backup. + For PostgreSQL databases there is an equivalent, rebuilddb_psql.sh, + which operates slightly differently. Read the documentation in that + script before running it. +11. Use mysql or psql client to log into your database and make sure that + the notice, user, profile, subscription etc. tables are non-empty. +12. Turn back on the Web server, and check that things still work. +13. Turn back on XMPP bots and email maildaemon. Note that the XMPP + bots have changed since version 0.5; see above for details. + +If you're upgrading from very old versions, you may want to look at +the fixup_* scripts in the scripts directories. These will store some +precooked data in the DB. All upgraders should check out the inboxes +options below. + +NOTE: the database definition file, laconica.ini, has been renamed to +statusnet.ini (since this is the recommended database name). If you +have a line in your config.php pointing to the old name, you'll need +to update it. + +NOTE: the 1.0.0 version of StatusNet changed the URLs for all admin +panels from /admin/* to /panel/*. This now allows the (popular) +username 'admin', but blocks the considerably less popular username +'panel'. If you have an existing user named 'panel', you should rename +them before upgrading. + +Notice inboxes +-------------- + +Notice inboxes are now required. If you don't have inboxes enabled, +StatusNet will no longer run. + +UTF-8 Database +-------------- + +StatusNet 0.7.4 introduced a fix for some incorrectly-stored +international characters ("UTF-8"). This fix is not +backwards-compatible; installations from before 0.7.4 will show +non-ASCII characters of old notices incorrectly. This section explains +what to do. + +0. You can disable the new behaviour by setting the 'db''utf8' config + option to "false". You should only do this until you're ready to + convert your DB to the new format. +1. When you're ready to convert, you can run the fixup_utf8.php script + in the scripts/ subdirectory. If you've had the "new behaviour" + enabled (probably a good idea), you can give the ID of the first + "new" notice as a parameter, and only notices before that one will + be converted. Notices are converted in reverse chronological order, + so the most recent (and visible) ones will be converted first. The + script should work whether or not you have the 'db''utf8' config + option enabled. +2. When you're ready, set $config['db']['utf8'] to true, so that + new notices will be stored correctly. From eb6cece8e4b18ebba99e36af2fa9ac35e63acb79 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 23:48:38 -0400 Subject: [PATCH 056/118] update Activity plugin for 1.0.x --- plugins/Activity/ActivityPlugin.php | 230 +++++++++++++-------------- plugins/Activity/Notice_activity.php | 154 ------------------ 2 files changed, 107 insertions(+), 277 deletions(-) delete mode 100644 plugins/Activity/Notice_activity.php diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index 7ea705fbe2..e6e9ca82b2 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -57,41 +57,12 @@ class ActivityPlugin extends Plugin public $StartLike = true; public $StopLike = true; - /** - * Database schema setup - * - * @see Schema - * @see ColumnDef - * - * @return boolean hook value; true means continue processing, false means stop. - */ - - function onCheckSchema() - { - $schema = Schema::get(); - - // For storing the activity part of a notice - - $schema->ensureTable('notice_activity', - array(new ColumnDef('notice_id', 'integer', null, - false, 'PRI'), - new ColumnDef('verb', 'varchar', 255, - false, 'MUL'), - new ColumnDef('object', 'varchar', 255, - true, 'MUL'))); - - return true; - } - function onAutoload($cls) { $dir = dirname(__FILE__); switch ($cls) { - case 'Notice_activity': - include_once $dir . '/'.$cls.'.php'; - return false; default: return true; } @@ -101,23 +72,28 @@ class ActivityPlugin extends Plugin { // Only do this if config is enabled if(!$this->StartFollowUser) return true; - $user = User::staticGet('id', $subscriber->id); + $user = $subscriber->getUser(); if (!empty($user)) { - $rendered = sprintf(_m('Started following %s.'), + $sub = Subscription::pkeyGet(array('subscriber' => $subscriber->id, + 'subscribed' => $other->id)); + $rendered = sprintf(_m('%s started following %s.'), + $subscriber->profileurl, + $usbscriber->getBestName(), $other->profileurl, $other->getBestName()); - $content = sprintf(_m('Started following %s : %s'), + $content = sprintf(_m('%s (%s) started following %s (%s).'), + $subscriber->getBestName(), + $subscriber->profileurl, $other->getBestName(), - $other->profileurl); + $other->profileurl); $notice = Notice::saveNew($user->id, $content, 'activity', - array('rendered' => $rendered)); - - Notice_activity::setActivity($notice->id, - ActivityVerb::FOLLOW, - $other->getUri()); + array('rendered' => $rendered, + 'verb' => ActivityVerb::FOLLOW, + 'object_type' => ActivityObject::PERSON, + 'uri' => $sub->uri)); } return true; } @@ -126,23 +102,31 @@ class ActivityPlugin extends Plugin { // Only do this if config is enabled if(!$this->StopFollowUser) return true; - $user = User::staticGet('id', $subscriber->id); + $user = $subscriber->getUser(); if (!empty($user)) { - $rendered = sprintf(_m('Stopped following %s.'), + $rendered = sprintf(_m('%s stopped following %s.'), + $subscriber->profileurl, + $subscriber->getBestName(), $other->profileurl, $other->getBestName()); - $content = sprintf(_m('Stopped following %s : %s'), + $content = sprintf(_m('%s (%s) stopped following %s (%s).'), + $subscriber->getBestName(), + $subscriber->profileurl, $other->getBestName(), - $other->profileurl); + $other->profileurl); + $uri = TagURI::mint('stop-following:%d:%d:%s', + $subscriber->id, + $other->id, + common_date_iso8601(common_sql_now())); + $notice = Notice::saveNew($user->id, $content, 'activity', - array('rendered' => $rendered)); - - Notice_activity::setActivity($notice->id, - ActivityVerb::UNFOLLOW, - $other->getUri()); + array('rendered' => $rendered, + 'uri' => $uri, + 'verb' => ActivityVerb::UNFOLLOW, + 'object_type' => ActivityObject::PERSON)); } return true; } @@ -151,25 +135,34 @@ class ActivityPlugin extends Plugin { // Only do this if config is enabled if(!$this->StartLike) return true; - $user = User::staticGet('id', $profile->id); - + + $user = $profile->getUser(); + if (!empty($user)) { - $author = Profile::staticGet('id', $notice->profile_id); - $rendered = sprintf(_m('Liked %s\'s status.'), + + $author = $notice->getProfile(); + $fave = Fave::staticGet(array('user_id' => $user->id, + 'notice_id' => $notice->id)); + + $rendered = sprintf(_m('%s liked %s\'s update.'), + $profile->profileurl, + $profile->getBestName(), $notice->bestUrl(), $author->getBestName()); - $content = sprintf(_m('Liked %s\'s status: %s'), + $content = sprintf(_m('%s (%s) liked %s\'s status (%s)'), + $profile->getBestName(), + $profile->profileurl, $author->getBestName(), - $notice->bestUrl()); + $notice->bestUrl()); $notice = Notice::saveNew($user->id, $content, 'activity', - array('rendered' => $rendered)); - - Notice_activity::setActivity($notice->id, - ActivityVerb::FAVORITE, - $notice->uri); + array('rendered' => $rendered, + 'uri' => $fave->getURI(), + 'verb' => ActivityVerb::FAVOR, + 'object_type' => (($notice->verb == ActivityVerb::POST) ? + $notice->object_type : ActivityObject::ACTIVITY))); } return true; } @@ -182,21 +175,30 @@ class ActivityPlugin extends Plugin if (!empty($user)) { $author = Profile::staticGet('id', $notice->profile_id); - $rendered = sprintf(_m('Stopped liking %s\'s status.'), + $rendered = sprintf(_m('%s stopped liking %s\'s update.'), + $profile->profileurl, + $profile->getBestName(), $notice->bestUrl(), $author->getBestName()); - $content = sprintf(_m('Stopped liking %s\'s status: %s'), - $author->getBestName(), - $notice->bestUrl()); - + $content = sprintf(_m('%s (%s) stopped liking %s\'s status (%s)'), + $profile->getBestName(), + $profile->profileurl, + $author->getBestName(), + $notice->bestUrl()); + + $uri = TagURI::mint('unlike:%d:%d:%s', + $profile->id, + $notice->id, + common_date_iso8601(common_sql_now())); + $notice = Notice::saveNew($user->id, $content, 'activity', - array('rendered' => $rendered)); - - Notice_activity::setActivity($notice->id, - ActivityVerb::UNFAVORITE, - $notice->uri); + array('rendered' => $rendered, + 'uri' => $uri, + 'verb' => ActivityVerb::UNFAVORITE, + 'object_type' => (($notice->verb == ActivityVerb::POST) ? + $notice->object_type : ActivityObject::ACTIVITY))); } return true; } @@ -205,21 +207,30 @@ class ActivityPlugin extends Plugin { // Only do this if config is enabled if(!$this->JoinGroup) return true; - $rendered = sprintf(_m('Joined the group "%s".'), + + $profile = $user->getProfile(); + + $rendered = sprintf(_m('%s joined the group "%s".'), + $profile->profileurl, + $profile->getBestName(), $group->homeUrl(), $group->getBestName()); - $content = sprintf(_m('Joined the group %s : %s'), + $content = sprintf(_m('%s (%s) joined the group %s (%s).'), + $profile->getBestName(), + $profile->profileurl, $group->getBestName(), - $group->homeUrl()); + $group->homeUrl()); + $mem = Group_member::staticGet(array('group_id' => $group->id, + 'profile_id' => $profile->id)); + $notice = Notice::saveNew($user->id, $content, 'activity', - array('rendered' => $rendered)); - - Notice_activity::setActivity($notice->id, - ActivityVerb::JOIN, - $group->getUri()); + array('rendered' => $rendered, + 'uri' => $mem->getURI(), + 'verb' => ActivityVerb::JOIN, + 'object_type' => ActivityObject::GROUP)); return true; } @@ -227,65 +238,38 @@ class ActivityPlugin extends Plugin { // Only do this if config is enabled if(!$this->LeaveGroup) return true; - $rendered = sprintf(_m('Left the group "%s".'), + + $profile = $user->getProfile(); + + $rendered = sprintf(_m('%s left the group "%s".'), + $profile->profileurl, + $profile->getBestName(), $group->homeUrl(), $group->getBestName()); - $content = sprintf(_m('Left the group "%s" : %s'), + $content = sprintf(_m('%s (%s) left the group %s (%s)'), + $profile->getBestName(), + $profile->profileurl, $group->getBestName(), - $group->homeUrl()); + $group->homeUrl()); + + $uri = TagURI::mint('leave:%d:%d:%s', + $user->id, + $group->id, + common_date_iso8601(common_sql_now())); $notice = Notice::saveNew($user->id, $content, 'activity', - array('rendered' => $rendered)); - - Notice_activity::setActivity($notice->id, - ActivityVerb::LEAVE, - $group->getUri()); + array('rendered' => $rendered, + 'uri' => $uri, + 'verb' => ActivityVerb::LEAVE, + 'object_type' => ActivityObject::GROUP)); return true; } function onEndNoticeAsActivity($notice, &$activity) { - $na = Notice_activity::staticGet('notice_id', $notice->id); - - if (!empty($na)) { - - $activity->verb = $na->verb; - - // wipe the old object! - - $activity->objects = array(); - - switch ($na->verb) - { - case ActivityVerb::FOLLOW: - case ActivityVerb::UNFOLLOW: - $profile = Profile::fromURI($na->object); - if (!empty($profile)) { - $activity->objects[] = ActivityObject::fromProfile($profile); - } - break; - case ActivityVerb::FAVORITE: - case ActivityVerb::UNFAVORITE: - $target = Notice::staticGet('uri', $na->object); - if (!empty($target)) { - $activity->objects[] = ActivityObject::fromNotice($target); - } - break; - case ActivityVerb::JOIN: - case ActivityVerb::LEAVE: - $group = User_group::staticGet('uri', $na->object); - if (!empty($notice)) { - $activity->objects[] = ActivityObject::fromGroup($group); - } - break; - default: - break; - } - } - - return true; + return true; } diff --git a/plugins/Activity/Notice_activity.php b/plugins/Activity/Notice_activity.php deleted file mode 100644 index abc5f59c8f..0000000000 --- a/plugins/Activity/Notice_activity.php +++ /dev/null @@ -1,154 +0,0 @@ - - * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 - * @link http://status.net/ - * - * StatusNet - the distributed open-source microblogging tool - * Copyright (C) 2009, 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); -} - -require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; - -/** - * Data class for saving social activities as notices - * - * @category Action - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 - * @link http://status.net/ - * - * @see DB_DataObject - */ - -class Notice_activity extends Memcached_DataObject -{ - public $__table = 'notice_activity'; // table name - - public $notice_id; // int(4) primary_key not_null - public $verb; // varchar(255) - public $object; // varchar(255) - - /** - * 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 'notice_id' for this class) - * @param mixed $v Value to lookup - * - * @return Notice_activity object found, or null for no hits - * - */ - - function staticGet($k, $v=null) - { - $result = Memcached_DataObject::staticGet('Notice_activity', $k, $v); - return $result; - } - - /** - * return table definition for DB_DataObject - * - * DB_DataObject needs to know something about the table to manipulate - * instances. This method provides all the DB_DataObject needs to know. - * - * @return array array of column definitions - */ - function table() - { - return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL, - 'verb' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL, - 'object' => DB_DATAOBJECT_STR); - } - - /** - * return key definitions for DB_DataObject - * - * DB_DataObject needs to know about keys that the table has, since it - * won't appear in StatusNet's own keys list. In most cases, this will - * simply reference your keyTypes() function. - * - * @return array list of key field names - */ - - function keys() - { - return array_keys($this->keyTypes()); - } - - /** - * return key definitions for Memcached_DataObject - * - * Our caching system uses the same key definitions, but uses a different - * method to get them. This key information is used to store and clear - * cached data, so be sure to list any key that will be used for static - * lookups. - * - * @return array associative array of key definitions, field name to type: - * 'K' for primary key: for compound keys, add an entry for each component; - * 'U' for unique keys: compound keys are not well supported here. - */ - function keyTypes() - { - return array('notice_id' => 'K'); - } - - /** - * Magic formula for non-autoincrementing integer primary keys - * - * If a table has a single integer column as its primary key, DB_DataObject - * assumes that the column is auto-incrementing and makes a sequence table - * to do this incrementation. Since we don't need this for our class, we - * overload this method and return the magic formula that DB_DataObject needs. - * - * @return array magic three-false array that stops auto-incrementing. - */ - - function sequenceKey() - { - return array(false, false, false); - } - - static function setActivity($notice_id, $verb, $object=null) - { - $act = self::staticGet('notice_id', $notice_id); - - if (empty($act)) { - $act = new Notice_activity(); - $act->notice_id = $notice_id; - $act->verb = $verb; - $act->object = $object; - $act->insert(); - } else { - $orig = clone($act); - $act->verb = $verb; - $act->object = $object; - $act->update($orig); - } - } -} From 5e61ec5e01c8f6633f74968939f8fa6875dd32f7 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 22 Aug 2011 23:53:34 -0400 Subject: [PATCH 057/118] avoid producing notices for last element in MoreMenu --- lib/moremenu.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/moremenu.php b/lib/moremenu.php index fa335b3c7b..8aed58a921 100644 --- a/lib/moremenu.php +++ b/lib/moremenu.php @@ -81,7 +81,12 @@ class MoreMenu extends Menu } foreach ($toShow as $item) { - list($actionName, $args, $label, $description, $id) = $item; + if (count($item) == 5) { + list($actionName, $args, $label, $description, $id) = $item; + } else { + list($actionName, $args, $label, $description) = $item; + $id = null; + } $this->item($actionName, $args, $label, $description, $id); } From ce5b44158e691346739739e8ba465453d7af41ea Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 00:14:20 -0400 Subject: [PATCH 058/118] Get primary key for default value in Memcached_DataObject::staticGet() --- classes/Memcached_DataObject.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php index b857ae64b9..51b1556d77 100644 --- a/classes/Memcached_DataObject.php +++ b/classes/Memcached_DataObject.php @@ -34,11 +34,12 @@ class Memcached_DataObject extends Safe_DataObject { if (is_null($v)) { $v = $k; - // XXX: HACK! - $i = new $cls; - $keys = $i->keys(); + $keys = self::pkeyCols($cls); + if (count($keys) > 1) { + // FIXME: maybe call pkeyGet() ourselves? + throw new Exception('Use pkeyGet() for compound primary keys'); + } $k = $keys[0]; - unset($i); } $i = Memcached_DataObject::getcached($cls, $k, $v); if ($i === false) { // false == cache miss From af12037a6f687b4edb8a78fe7fce9c58f5c304ce Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 00:23:02 -0400 Subject: [PATCH 059/118] fix errors with fave activities --- plugins/Activity/ActivityPlugin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index e6e9ca82b2..7aa776dd9a 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -141,8 +141,8 @@ class ActivityPlugin extends Plugin if (!empty($user)) { $author = $notice->getProfile(); - $fave = Fave::staticGet(array('user_id' => $user->id, - 'notice_id' => $notice->id)); + $fave = Fave::pkeyGet(array('user_id' => $user->id, + 'notice_id' => $notice->id)); $rendered = sprintf(_m('%s liked %s\'s update.'), $profile->profileurl, @@ -160,7 +160,7 @@ class ActivityPlugin extends Plugin 'activity', array('rendered' => $rendered, 'uri' => $fave->getURI(), - 'verb' => ActivityVerb::FAVOR, + 'verb' => ActivityVerb::FAVORITE, 'object_type' => (($notice->verb == ActivityVerb::POST) ? $notice->object_type : ActivityObject::ACTIVITY))); } From 505c64854ccad897aa1e806336074b23ce520be3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 00:27:42 -0400 Subject: [PATCH 060/118] correct typo in ActivityPlugin::onEndSubscribe() --- plugins/Activity/ActivityPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index 7aa776dd9a..b7fbefc329 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -78,7 +78,7 @@ class ActivityPlugin extends Plugin 'subscribed' => $other->id)); $rendered = sprintf(_m('%s started following %s.'), $subscriber->profileurl, - $usbscriber->getBestName(), + $subscriber->getBestName(), $other->profileurl, $other->getBestName()); $content = sprintf(_m('%s (%s) started following %s (%s).'), From a053d96bf29519d602b36fd33b20c75f81e7c8e1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 00:32:46 -0400 Subject: [PATCH 061/118] Better list-unwrapping in MoreMenu --- lib/moremenu.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/lib/moremenu.php b/lib/moremenu.php index 8aed58a921..3562ac4148 100644 --- a/lib/moremenu.php +++ b/lib/moremenu.php @@ -101,7 +101,12 @@ class MoreMenu extends Menu $extended = array_slice($items, self::SOFT_MAX, self::HARD_MAX - self::SOFT_MAX); foreach ($extended as $item) { - list($actionName, $args, $label, $description, $id) = $item; + if (count($item) == 5) { + list($actionName, $args, $label, $description, $id) = $item; + } else { + list($actionName, $args, $label, $description) = $item; + $id = null; + } $this->item($actionName, $args, $label, $description, $id, 'extended_menu'); } @@ -109,7 +114,12 @@ class MoreMenu extends Menu $seeAll = $this->seeAllItem(); if (!empty($seeAll)) { - list($actionName, $args, $label, $description, $id) = $seeAll; + if (count($seeAll) == 5) { + list($actionName, $args, $label, $description, $id) = $seeAll; + } else { + list($actionName, $args, $label, $description) = $seeAll; + $id = null; + } $this->item($actionName, $args, $label, $description, $id, 'extended_menu see_all'); } } From 2ea17b07495a66e8de9751d7b9b8083efc5f07b0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 00:40:54 -0400 Subject: [PATCH 062/118] use references for Notice::_setFaves() and Notice::_setRepeats() --- classes/Notice.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 64c9f91410..fd92cfe9e6 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2631,7 +2631,8 @@ class Notice extends Managed_DataObject } } foreach ($notices as $notice) { - $notice->_setFaves($faveMap[$notice->id]); + $faves = $faveMap[$notice->id]; + $notice->_setFaves(&$faves); } } @@ -2671,7 +2672,8 @@ class Notice extends Managed_DataObject $ids = self::_idsOf($notices); $repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', $ids); foreach ($notices as $notice) { - $notice->_setRepeats($repeatMap[$notice->id]); + $repeats = $repeatMap[$notice->id]; + $notice->_setRepeats(&$repeats); } } } From 4f05205fbeabe8a812c66413f0fec645416190c5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 10:22:03 -0400 Subject: [PATCH 063/118] log an exception when we can't join a group --- actions/joingroup.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/actions/joingroup.php b/actions/joingroup.php index bb7b835915..fa5968a2c4 100644 --- a/actions/joingroup.php +++ b/actions/joingroup.php @@ -131,6 +131,10 @@ class JoingroupAction extends Action try { $result = $cur->joinGroup($this->group); } catch (Exception $e) { + common_log(LOG_ERR, sprintf("Couldn't join user %s to group %s: '%s'", + $cur->nickname, + $this->group->nickname, + $e->getMessage())); // TRANS: Server error displayed when joining a group failed in the database. // TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed. $this->serverError(sprintf(_('Could not join user %1$s to group %2$s.'), From 1bfbf92868a6402788703443e8d017a3d6155df6 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 10:23:08 -0400 Subject: [PATCH 064/118] Incorrect arguments for ActivityPlugin::onEndJoin/LeaveGroup() --- plugins/Activity/ActivityPlugin.php | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index b7fbefc329..2785931d0e 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -203,14 +203,18 @@ class ActivityPlugin extends Plugin return true; } - function onEndJoinGroup($group, $user) + function onEndJoinGroup($group, $profile) { // Only do this if config is enabled if(!$this->JoinGroup) return true; - $profile = $user->getProfile(); + $user = $profile->getUser(); - $rendered = sprintf(_m('%s joined the group "%s".'), + if (empty($user)) { + return true; + } + + $rendered = sprintf(_m('%s joined the group %s.'), $profile->profileurl, $profile->getBestName(), $group->homeUrl(), @@ -221,8 +225,8 @@ class ActivityPlugin extends Plugin $group->getBestName(), $group->homeUrl()); - $mem = Group_member::staticGet(array('group_id' => $group->id, - 'profile_id' => $profile->id)); + $mem = Group_member::pkeyGet(array('group_id' => $group->id, + 'profile_id' => $profile->id)); $notice = Notice::saveNew($user->id, $content, @@ -234,14 +238,18 @@ class ActivityPlugin extends Plugin return true; } - function onEndLeaveGroup($group, $user) + function onEndLeaveGroup($group, $profile) { // Only do this if config is enabled if(!$this->LeaveGroup) return true; - $profile = $user->getProfile(); + $user = $profile->getUser(); - $rendered = sprintf(_m('%s left the group "%s".'), + if (empty($user)) { + return true; + } + + $rendered = sprintf(_m('%s left the group %s.'), $profile->profileurl, $profile->getBestName(), $group->homeUrl(), From 5c3bc19968ef0e3a69edb3da0ef29a7287a3b1b8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 11:42:18 -0400 Subject: [PATCH 065/118] Re-add lost verb column for Notice --- classes/Notice.php | 1 + 1 file changed, 1 insertion(+) diff --git a/classes/Notice.php b/classes/Notice.php index f7daf708e8..0298cfdda3 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -107,6 +107,7 @@ class Notice extends Managed_DataObject 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'), 'repeat_of' => array('type' => 'int', 'description' => 'notice this is a repeat of'), 'object_type' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams object type', 'default' => 'http://activitystrea.ms/schema/1.0/note'), + 'verb' => array('type' => 'varchar', 'length' => 255, 'description' => 'URI representing activity streams verb', 'default' => 'http://activitystrea.ms/schema/1.0/post'), 'scope' => array('type' => 'int', 'default' => '1', 'description' => 'bit map for distribution scope; 0 = everywhere; 1 = this server only; 2 = addressees; 4 = followers'), From eed5192405fde00e85ac939aabd92147bff66aa8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 11:49:27 -0400 Subject: [PATCH 066/118] Custom list item for join events --- plugins/Activity/ActivityPlugin.php | 27 ++++++++- plugins/Activity/joinlistitem.php | 89 +++++++++++++++++++++++++++++ 2 files changed, 115 insertions(+), 1 deletion(-) create mode 100644 plugins/Activity/joinlistitem.php diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index 2785931d0e..a4d45b2122 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -63,6 +63,9 @@ class ActivityPlugin extends Plugin switch ($cls) { + case 'JoinListItem': + include_once $dir . '/'.strtolower($cls).'.php'; + return false; default: return true; } @@ -274,13 +277,35 @@ class ActivityPlugin extends Plugin 'object_type' => ActivityObject::GROUP)); return true; } + + function onStartShowNoticeItem($nli) + { + $notice = $nli->notice; + + $adapter = null; + + switch ($notice->verb) { + case ActivityVerb::JOIN: + $adapter = new JoinListItem($nli); + break; + } + + if (!empty($adapter)) { + $adapter->showNotice(); + $adapter->showNoticeAttachments(); + $adapter->showNoticeInfo(); + $adapter->showNoticeOptions(); + return false; + } + + return true; + } function onEndNoticeAsActivity($notice, &$activity) { return true; } - function onPluginVersion(&$versions) { $versions[] = array('name' => 'Activity', diff --git a/plugins/Activity/joinlistitem.php b/plugins/Activity/joinlistitem.php new file mode 100644 index 0000000000..404ac847d9 --- /dev/null +++ b/plugins/Activity/joinlistitem.php @@ -0,0 +1,89 @@ +. + * + * @category Cache + * @package StatusNet + * @author Evan Prodromou + * @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); +} + +/** + * NoticeListItemAdapter for join activities + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class JoinListItem extends NoticeListItemAdapter +{ + /** + * Show the join activity + * + * @return void + */ + + function showNotice() + { + common_debug("Showing notice from JoinListItem"); + $out = $this->nli->out; + $out->elementStart('div', 'entry-title'); + $this->showContent(); + $out->elementEnd('div'); + } + + function showContent() + { + $notice = $this->nli->notice; + $out = $this->nli->out; + + $mem = Group_member::staticGet('uri', $notice->uri); + + $out->elementStart('div', 'join-activity'); + + if (!empty($mem)) { + $profile = $mem->getMember(); + $group = $mem->getGroup(); + $out->raw(sprintf(_m('%s joined the group %s.'), + $profile->profileurl, + $profile->getBestName(), + $group->homeUrl(), + $group->getBestName())); + } else { + $out->raw($entry->summary); + } + + $out->elementEnd('div'); + } +} + From b73eaa44de68b398c5a164e025b205717e4424c1 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 11:49:45 -0400 Subject: [PATCH 067/118] emit fewer notices for group joins --- classes/User_group.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/classes/User_group.php b/classes/User_group.php index 8d08efb5ff..4870e39a15 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -529,6 +529,18 @@ class User_group extends Managed_DataObject // MAGICALLY put fields into current scope // @fixme kill extract(); it makes debugging absurdly hard + $defaults = array('nickname' => null, + 'fullname' => null, + 'homepage' => null, + 'description' => null, + 'location' => null, + 'uri' => null, + 'mainpage' => null, + 'aliases' => array(), + 'userid' => null); + + $fields = array_merge($defaults, $fields); + extract($fields); $group = new User_group(); From 7c4dfb848041ea0bf605f7e57b172e656d55c18a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 11:52:45 -0400 Subject: [PATCH 068/118] remove debug statement from JoinListItem --- plugins/Activity/joinlistitem.php | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/Activity/joinlistitem.php b/plugins/Activity/joinlistitem.php index 404ac847d9..29774917ac 100644 --- a/plugins/Activity/joinlistitem.php +++ b/plugins/Activity/joinlistitem.php @@ -55,7 +55,6 @@ class JoinListItem extends NoticeListItemAdapter function showNotice() { - common_debug("Showing notice from JoinListItem"); $out = $this->nli->out; $out->elementStart('div', 'entry-title'); $this->showContent(); From 4cbd5b4c9fef739562b25762b1e7fb03de2831fd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 12:18:10 -0400 Subject: [PATCH 069/118] Add custom list items for follow, unfollow, leave activities --- plugins/Activity/ActivityPlugin.php | 12 +++++ plugins/Activity/followlistitem.php | 78 +++++++++++++++++++++++++++ plugins/Activity/leavelistitem.php | 78 +++++++++++++++++++++++++++ plugins/Activity/unfollowlistitem.php | 78 +++++++++++++++++++++++++++ 4 files changed, 246 insertions(+) create mode 100644 plugins/Activity/followlistitem.php create mode 100644 plugins/Activity/leavelistitem.php create mode 100644 plugins/Activity/unfollowlistitem.php diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index a4d45b2122..e3ee39dc9a 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -64,6 +64,9 @@ class ActivityPlugin extends Plugin switch ($cls) { case 'JoinListItem': + case 'LeaveListItem': + case 'FollowListItem': + case 'UnfollowListItem': include_once $dir . '/'.strtolower($cls).'.php'; return false; default: @@ -288,6 +291,15 @@ class ActivityPlugin extends Plugin case ActivityVerb::JOIN: $adapter = new JoinListItem($nli); break; + case ActivityVerb::LEAVE: + $adapter = new JoinListItem($nli); + break; + case ActivityVerb::FOLLOW: + $adapter = new FollowListItem($nli); + break; + case ActivityVerb::UNFOLLOW: + $adapter = new UnfollowListItem($nli); + break; } if (!empty($adapter)) { diff --git a/plugins/Activity/followlistitem.php b/plugins/Activity/followlistitem.php new file mode 100644 index 0000000000..5a3721013a --- /dev/null +++ b/plugins/Activity/followlistitem.php @@ -0,0 +1,78 @@ +. + * + * @category Cache + * @package StatusNet + * @author Evan Prodromou + * @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); +} + +/** + * NoticeListItemAdapter for join activities + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class FollowListItem extends NoticeListItemAdapter +{ + /** + * Show the join activity + * + * @return void + */ + + function showNotice() + { + $out = $this->nli->out; + $out->elementStart('div', 'entry-title'); + $this->showContent(); + $out->elementEnd('div'); + } + + function showContent() + { + $notice = $this->nli->notice; + $out = $this->nli->out; + + // FIXME: get the actual data on the leave + + $out->elementStart('div', 'follow-activity'); + + $out->raw($notice->rendered); + + $out->elementEnd('div'); + } +} + diff --git a/plugins/Activity/leavelistitem.php b/plugins/Activity/leavelistitem.php new file mode 100644 index 0000000000..2c8565e986 --- /dev/null +++ b/plugins/Activity/leavelistitem.php @@ -0,0 +1,78 @@ +. + * + * @category Cache + * @package StatusNet + * @author Evan Prodromou + * @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); +} + +/** + * NoticeListItemAdapter for join activities + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class LeaveListItem extends NoticeListItemAdapter +{ + /** + * Show the join activity + * + * @return void + */ + + function showNotice() + { + $out = $this->nli->out; + $out->elementStart('div', 'entry-title'); + $this->showContent(); + $out->elementEnd('div'); + } + + function showContent() + { + $notice = $this->nli->notice; + $out = $this->nli->out; + + // FIXME: get the actual data on the leave + + $out->elementStart('div', 'leave-activity'); + + $out->raw($notice->rendered); + + $out->elementEnd('div'); + } +} + diff --git a/plugins/Activity/unfollowlistitem.php b/plugins/Activity/unfollowlistitem.php new file mode 100644 index 0000000000..8bc464ed23 --- /dev/null +++ b/plugins/Activity/unfollowlistitem.php @@ -0,0 +1,78 @@ +. + * + * @category Cache + * @package StatusNet + * @author Evan Prodromou + * @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); +} + +/** + * NoticeListItemAdapter for join activities + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class UnfollowListItem extends NoticeListItemAdapter +{ + /** + * Show the join activity + * + * @return void + */ + + function showNotice() + { + $out = $this->nli->out; + $out->elementStart('div', 'entry-title'); + $this->showContent(); + $out->elementEnd('div'); + } + + function showContent() + { + $notice = $this->nli->notice; + $out = $this->nli->out; + + // FIXME: get the actual data on the leave + + $out->elementStart('div', 'unfollow-activity'); + + $out->raw($notice->rendered); + + $out->elementEnd('div'); + } +} + From 65df78d5c8ff45f67840712732b021931f8ea2e3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 12:23:18 -0400 Subject: [PATCH 070/118] remove Activity plugin separate ignore and copying files --- plugins/Activity/.gitignore | 1 - plugins/Activity/COPYING | 661 ------------------------------------ 2 files changed, 662 deletions(-) delete mode 100644 plugins/Activity/.gitignore delete mode 100644 plugins/Activity/COPYING diff --git a/plugins/Activity/.gitignore b/plugins/Activity/.gitignore deleted file mode 100644 index b25c15b81f..0000000000 --- a/plugins/Activity/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*~ diff --git a/plugins/Activity/COPYING b/plugins/Activity/COPYING deleted file mode 100644 index dba13ed2dd..0000000000 --- a/plugins/Activity/COPYING +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - 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 . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. From 1507c324540b7e268ae55f842d64b16855b26167 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 23 Aug 2011 09:39:05 -0700 Subject: [PATCH 071/118] Fix warnings - function arguments should expect values instead of references --- classes/Notice.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 0298cfdda3..3cbb2edd3d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2624,7 +2624,7 @@ class Notice extends Managed_DataObject return $this->_faves; } - function _setFaves(&$faves) + function _setFaves($faves) { $this->_faves = $faves; } @@ -2673,7 +2673,7 @@ class Notice extends Managed_DataObject return $this->_repeats; } - function _setRepeats(&$repeats) + function _setRepeats($repeats) { $this->_repeats = $repeats; } From 9535f0d0e32b9f606ee1bc6c0e4ac4b1a1a894a0 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 23 Aug 2011 09:43:56 -0700 Subject: [PATCH 072/118] Rename plugins README so it doesn't conflict with plugins directory on case insensitive files systems (Mac/Windows) --- PLUGINS => PLUGINS.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename PLUGINS => PLUGINS.txt (100%) diff --git a/PLUGINS b/PLUGINS.txt similarity index 100% rename from PLUGINS rename to PLUGINS.txt From 307a75e3a7503b89170e13248b70b909dcb9a246 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 23 Aug 2011 09:52:48 -0700 Subject: [PATCH 073/118] Fix deprecated call-time pass by references --- classes/Notice.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Notice.php b/classes/Notice.php index 3cbb2edd3d..15696f6eef 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -2643,7 +2643,7 @@ class Notice extends Managed_DataObject } foreach ($notices as $notice) { $faves = $faveMap[$notice->id]; - $notice->_setFaves(&$faves); + $notice->_setFaves($faves); } } @@ -2684,7 +2684,7 @@ class Notice extends Managed_DataObject $repeatMap = Memcached_DataObject::listGet('Notice', 'repeat_of', $ids); foreach ($notices as $notice) { $repeats = $repeatMap[$notice->id]; - $notice->_setRepeats(&$repeats); + $notice->_setRepeats($repeats); } } } From eaf32b7728a41f75431e6d882adeac407580ea1d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 23 Aug 2011 13:31:47 -0400 Subject: [PATCH 074/118] remove obsolete sitemap script --- scripts/sitemap.php | 399 -------------------------------------------- 1 file changed, 399 deletions(-) delete mode 100755 scripts/sitemap.php diff --git a/scripts/sitemap.php b/scripts/sitemap.php deleted file mode 100755 index f8c3921465..0000000000 --- a/scripts/sitemap.php +++ /dev/null @@ -1,399 +0,0 @@ -#!/usr/bin/env php -. - */ - -define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); - -$shortoptions = 'f:d:u:'; - -$helptext = << Use as output file - -d Use for new sitemaps - -u Use as root for URLs - -END_OF_SITEMAP_HELP; - -require_once INSTALLDIR . '/scripts/commandline.inc'; - -$output_paths = parse_args(); - -standard_map(); -notices_map(); -user_map(); -index_map(); - -// ------------------------------------------------------------------------------ -// Main functions: get data out and turn them into sitemaps -// ------------------------------------------------------------------------------ - -// Generate index sitemap of all other sitemaps. -function index_map() -{ - global $output_paths; - $output_dir = $output_paths['output_dir']; - $output_url = $output_paths['output_url']; - - foreach (glob("$output_dir*.xml") as $file_name) { - - // Just the file name please. - $file_name = preg_replace("|$output_dir|", '', $file_name); - - $index_urls .= sitemap( - array( - 'url' => $output_url . $file_name, - 'changefreq' => 'daily' - ) - ); - } - - write_file($output_paths['index_file'], sitemapindex($index_urls)); -} - -// Generate sitemap of standard site elements. -function standard_map() -{ - global $output_paths; - - $standard_map_urls .= url( - array( - 'url' => common_local_url('public'), - 'changefreq' => 'daily', - 'priority' => '1', - ) - ); - - $standard_map_urls .= url( - array( - 'url' => common_local_url('publicrss'), - 'changefreq' => 'daily', - 'priority' => '0.3', - ) - ); - - $docs = array('about', 'faq', 'contact', 'im', 'openid', 'openmublog', - 'privacy', 'source', 'badge'); - - foreach($docs as $title) { - $standard_map_urls .= url( - array( - 'url' => common_local_url('doc', array('title' => $title)), - 'changefreq' => 'monthly', - 'priority' => '0.2', - ) - ); - } - - $urlset_path = $output_paths['output_dir'] . 'standard.xml'; - - write_file($urlset_path, urlset($standard_map_urls)); -} - -// Generate sitemaps of all notices. -function notices_map() -{ - global $output_paths; - - $notices = DB_DataObject::factory('notice'); - - $notices->query('SELECT id, uri, url, modified FROM notice where is_local = 1'); - - $notice_count = 0; - $map_count = 1; - - while ($notices->fetch()) { - - // Maximum 50,000 URLs per sitemap file. - if ($notice_count == 50000) { - $notice_count = 0; - $map_count++; - } - - // remote notices have an URL - - if (!$notices->url && $notices->uri) { - $notice = array( - 'url' => ($notices->uri) ? $notices->uri : common_local_url('shownotice', array('notice' => $notices->id)), - 'lastmod' => common_date_w3dtf($notices->modified), - 'changefreq' => 'never', - 'priority' => '1', - ); - - $notice_list[$map_count] .= url($notice); - $notice_count++; - } - } - - // Make full sitemaps from the lists and save them. - array_to_map($notice_list, 'notice'); -} - -// Generate sitemaps of all users. -function user_map() -{ - global $output_paths; - - $users = DB_DataObject::factory('user'); - - $users->query('SELECT id, nickname FROM user'); - - $user_count = 0; - $map_count = 1; - - while ($users->fetch()) { - - // Maximum 50,000 URLs per sitemap file. - if ($user_count == 50000) { - $user_count = 0; - $map_count++; - } - - $user_args = array('nickname' => $users->nickname); - - // Define parameters for generating elements. - $user = array( - 'url' => common_local_url('showstream', $user_args), - 'changefreq' => 'daily', - 'priority' => '1', - ); - - $user_rss = array( - 'url' => common_local_url('userrss', $user_args), - 'changefreq' => 'daily', - 'priority' => '0.3', - ); - - $all = array( - 'url' => common_local_url('all', $user_args), - 'changefreq' => 'daily', - 'priority' => '1', - ); - - $all_rss = array( - 'url' => common_local_url('allrss', $user_args), - 'changefreq' => 'daily', - 'priority' => '0.3', - ); - - $replies = array( - 'url' => common_local_url('replies', $user_args), - 'changefreq' => 'daily', - 'priority' => '1', - ); - - $replies_rss = array( - 'url' => common_local_url('repliesrss', $user_args), - 'changefreq' => 'daily', - 'priority' => '0.3', - ); - - $foaf = array( - 'url' => common_local_url('foaf', $user_args), - 'changefreq' => 'weekly', - 'priority' => '0.5', - ); - - // Construct a element for each user facet and add it - // to our existing list of those. - $user_list[$map_count] .= url($user); - $user_rss_list[$map_count] .= url($user_rss); - $all_list[$map_count] .= url($all); - $all_rss_list[$map_count] .= url($all_rss); - $replies_list[$map_count] .= url($replies); - $replies_rss_list[$map_count] .= url($replies_rss); - $foaf_list[$map_count] .= url($foaf); - - $user_count++; - } - - // Make full sitemaps from the lists and save them. - // Possible factoring: put all the lists into a master array, thus allowing - // calling with single argument (i.e., array_to_map('user')). - array_to_map($user_list, 'user'); - array_to_map($user_rss_list, 'user_rss'); - array_to_map($all_list, 'all'); - array_to_map($all_rss_list, 'all_rss'); - array_to_map($replies_list, 'replies'); - array_to_map($replies_rss_list, 'replies_rss'); - array_to_map($foaf_list, 'foaf'); -} - -// ------------------------------------------------------------------------------ -// XML generation functions -// ------------------------------------------------------------------------------ - -// Generate a element. -function url($url_args) -{ - $url = preg_replace('/&/', '&', $url_args['url']); // escape ampersands for XML - $lastmod = $url_args['lastmod']; - $changefreq = $url_args['changefreq']; - $priority = $url_args['priority']; - - if (is_null($url)) { - error("url() arguments require 'url' value."); - } - - $url_out = "\t\n"; - $url_out .= "\t\t$url\n"; - - if ($changefreq) { - $url_out .= "\t\t$changefreq\n"; - } - - if ($lastmod) { - $url_out .= "\t\t$lastmod\n"; - } - - if ($priority) { - $url_out .= "\t\t$priority\n"; - } - - $url_out .= "\t\n"; - - return $url_out; -} - -function sitemap($sitemap_args) -{ - $url = preg_replace('/&/', '&', $sitemap_args['url']); // escape ampersands for XML - $lastmod = $sitemap_args['lastmod']; - - if (is_null($url)) { - error("url() arguments require 'url' value."); - } - - $sitemap_out = "\t\n"; - $sitemap_out .= "\t\t$url\n"; - - if ($lastmod) { - $sitemap_out .= "\t\t$lastmod\n"; - } - - $sitemap_out .= "\t\n"; - - return $sitemap_out; -} - -// Generate a element. -function urlset($urlset_text) -{ - $urlset = '' . "\n" . - '' . "\n" . - $urlset_text . - ''; - - return $urlset; -} - -// Generate a element. -function sitemapindex($sitemapindex_text) -{ - $sitemapindex = '' . "\n" . - '' . "\n" . - $sitemapindex_text . - ''; - - return $sitemapindex; -} - -// Generate a sitemap from an array containing elements and write it to a file. -function array_to_map($url_list, $filename_prefix) -{ - global $output_paths; - - if ($url_list) { - // $map_urls is a long string containing concatenated elements. - while (list($map_idx, $map_urls) = each($url_list)) { - $urlset_path = $output_paths['output_dir'] . "$filename_prefix-$map_idx.xml"; - - write_file($urlset_path, urlset($map_urls)); - } - } -} - -// ------------------------------------------------------------------------------ -// Internal functions -// ------------------------------------------------------------------------------ - -// Parse command line arguments. -function parse_args() -{ - $index_file = get_option_value('f'); - $output_dir = get_option_value('d'); - $output_url = get_option_value('u'); - - if (file_exists($output_dir)) { - if (is_writable($output_dir) === false) { - error("$output_dir is not writable."); - } - } else { - error("output directory $output_dir does not exist."); - } - - $paths = array( - 'index_file' => $index_file, - 'output_dir' => trailing_slash($output_dir), - 'output_url' => trailing_slash($output_url), - ); - - return $paths; -} - -// Ensure paths end with a "/". -function trailing_slash($path) -{ - if (preg_match('/\/$/', $path) == 0) { - $path .= '/'; - } - - return $path; -} - -// Write data to disk. -function write_file($path, $data) -{ - if (is_null($path)) { - error('No path specified for writing to.'); - } elseif (is_null($data)) { - error('No data specified for writing.'); - } - - if (($fh_out = fopen($path,'w')) === false) { - error("couldn't open $path for writing."); - } - - if (fwrite($fh_out, $data) === false) { - error("couldn't write to $path."); - } -} - -// Display an error message and exit. -function error ($error_msg) -{ - if (is_null($error_msg)) { - $error_msg = 'error() was called without any explanation!'; - } - - echo "Error: $error_msg\n"; - exit(1); -} - -?> \ No newline at end of file From 8e2a9bfa5ba5914a734f60da00b3575ef24e5c2c Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 23 Aug 2011 22:21:55 +0000 Subject: [PATCH 075/118] Initialize DataTime with 'now' instead of 'today' (today doesn't give accurate results) --- plugins/Event/eventform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Event/eventform.php b/plugins/Event/eventform.php index d7c554bf32..86c8e8b748 100644 --- a/plugins/Event/eventform.php +++ b/plugins/Event/eventform.php @@ -109,7 +109,7 @@ class EventForm extends Form $this->li(); - $today = new DateTime('today'); + $today = new DateTime('now'); $today->setTimezone(new DateTimeZone(common_timezone())); $this->out->input('event-startdate', From f955cf6ace4e3c13b1c84c13a188ce53ac9c12a5 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Tue, 23 Aug 2011 15:43:14 -0700 Subject: [PATCH 076/118] Add timezone indicator to event start time label --- plugins/Event/eventform.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Event/eventform.php b/plugins/Event/eventform.php index 86c8e8b748..c09a7ab171 100644 --- a/plugins/Event/eventform.php +++ b/plugins/Event/eventform.php @@ -130,8 +130,8 @@ class EventForm extends Form // TRANS: Field label on event form. _m('LABEL','Start time'), $times, - // TRANS: Field title on event form. - _m('Time the event starts.'), + // TRANS: Field title on event form. %s is the abbreviated timezone + sprintf(_m("Time the event starts (%s)."), $today->format("T")), false, null ); From b5c5d8d3933c9694bd105fc1e1f06bc96da2dc79 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Aug 2011 14:57:05 -0400 Subject: [PATCH 077/118] correctly show the blog content for blog entries --- plugins/Blog/blogentrylistitem.php | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/plugins/Blog/blogentrylistitem.php b/plugins/Blog/blogentrylistitem.php index 374c456028..a89a562b77 100644 --- a/plugins/Blog/blogentrylistitem.php +++ b/plugins/Blog/blogentrylistitem.php @@ -71,15 +71,31 @@ class BlogEntryListItem extends NoticeListItemAdapter $out->element('a', array('href' => $notice->bestUrl()), $entry->title); $out->elementEnd('h4'); - if (!empty($entry->summary)) { - $out->elementStart('div', 'blog-entry-summary'); - $out->raw($entry->summary); - $out->elementEnd('div'); - } else { - // XXX: hide content initially; click More... for full text. + // XXX: kind of a hack + + $actionName = $out->trimmed('action'); + + if ($actionName == 'shownotice' || + $actionName == 'showblogentry' || + $actionName == 'conversation') { + $out->elementStart('div', 'blog-entry-content'); $out->raw($entry->content); $out->elementEnd('div'); + + } else { + + if (!empty($entry->summary)) { + $out->elementStart('div', 'blog-entry-summary'); + $out->raw($entry->summary); + $out->elementEnd('div'); + } + + $url = ($entry->url) ? $entry->url : $notice->bestUrl(); + $out->element('a', + array('href' => $url, + 'class' => 'blog-entry-link'), + _('More...')); } } } From eef89c6712c84d1839943a1b7753e4317b2fc4c4 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Aug 2011 15:57:45 -0400 Subject: [PATCH 078/118] Fix blog plugin error to allow deleting a blog post --- plugins/Blog/BlogPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Blog/BlogPlugin.php b/plugins/Blog/BlogPlugin.php index 0f1c34bff1..eb1f5833c4 100644 --- a/plugins/Blog/BlogPlugin.php +++ b/plugins/Blog/BlogPlugin.php @@ -194,7 +194,7 @@ class BlogPlugin extends MicroAppPlugin { if ($notice->object_type == Blog_entry::TYPE) { $entry = Blog_entry::fromNotice($notice); - if (exists($entry)) { + if (!empty($entry)) { $entry->delete(); } } From 3d831ebcfba6ea8f5f1a19f4f78d986e73462183 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Aug 2011 17:17:03 -0400 Subject: [PATCH 079/118] hide buttons for repeat, delete system activities --- plugins/Activity/ActivityPlugin.php | 1 + plugins/Activity/followlistitem.php | 29 +-------- plugins/Activity/joinlistitem.php | 29 +++------ plugins/Activity/leavelistitem.php | 33 +--------- plugins/Activity/systemlistitem.php | 91 +++++++++++++++++++++++++++ plugins/Activity/unfollowlistitem.php | 6 +- 6 files changed, 106 insertions(+), 83 deletions(-) create mode 100644 plugins/Activity/systemlistitem.php diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index e3ee39dc9a..0423a791e4 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -67,6 +67,7 @@ class ActivityPlugin extends Plugin case 'LeaveListItem': case 'FollowListItem': case 'UnfollowListItem': + case 'SystemListItem': include_once $dir . '/'.strtolower($cls).'.php'; return false; default: diff --git a/plugins/Activity/followlistitem.php b/plugins/Activity/followlistitem.php index 5a3721013a..ddbbc45cc0 100644 --- a/plugins/Activity/followlistitem.php +++ b/plugins/Activity/followlistitem.php @@ -45,34 +45,7 @@ if (!defined('STATUSNET')) { * @link http://status.net/ */ -class FollowListItem extends NoticeListItemAdapter +class FollowListItem extends SystemListItem { - /** - * Show the join activity - * - * @return void - */ - - function showNotice() - { - $out = $this->nli->out; - $out->elementStart('div', 'entry-title'); - $this->showContent(); - $out->elementEnd('div'); - } - - function showContent() - { - $notice = $this->nli->notice; - $out = $this->nli->out; - - // FIXME: get the actual data on the leave - - $out->elementStart('div', 'follow-activity'); - - $out->raw($notice->rendered); - - $out->elementEnd('div'); - } } diff --git a/plugins/Activity/joinlistitem.php b/plugins/Activity/joinlistitem.php index 29774917ac..1979524001 100644 --- a/plugins/Activity/joinlistitem.php +++ b/plugins/Activity/joinlistitem.php @@ -3,7 +3,7 @@ * StatusNet - the distributed open-source microblogging tool * Copyright (C) 2011, StatusNet, Inc. * - * Title of module + * List item for when you join a group * * PHP version 5 * @@ -45,22 +45,8 @@ if (!defined('STATUSNET')) { * @link http://status.net/ */ -class JoinListItem extends NoticeListItemAdapter +class JoinListItem extends SystemListItem { - /** - * Show the join activity - * - * @return void - */ - - function showNotice() - { - $out = $this->nli->out; - $out->elementStart('div', 'entry-title'); - $this->showContent(); - $out->elementEnd('div'); - } - function showContent() { $notice = $this->nli->notice; @@ -68,9 +54,8 @@ class JoinListItem extends NoticeListItemAdapter $mem = Group_member::staticGet('uri', $notice->uri); - $out->elementStart('div', 'join-activity'); - if (!empty($mem)) { + $out->elementStart('div', 'join-activity'); $profile = $mem->getMember(); $group = $mem->getGroup(); $out->raw(sprintf(_m('%s joined the group %s.'), @@ -78,11 +63,11 @@ class JoinListItem extends NoticeListItemAdapter $profile->getBestName(), $group->homeUrl(), $group->getBestName())); - } else { - $out->raw($entry->summary); - } - $out->elementEnd('div'); + $out->elementEnd('div'); + } else { + parent::showContent(); + } } } diff --git a/plugins/Activity/leavelistitem.php b/plugins/Activity/leavelistitem.php index 2c8565e986..64845f9018 100644 --- a/plugins/Activity/leavelistitem.php +++ b/plugins/Activity/leavelistitem.php @@ -3,7 +3,7 @@ * StatusNet - the distributed open-source microblogging tool * Copyright (C) 2011, StatusNet, Inc. * - * Title of module + * List item for when you leave a group * * PHP version 5 * @@ -35,7 +35,7 @@ if (!defined('STATUSNET')) { } /** - * NoticeListItemAdapter for join activities + * NoticeListItemAdapter for leave activities * * @category General * @package StatusNet @@ -45,34 +45,7 @@ if (!defined('STATUSNET')) { * @link http://status.net/ */ -class LeaveListItem extends NoticeListItemAdapter +class LeaveListItem extends SystemListItem { - /** - * Show the join activity - * - * @return void - */ - - function showNotice() - { - $out = $this->nli->out; - $out->elementStart('div', 'entry-title'); - $this->showContent(); - $out->elementEnd('div'); - } - - function showContent() - { - $notice = $this->nli->notice; - $out = $this->nli->out; - - // FIXME: get the actual data on the leave - - $out->elementStart('div', 'leave-activity'); - - $out->raw($notice->rendered); - - $out->elementEnd('div'); - } } diff --git a/plugins/Activity/systemlistitem.php b/plugins/Activity/systemlistitem.php new file mode 100644 index 0000000000..257f580ead --- /dev/null +++ b/plugins/Activity/systemlistitem.php @@ -0,0 +1,91 @@ +. + * + * @category Activity + * @package StatusNet + * @author Evan Prodromou + * @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); +} + +/** + * NoticeListItemAdapter for system activities + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +abstract class SystemListItem extends NoticeListItemAdapter +{ + /** + * Show the activity + * + * @return void + */ + + function showNotice() + { + $out = $this->nli->out; + $out->elementStart('div', 'entry-title'); + $this->showContent(); + $out->elementEnd('div'); + } + + function showContent() + { + $notice = $this->nli->notice; + $out = $this->nli->out; + + // FIXME: get the actual data on the leave + + $out->elementStart('div', 'system-activity'); + + $out->raw($notice->rendered); + + $out->elementEnd('div'); + } + + function showNoticeOptions() + { + if (Event::handle('StartShowNoticeOptions', array($this))) { + $user = common_current_user(); + if (!empty($user)) { + $this->nli->out->elementStart('div', 'notice-options'); + $this->showFaveForm(); + $this->showReplyLink(); + $this->nli->out->elementEnd('div'); + } + Event::handle('EndShowNoticeOptions', array($this)); + } + } +} diff --git a/plugins/Activity/unfollowlistitem.php b/plugins/Activity/unfollowlistitem.php index 8bc464ed23..b8c0d670fa 100644 --- a/plugins/Activity/unfollowlistitem.php +++ b/plugins/Activity/unfollowlistitem.php @@ -3,7 +3,7 @@ * StatusNet - the distributed open-source microblogging tool * Copyright (C) 2011, StatusNet, Inc. * - * Title of module + * Unfollow list item * * 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 Cache + * @category Activity * @package StatusNet * @author Evan Prodromou * @copyright 2011 StatusNet, Inc. @@ -45,7 +45,7 @@ if (!defined('STATUSNET')) { * @link http://status.net/ */ -class UnfollowListItem extends NoticeListItemAdapter +class UnfollowListItem extends SystemListItem { /** * Show the join activity From 968cef0fc60f284d3565c18e0c9afbf67ca9e2bf Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Aug 2011 17:30:17 -0400 Subject: [PATCH 080/118] strtolower() the class name in cache keys for listGet() --- classes/Memcached_DataObject.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Memcached_DataObject.php b/classes/Memcached_DataObject.php index 51b1556d77..1f15aa4339 100644 --- a/classes/Memcached_DataObject.php +++ b/classes/Memcached_DataObject.php @@ -278,7 +278,7 @@ class Memcached_DataObject extends Safe_DataObject // We only cache keys -- not objects! foreach ($keyVals as $keyVal) { - $l = self::cacheGet(sprintf("%s:list-ids:%s:%s", $cls, $keyCol, $keyVal)); + $l = self::cacheGet(sprintf("%s:list-ids:%s:%s", strtolower($cls), $keyCol, $keyVal)); if ($l !== false) { $pkeyMap[$keyVal] = $l; foreach ($l as $pkey) { @@ -322,7 +322,7 @@ class Memcached_DataObject extends Safe_DataObject } } foreach ($toFetch as $keyVal) { - self::cacheSet(sprintf("%s:list-ids:%s:%s", $cls, $keyCol, $keyVal), + self::cacheSet(sprintf("%s:list-ids:%s:%s", strtolower($cls), $keyCol, $keyVal), $pkeyMap[$keyVal]); } } From 352e66d25afba8038520dfb157b2b6dadc834e04 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Aug 2011 18:12:02 -0400 Subject: [PATCH 081/118] show system list items for fave/unfave --- plugins/Activity/ActivityPlugin.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index 0423a791e4..a97cf51e32 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -289,6 +289,10 @@ class ActivityPlugin extends Plugin $adapter = null; switch ($notice->verb) { + case ActivityVerb::FAVORITE: + case ActivityVerb::UNFAVORITE: + $adapter = new SystemListItem($nli); + break; case ActivityVerb::JOIN: $adapter = new JoinListItem($nli); break; From 420e7ddf830d728817d6c958e94afcbfa1a05121 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 24 Aug 2011 18:12:26 -0400 Subject: [PATCH 082/118] no class for notice content div in systemlistitem --- plugins/Activity/systemlistitem.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Activity/systemlistitem.php b/plugins/Activity/systemlistitem.php index 257f580ead..d2b99c802e 100644 --- a/plugins/Activity/systemlistitem.php +++ b/plugins/Activity/systemlistitem.php @@ -45,7 +45,7 @@ if (!defined('STATUSNET')) { * @link http://status.net/ */ -abstract class SystemListItem extends NoticeListItemAdapter +class SystemListItem extends NoticeListItemAdapter { /** * Show the activity @@ -56,7 +56,7 @@ abstract class SystemListItem extends NoticeListItemAdapter function showNotice() { $out = $this->nli->out; - $out->elementStart('div', 'entry-title'); + $out->elementStart('div'); $this->showContent(); $out->elementEnd('div'); } From c777267f958b536341b9c33db95e3b3805d2abc1 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Wed, 24 Aug 2011 19:22:59 -0400 Subject: [PATCH 083/118] Fixes for ajax submit button styles when in processing state. --- theme/base/css/display.css | 23 +++++++++-------------- theme/neo/css/display.css | 19 +++++++++++++++---- 2 files changed, 24 insertions(+), 18 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 5ec6d81f7a..2c00b77b1d 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1145,12 +1145,6 @@ display:none; /* secondary elements */ -.processing { /* XXX ? */ -background-image:url(../images/icons/icon_processing.gif); -background-repeat:no-repeat; -background-position:47% 47%; -} - .error, .success, .notice-status { background-color: #F7E8E8; padding: 4px 10px; @@ -1247,14 +1241,6 @@ padding-left:4px; margin-bottom:0; } -#wrap form.processing input.submit, -.entity_actions a.processing, -.dialogbox.processing .submit_dialogbox { -cursor:wait; -outline:none; -text-indent:-9999px; -} - #pagination { background-color: #f2f2f2; clear: left; @@ -1275,6 +1261,15 @@ text-indent:-9999px; float: right; } +#wrap form.processing input.submit, +#wrap a.processing, +.dialogbox.processing .submit_dialogbox { + background: url(../images/icons/icon_processing.gif) no-repeat 47% 47%; + cursor: wait; + outline: none; + text-indent: -9999px; +} + /* footer elements */ #site_nav_global_secondary dt { diff --git a/theme/neo/css/display.css b/theme/neo/css/display.css index d7a4914a7d..d460a5d71d 100644 --- a/theme/neo/css/display.css +++ b/theme/neo/css/display.css @@ -580,7 +580,6 @@ div.entry-content a.response:after { text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); } - #form_login p.form_guide, #form_register #settings_rememberme p.form_guide, #form_openid_login #settings_rememberme p.form_guide, #settings_twitter_remove p.form_guide, #design_background-image_onoff p.form_guide { margin-left: 26%; } @@ -839,9 +838,8 @@ ul.bookmark-tags a:hover { color: #777; } -#bookmarkpopup #submit { - float: right; - margin-right: 0px; +#bookmarkpopup #bookmark-submit { + min-width: 100px; } #bookmarkpopup fieldset fieldset { @@ -1158,6 +1156,11 @@ td.entity_profile { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FB6104', endColorstr='#fc8035',GradientType=0 ); } +#wrap .vevent form.processing input.submit { + text-indent: 0; + background: #ff9d63; +} + #input_form_event .form_settings .form_data { float: left; } @@ -1343,6 +1346,10 @@ li.notice-answer + li.notice { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9d63', endColorstr='#FB6104',GradientType=0 ); } +#qna-answer-submit { + min-width: 100px; +} + .question .question-description input.submit:hover, .question .answer-content input.submit:hover { text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6); background: #ff9d63; @@ -1381,6 +1388,10 @@ label[for=blog-entry-content] { opacity: 1; } +#poll-response-submit { + min-width: 100px; +} + /* SNOD CompanyLogo styling */ #site_nav_local_views a.company_logo { From 3fbcba40a694fe89fa31fa30c77ecdda2f5ec4cc Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 11:37:15 -0400 Subject: [PATCH 084/118] Don't show large image if it's not available --- lib/activityobject.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/activityobject.php b/lib/activityobject.php index 228473d518..0343fa664e 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -699,7 +699,7 @@ class ActivityObject // XXX: Not sure what the best avatar is to use for the // author's "image". For now, I'm using the large size. - $avatarLarge = null; + $imgLink = null; $avatarMediaLinks = array(); foreach ($this->avatarLinks as $a) { @@ -724,7 +724,9 @@ class ActivityObject $object['avatarLinks'] = $avatarMediaLinks; // extension // image - $object['image'] = $imgLink->asArray(); + if (!empty($imgLink)) { + $object['image'] = $imgLink->asArray(); + } } // objectType From 0692d9c04709fb56db74328e7150bb3f113ab07d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 11:50:45 -0400 Subject: [PATCH 085/118] use new stream class rather than old Notice::publicStream() --- actions/apitimelinepublic.php | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/actions/apitimelinepublic.php b/actions/apitimelinepublic.php index 47e253d5fd..b82e01aafe 100644 --- a/actions/apitimelinepublic.php +++ b/actions/apitimelinepublic.php @@ -258,14 +258,18 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction { $notices = array(); - $notice = Notice::publicStream( - ($this->page - 1) * $this->count, $this->count, $this->since_id, - $this->max_id - ); + $profile = ($this->auth_user) ? $this->auth_user->getProfile() : null; - while ($notice->fetch()) { - $notices[] = clone($notice); - } + $stream = new PublicNoticeStream($profile); + + $notice = $stream->getNotices(($this->page - 1) * $this->count, + $this->count, + $this->since_id, + $this->max_id); + + $notices = $notice->fetchAll(); + + NoticeList::prefill($notices); return $notices; } From 3ff029953177d9b2c7caaafb844f268085463ce0 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 11:51:50 -0400 Subject: [PATCH 086/118] more accurate activity output for system activities --- plugins/Activity/ActivityPlugin.php | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index a97cf51e32..cb33738820 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -320,6 +320,50 @@ class ActivityPlugin extends Plugin function onEndNoticeAsActivity($notice, &$activity) { + switch ($notice->verb) { + case ActivityVerb::FAVORITE: + $fave = Fave::staticGet('uri', $notice->uri); + if (!empty($fave)) { + $notice = Notice::staticGet('id', $fave->notice_id); + if (!empty($notice)) { + $target = $notice->asActivity(); + if ($target->verb == ActivityVerb::POST) { + // "I like the thing you posted" + $activity->objects = $target->objects; + } else { + // "I like that you did whatever you did" + $activity->objects = array($target); + } + } + } + break; + case ActivityVerb::UNFAVORITE: + // FIXME: do something here + break; + case ActivityVerb::JOIN: + $mem = Group_member::staticGet('uri', $notice->uri); + if (!empty($mem)) { + $group = $mem->getGroup(); + $activity->objects = array(ActivityObject::fromGroup($group)); + } + break; + case ActivityVerb::LEAVE: + // FIXME: ???? + break; + case ActivityVerb::FOLLOW: + $sub = Subscription::staticGet('uri', $notice->uri); + if (!empty($sub)) { + $profile = Profile::staticGet('id', $sub->subscribed); + if (!empty($profile)) { + $activity->objects = array(ActivityObject::fromProfile($profile)); + } + } + break; + case ActivityVerb::UNFOLLOW: + // FIXME: ???? + break; + } + return true; } From 19af3e8ae9cba81047c71ee71c7ce5e4b7a34d65 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 11:54:26 -0400 Subject: [PATCH 087/118] use 'system' for activity notice source --- plugins/Activity/ActivityPlugin.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index cb33738820..d09bb6bd36 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -48,6 +48,7 @@ if (!defined('STATUSNET')) { class ActivityPlugin extends Plugin { const VERSION = '0.1'; + const SOURCE = 'system'; // Flags to switch off certain activity notices public $StartFollowUser = true; @@ -96,7 +97,7 @@ class ActivityPlugin extends Plugin $notice = Notice::saveNew($user->id, $content, - 'activity', + ActivityPlugin::SOURCE, array('rendered' => $rendered, 'verb' => ActivityVerb::FOLLOW, 'object_type' => ActivityObject::PERSON, @@ -129,7 +130,7 @@ class ActivityPlugin extends Plugin $notice = Notice::saveNew($user->id, $content, - 'activity', + ActivityPlugin::SOURCE, array('rendered' => $rendered, 'uri' => $uri, 'verb' => ActivityVerb::UNFOLLOW, @@ -164,7 +165,7 @@ class ActivityPlugin extends Plugin $notice = Notice::saveNew($user->id, $content, - 'activity', + ActivityPlugin::SOURCE, array('rendered' => $rendered, 'uri' => $fave->getURI(), 'verb' => ActivityVerb::FAVORITE, @@ -200,7 +201,7 @@ class ActivityPlugin extends Plugin $notice = Notice::saveNew($user->id, $content, - 'activity', + ActivityPlugin::SOURCE, array('rendered' => $rendered, 'uri' => $uri, 'verb' => ActivityVerb::UNFAVORITE, @@ -237,7 +238,7 @@ class ActivityPlugin extends Plugin $notice = Notice::saveNew($user->id, $content, - 'activity', + ActivityPlugin::SOURCE, array('rendered' => $rendered, 'uri' => $mem->getURI(), 'verb' => ActivityVerb::JOIN, @@ -274,7 +275,7 @@ class ActivityPlugin extends Plugin $notice = Notice::saveNew($user->id, $content, - 'activity', + ActivityPlugin::SOURCE, array('rendered' => $rendered, 'uri' => $uri, 'verb' => ActivityVerb::LEAVE, From ab785f612a94c131d987e1c195f66a3a52a01b53 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 12:16:40 -0400 Subject: [PATCH 088/118] Make MobileProfile load its own AND theme CSS files if available. --- plugins/MobileProfile/MobileProfilePlugin.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/MobileProfile/MobileProfilePlugin.php b/plugins/MobileProfile/MobileProfilePlugin.php index 5d84c28dc7..bc25b340e9 100644 --- a/plugins/MobileProfile/MobileProfilePlugin.php +++ b/plugins/MobileProfile/MobileProfilePlugin.php @@ -251,16 +251,14 @@ class MobileProfilePlugin extends WAP20Plugin $action->primaryCssLink(); + $action->cssLink($this->path('mp-screen.css'),null,'screen'); if (file_exists(Theme::file('css/mp-screen.css'))) { $action->cssLink('css/mp-screen.css', null, 'screen'); - } else { - $action->cssLink($this->path('mp-screen.css'),null,'screen'); } + $action->cssLink($this->path('mp-handheld.css'),null,'handheld'); if (file_exists(Theme::file('css/mp-handheld.css'))) { $action->cssLink('css/mp-handheld.css', null, 'handheld'); - } else { - $action->cssLink($this->path('mp-handheld.css'),null,'handheld'); } // Allow other plugins to load their styles. From 3b4d3c6ac33c37bf16c0e90c2e52935ad635c38c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 12:18:51 -0400 Subject: [PATCH 089/118] actions are directed to affected group or person --- plugins/Activity/ActivityPlugin.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index d09bb6bd36..92972ff173 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -99,6 +99,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'replies' => array($other->getUri()), 'verb' => ActivityVerb::FOLLOW, 'object_type' => ActivityObject::PERSON, 'uri' => $sub->uri)); @@ -132,6 +133,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'replies' => array($other->getUri()), 'uri' => $uri, 'verb' => ActivityVerb::UNFOLLOW, 'object_type' => ActivityObject::PERSON)); @@ -167,6 +169,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'replies' => array($author->getUri()), 'uri' => $fave->getURI(), 'verb' => ActivityVerb::FAVORITE, 'object_type' => (($notice->verb == ActivityVerb::POST) ? @@ -203,6 +206,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'replies' => array($author->getUri()), 'uri' => $uri, 'verb' => ActivityVerb::UNFAVORITE, 'object_type' => (($notice->verb == ActivityVerb::POST) ? @@ -240,6 +244,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'groups' => array($group->id), 'uri' => $mem->getURI(), 'verb' => ActivityVerb::JOIN, 'object_type' => ActivityObject::GROUP)); @@ -277,6 +282,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'groups' => array($group->id), 'uri' => $uri, 'verb' => ActivityVerb::LEAVE, 'object_type' => ActivityObject::GROUP)); From 1cab702df9f99417ee81d238e33435502cde49c8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 12:19:22 -0400 Subject: [PATCH 090/118] add source class to notice list items --- lib/noticelistitem.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/noticelistitem.php b/lib/noticelistitem.php index 8fc2f13ca2..cfdcaf581c 100644 --- a/lib/noticelistitem.php +++ b/lib/noticelistitem.php @@ -167,6 +167,9 @@ class NoticeListItem extends Widget if ($this->notice->scope != 0 && $this->notice->scope != 1) { $class .= ' limited-scope'; } + if (!empty($this->notice->source)) { + $class .= ' notice-source-'.$this->notice->source; + } $this->out->elementStart('li', array('class' => $class, 'id' => 'notice-' . $id)); Event::handle('EndOpenNoticeListItemElement', array($this)); From 85aba158300007824c30bb5409a88e4c51b8416c Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 12:24:09 -0400 Subject: [PATCH 091/118] Style cleanup for Mobile Profile. --- plugins/MobileProfile/mp-screen.css | 557 ++++++++++++++++------------ theme/base/css/mp-screen.css | 7 - theme/neo-blue/css/mp-screen.css | 369 +----------------- theme/neo-light/css/mp-screen.css | 463 ----------------------- theme/neo/css/mp-screen.css | 366 +----------------- 5 files changed, 344 insertions(+), 1418 deletions(-) delete mode 100644 theme/base/css/mp-screen.css delete mode 100644 theme/neo-light/css/mp-screen.css diff --git a/plugins/MobileProfile/mp-screen.css b/plugins/MobileProfile/mp-screen.css index d82486182a..c77933b0ca 100644 --- a/plugins/MobileProfile/mp-screen.css +++ b/plugins/MobileProfile/mp-screen.css @@ -1,288 +1,357 @@ -/** theme: mobile profile screen - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2009-2010 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - #wrap { -min-width:0; -max-width:100%; + margin: 0; + padding: 0; + min-width:0; + max-width:100%; + width: auto; + border: none; } #header { -margin:0; -padding:0.7em 2%; -width:96%; + width: 100%; } address { -margin:1em 0 0 0; -float:left; -width:100%; + width: auto; + left: 0px; } -address .vcard .photo { -margin-right:0; + +address img { + float: left; + background: #fff; + padding: 2px 2px 2px 6px; } address img + .fn { -display:block; -margin-top:1em; -float:left; + display:block; + margin-top: 8px; + clear: left; + float: left; + color: #000; + margin-left: 6px; } -.vcard .photo { -margin-right:7px; +#site_nav_global_primary { + width: 100%; + padding: 2px 0; + height: auto; + left:0; } +#site_nav_global_primary li { + margin-right: 4px; +} + +#site_nav_global_primary li:last-child { + margin-right: 0px; +} + +#site_nav_global_primary a { + padding: 2px 4px; +} + +#core { + width: 100%; + border-left: none; + border-right: none; +} + +#aside_primary_wrapper { + background: none; +} + +#content_wrapper { + right: 0px; + border: none; +} + +#site_nav_local_views_wrapper { + right: 0px; + border: none; +} + +#navtoggle { + float: right; + padding: 2px 6px; + text-decoration: none; +} + +#site_nav_local_views { + margin-bottom: 0px; + padding: 10px 0px 10px 6px; + left: 0px; + width: 100%; + display: none; +} + +#site_nav_local_views h3 { + font-size: 1em; + margin-bottom: 0px; +} + +#site_nav_local_views li { + margin: 0 6px 0 0; + clear: left; +} + +#site_nav_local_views li li { + float: left; + clear: none; + margin: 0 10px 6px 0; +} + +#login #site_nav_local_views, #register #site_nav_local_views, #openidlogin #site_nav_local_views { + display: block; + margin-top: 25px; +} + +#login #navtoggle, #register #navtoggle, #openidlogin #navtoggle { + display: none; +} + +#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li { + float: left; + clear: none; + margin: 0 10px 6px 0; +} + +#content { + width: 96%; + padding: 10px 2%; + min-height: auto; + left: 0px; +} + +#content h1 { + clear: left; +} + +#footer { + width: auto; + padding: 10px 4px 4px 4px; +} + +.input_forms { + width: 102%; + left: -2%; + padding-left: 2%; +} + +#input_form_nav li a { + margin-right: 6px; +} + +.input_form { + clear: left; + width: 100%; + padding-bottom: 0px; +} + +#input_form_status, #input_form_direct { + padding-bottom: 40px; +} + +.form_notice_placeholder .placeholder { + width: 290px; + margin-bottom: 20px; +} + +.form_notice { + float: left; + width: 300px; + padding: 4px 0px; +} + +#form_notice-direct.form_notice { + padding-top: 0px; +} + +.form_notice textarea, #form_notice-direct.form_notice textarea { + width: 292px; + height: 36px; + padding: 4px 4px 16px 4px; + font-size: 1em; +} + +.form_notice .count { + position: absolute; + top: 46px; + left: 278px; +} + +#form_notice-direct.form_notice .count { + top: 76px; + left: 278px; +} + +.form_notice .error, +.form_notice .success, +.form_notice .notice-status { + width: 285px; +} + + +/*input type=file no good in +iPhone/iPod Touch, Android, Opera Mini Simulator +*/ + +.form_notice .notice_data-attach, .form_notice .notice_data-geo_wrap label, .form_notice .notice_data-geo_wrap input { + display:none; +} + +.checkbox-wrapper { + margin-left: 0px; + clear: left; + float: left; + width: 200px; + z-index: 2; +} + +.form_notice .checkbox-wrapper { + margin-left: 0px; +} + +.checkbox-wrapper label.checkbox { + display: none !important; +} + +.checkbox-wrapper #notice_private { + display: inline; + margin-top: 10px; + margin-left: 20px; +} + +.form_notice .checkbox-wrapper #notice_private { + margin-left: 0px; +} + +.checkbox-wrapper:before { + content: "Send privately?"; +} + +.input_form .form_settings fieldset fieldset { + width: 300px; +} + +.input_form .form_settings label { + display: inline; +} + +label[for=blog-entry-content] { + display: none !important; +} + +.input_form .form_settings li input { + width: 292px; +} + +.input_form .form_settings li textarea { + width: 292px; +} + +.bookmarkform-thumbnail { + display: none; +} + +.input_form .form_settings .submit { + margin: 10px 0; + clear: left; + float: left; +} + +.form_notice input.submit { + margin-top: -45px; + width: 80px; +} + +#form_notice-direct.form_notice #notice_action-submit { + top: 148px; +} + +.threaded-replies { + width: 80%; +} + +#content .notice .threaded-replies .notice { + width: 95%; +} + +.threaded-replies .placeholder { + margin: 10px; + width: 92%; +} + +.threaded-replies .form_notice { + margin-bottom: 10px; +} + +.threaded-replies .form_notice textarea { + width: 220px; +} + +.threaded-replies .form_notice .count { + left: 215px; + top: 55px; +} + +.threaded-replies .form_notice #notice_action-submit { + position: relative; + top: 0; + bottom: 0px; + left: 0; + margin-top: 10px; +} + +.threaded-replies .form_notice .error, +.threaded-replies .form_notice .success, +.threaded-replies .form_notice .notice-status { + width: 210px; +} .form_settings fieldset { -margin-bottom:7px; + margin-bottom: 7px; } .form_settings label { -width:auto; -display:block; -float:none; + width: auto; + display: block; + text-align: left; } + .form_settings .form_data li { -margin-bottom:7px; + margin-bottom: 10px; } .form_settings .form_data textarea, .form_settings .form_data select, .form_settings .form_data input { -margin-left:0; -display:block; + margin-left: 0; } + .form_settings .form_data textarea { -width:96.41%; + width: 98%; } .form_settings .form_data label { -float:none; + float: none; } .form_settings .form_data p.form_guide { -width:auto; -margin-left:0; + margin-left: 0; } -#site_nav_global_primary { -margin:0; -width:100%; -list-style-type:none; -position:absolute; -top:0; -left:0; -} -#site_nav_global_primary li { -margin-left:0; -margin-right:4%; -float:left; -font-size:0.9em; +.form_settings input.checkbox, .form_settings input.radio { + left: 0px; } -#form_notice { -width:100%; +.form_settings label.checkbox, .form_settings label.radio { + left: -10px; } -#form_notice textarea { -width:60%; -height:20px; +.notice .addressees:before { + content: '\003E'; } -.form_notice .count { -position:absolute; -bottom:2px; -right:40%; -z-index:9; +.user_in .notice div.entry-content { + max-width: 150px; } - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ -.form_notice .count + label, -#form_notice label[for="notice_data-attach"] { -display:none; -} -#form_notice input.notice_data-attach { -position:static; -clear:both; -width:65%; -height:auto; -display:block; -z-index:9; -padding:0; -margin:0; -background:none; -opacity:1; -} - -#form_notice .submit { -width:20%; -right:2%; -text-align:center; -} - - -#site_nav_local_views li { -margin-left:0; -margin-right:0; -} -#site_nav_local_views li:first-child { -margin-left:0; -} -#site_nav_local_views a { -padding:1px 3px; -display:block; -font-size:0.9em; -} -#site_nav_local_views .current a { -text-shadow:none; -} -#site_nav_local_views li { --moz-box-shadow:none; --webkit-box-shadow:none; -box-shadow:none; -} - - -#content { -width:96.41%; -min-height:auto; -} -#content, -#site_nav_local_views a, -#aside_primary { -border:0; -} - -.instructions p, -.instructions ul { -margin-bottom:4px; -} - -h1 { -margin-bottom:0; -} - -.notice, -.profile { -padding-top:4px; -padding-bottom:4px; -min-height:65px; -} -#content .notice .entry-title { -float:left; -width:100%; -margin-left:0; -} -#content .notice .author .photo { -position:static; -float:left; -} -#content .notice div.entry-content { -margin-left:0; -width:75%; -max-width:100%; -min-width:0; -} -.notice-options { -width:43px; -margin-right:1%; -} - -.notice-options form.processing { -background-image:none; -} -#wrap .notice-options form.processing input.submit { -background-position:0 47%; -} - -.notice .notice-options a, -.notice .notice-options input { -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -} -.notice .notice-options a, -.notice .notice-options form { -margin:-4px 0 0 0; -} -.notice .notice-options .form_repeat, -.notice .notice-options .notice_delete { -margin-top:11px; -} -.notice .notice-options .form_favor, -.notice .notice-options .form_disfavor, -.notice .notice-options .form_repeat { -margin-right:11px; -} - -.notice .notice-options .notice_delete { -float:left; -} - -.entity_profile { -width:auto; -} - -.entity_actions { -margin-right:0; -margin-left:0; -clear:both; -float:none; -width:100%; -max-width:9999px; -} - -.entity_profile { -margin-bottom:7px; -min-height:0; -} - -.entity_profile .entity_fn, -.entity_profile .entity_nickname, -.entity_profile .entity_location, -.entity_profile .entity_url, -.entity_profile .entity_note, -.entity_profile .entity_tags, -.entity_profile .entity_aliases { -line-height:1.4; -margin-left:0; -} - -.entity_profile .entity_depiction { -margin-bottom:1%; -margin-right:7px; -} - -.entity_actions { -margin-bottom:1%; -float:left; -width:100%; -} - -.entity_actions li { -float:left; -margin-right:1.5%; -margin-bottom:0; -height:29px; -width:40%; -} - -.user_in .entity_actions .entity_subscribe { -margin-bottom:47px; -width:auto; -height:auto; -margin-right:5%; -} - -#footer { -width:96%; -padding:2%; -} - diff --git a/theme/base/css/mp-screen.css b/theme/base/css/mp-screen.css deleted file mode 100644 index c9fb6dcc4f..0000000000 --- a/theme/base/css/mp-screen.css +++ /dev/null @@ -1,7 +0,0 @@ -/* just a placeholder for now */ - -address img + .fn { -display:block; -margin-top:1em; -float:left; -} diff --git a/theme/neo-blue/css/mp-screen.css b/theme/neo-blue/css/mp-screen.css index 998f307ccf..670843adcf 100644 --- a/theme/neo-blue/css/mp-screen.css +++ b/theme/neo-blue/css/mp-screen.css @@ -1,140 +1,49 @@ -/* mobile style */ +address img { + background: none !important; +} + +/* copy of mp-screen.css from neo theme */ body { background-image: none; min-width: 0; } -#wrap { - margin: 0; - padding: 0; - min-width:0; - max-width:100%; - width: auto; - border: none; -} - #header { - width: 100%; padding: 0; } -address { - float:left; - margin: 0px; - width: auto; - left: 0px; -} - -address img { - float: left; - padding: 2px 2px 2px 6px; -} - -address img + .fn { - display:block; - margin-top: 8px; - clear: left; - float: left; - color: #000; - margin-left: 6px; -} - #site_nav_global_primary { - margin:0; - width: 100%; - padding: 2px 0; - height: auto; - position:absolute; - top:0; - left:0; - font-size: 1em; - letter-spacing: 0em; - border-top: none; + top: 0; -webkit-border-top-right-radius: 0px; -moz-border-radius-topright: 0px; border-top-right-radius: 0px; - height: 24px; line-height: 16px; } #site_nav_global_primary li { - margin-left:0; - margin-right: 2px; - float:left; - font-size:0.9em; - padding: 2px 4px; - line-height: 1em; - height: auto; -} - -#site_nav_global_primary li:last-child { - margin-right: 0px; -} - -#site_nav_global_primary a { - padding: 2px 4px; - height: 20px; -} - -#core { - width: 100%; - border-left: none; - border-right: none; -} - -#aside_primary_wrapper { - background: none; -} - -#content_wrapper { - right: 0px; - border: none; -} - -#site_nav_local_views_wrapper { - right: 0px; - border: none; -} - -#navtoggle { - float: right; - padding: 2px 6px; - text-decoration: none; + float: left; + margin-right: 8px; } #site_nav_local_views { - height: auto; - font-size: 1em; line-height: 2em; - margin-bottom: 0px; - padding: 10px 0px 10px 6px; - background: none; - left: 0px; - width: 100%; - display: none; } #site_nav_local_views h3 { color: #333; - font-size: 1em; - margin-bottom: 0px; background: none; text-transform: none; letter-spacing: 0; padding-bottom: 0; } -#site_nav_local_views li { - margin-right: 6px; - margin-bottom: 0px; - clear: left; +#site_nav_local_views li li { + margin: 0 6px 6px 0; } -#site_nav_local_views li li { - float: left; - clear: none; - margin-bottom: 6px; +#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li { + margin: 0 6px 6px 0; } #site_nav_local_views a { @@ -153,161 +62,23 @@ address img + .fn { background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb)); } -#login #site_nav_local_views, #register #site_nav_local_views, #openidlogin #site_nav_local_views { - display: block; - margin-top: 25px; -} - -#login #navtoggle, #register #navtoggle, #openidlogin #navtoggle { - display: none; -} - -#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li { - float: left; - clear: none; - margin-bottom: 6px; -} - -#content { - width: 96%; - padding: 10px 2%; - margin: 0; - min-height: auto; - left: 0px; -} - -#content h1 { - clear: left; -} - -#footer { - width: auto; - margin: 0; - padding: 10px 4px 4px 4px; -} - .input_forms { - display: block; - width: 102%; top: -10px; - left: -2%; - padding-left: 2%; padding-right: 0; } #input_form_nav li a { padding: 0px 4px 1px 4px; - margin-right: 6px; -} - -.input_form { - clear: left; - width: 100%; - padding-bottom: 0px; -} - -#input_form_status, #input_form_direct { - padding-bottom: 40px; -} - -.form_notice_placeholder .placeholder { - width: 290px; - margin-bottom: 20px; -} - -.form_notice { - float: left; - margin-left: 0px; - width: 300px; - padding: 4px 0px; -} - -#form_notice-direct.form_notice { - padding-top: 0px; -} - -.form_notice textarea, #form_notice-direct.form_notice textarea { - width: 292px; - height: 36px; - padding: 4px 4px 16px 4px; - font-size: 1em; } .form_notice .count { - position: absolute; top: 44px; - left: 270px; + left: 276px; } #form_notice-direct.form_notice .count { - top: 70px; - left: 270px; -} - -.form_notice .error, -.form_notice .success, -.form_notice .notice-status { - width: 285px; -} - - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ - -.form_notice .notice_data-attach, .form_notice .notice_data-geo_wrap label, .form_notice .notice_data-geo_wrap input { - display:none; -} - -.checkbox-wrapper { - margin-left: 0px; - clear: left; - float: left; - width: 200px; - z-index: 2; -} - -.form_notice .checkbox-wrapper { - display: inline; - margin-left: 0px; -} - -.checkbox-wrapper label.checkbox { - display: none !important; -} - -.checkbox-wrapper #notice_private { - display: inline; - margin-top: 10px; - margin-left: 20px; -} - -.form_notice .checkbox-wrapper #notice_private { - margin-left: 0px; -} - -.checkbox-wrapper:before { - content: "Send privately?"; -} - -.input_form fieldset fieldset { - width: 300px; -} - -.input_form .form_settings label { - display: inline; -} - -.input_form .form_settings li input { - width: 292px; -} - -.input_form .form_settings li textarea { - width: 292px; -} - -.bookmarkform-thumbnail { - display: none; + top: 74px; + left: 276px; } #event-startdate, #event-starttime, #event-enddate, #event-endtime { @@ -317,118 +88,14 @@ iPhone/iPod Touch, Android, Opera Mini Simulator .input_form .form_settings .submit { font-size: 1em; - margin: 10px 0; - clear: left; - float: left; } -.form_notice #notice_action-submit { - text-align: center; - left: 0px; - top: 100%; - margin-top: -45px; - width: 80px; +.form_notice input.submit { font-size: 1em; } -#form_notice-direct.form_notice #notice_action-submit { - top: 148px; -} - -.threaded-replies { - width: 80%; - margin-left: 59px; -} - -#content .notice .threaded-replies .notice { - width: 95%; -} - -.threaded-replies .placeholder { - margin: 10px; - width: 92%; -} - -.threaded-replies .form_notice { - margin-bottom: 10px; -} - -.threaded-replies .form_notice textarea { - width: 220px; -} - -.threaded-replies .form_notice .count { - left: 205px; - top: 53px; -} - -.threaded-replies .form_notice #notice_action-submit { - position: relative; - top: 0; - bottom: 0px; - left: 0; - margin-top: 10px; -} - -.threaded-replies .form_notice .error, -.threaded-replies .form_notice .success, -.threaded-replies .form_notice .notice-status { - width: 210px; -} - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; - text-align: left; -} - -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0 !important; -} - -#settings_design_color .form_data { - width: auto; - margin-right: 0; -} - -.form_settings input.checkbox, .form_settings input.radio { - left: 0px; -} - -.form_settings label.checkbox, .form_settings label.radio { - left: -10px; -} - -.notice .addressees:before { - content: '\003E'; -} - -.user_in .notice div.entry-content { - max-width: 150px; +.question div.question-description { + max-width: 100% !important; } ul.qna-dummy { diff --git a/theme/neo-light/css/mp-screen.css b/theme/neo-light/css/mp-screen.css deleted file mode 100644 index 87f8f298f8..0000000000 --- a/theme/neo-light/css/mp-screen.css +++ /dev/null @@ -1,463 +0,0 @@ -/* mobile style */ - -body { - background-image: none; - min-width: 0; -} - -#wrap { - margin: 0; - padding: 0; - min-width:0; - max-width:100%; - width: auto; - border: none; -} - -#header { - width: 100%; - padding: 0; -} - -address { - float:left; - margin: 0px; - width: auto; - left: 0px; -} - -address img { - float: left; - background: #fff; - padding: 2px 2px 2px 6px; -} - -address img + .fn { - display:block; - margin-top: 8px; - clear: left; - float: left; - color: #000; - margin-left: 6px; -} - -#site_nav_global_primary { - margin:0; - width: 100%; - padding: 2px 0; - height: auto; - position:absolute; - top:0; - left:0; - font-size: 1em; - letter-spacing: 0em; - border-top: none; - -webkit-border-top-right-radius: 0px; - -moz-border-radius-topright: 0px; - border-top-right-radius: 0px; - height: 24px; - line-height: 16px; -} - -#site_nav_global_primary li { - margin-left:0; - margin-right: 2px; - float:left; - font-size:0.9em; - padding: 2px 4px; - line-height: 1em; - height: auto; -} - -#site_nav_global_primary li:last-child { - margin-right: 0px; -} - -#site_nav_global_primary a { - padding: 2px 4px; - height: 20px; -} - -#core { - width: 100%; - border-left: none; - border-right: none; -} - -#aside_primary_wrapper { - background: none; -} - -#content_wrapper { - right: 0px; - border: none; -} - -#site_nav_local_views_wrapper { - right: 0px; - border: none; -} - -#navtoggle { - float: right; - padding: 2px 6px; - text-decoration: none; -} - -#site_nav_local_views { - height: auto; - font-size: 1em; - line-height: 2em; - margin-bottom: 0px; - padding: 10px 0px 10px 6px; - background: none; - left: 0px; - width: 100%; - display: none; -} - -#site_nav_local_views h3 { - color: #333; - font-size: 1em; - margin-bottom: 0px; - background: none; - text-transform: none; - letter-spacing: 0; - padding-bottom: 0; -} - -#site_nav_local_views li { - margin-right: 6px; - margin-bottom: 0px; - clear: left; -} - -#site_nav_local_views li li { - float: left; - clear: none; - margin-bottom: 6px; -} - -#site_nav_local_views a { - color: #fff; - text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);; - background: #364a84; - background: -moz-linear-gradient(top, #7b8dbb , #364a84); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84)); - font-size: 0.9em; - width: auto; -} - -#site_nav_local_views a:hover { - background: #7b8dbb; - background: -moz-linear-gradient(top, #364a84 , #7b8dbb); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb)); -} - -#login #site_nav_local_views, #register #site_nav_local_views, #openidlogin #site_nav_local_views { - display: block; - margin-top: 25px; -} - -#login #navtoggle, #register #navtoggle, #openidlogin #navtoggle { - display: none; -} - -#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li { - float: left; - clear: none; - margin-bottom: 6px; -} - -#content { - width: 96%; - padding: 10px 2%; - margin: 0; - min-height: auto; - left: 0px; -} - -#content h1 { - clear: left; -} - -#footer { - width: auto; - margin: 0; - padding: 10px 4px 4px 4px; -} - -.input_forms { - display: block; - width: 102%; - top: -10px; - left: -2%; - padding-left: 2%; - padding-right: 0; -} - -#input_form_nav li a { - padding: 0px 4px 1px 4px; - margin-right: 6px; -} - -.input_form { - clear: left; - width: 100%; - padding-bottom: 0px; -} - -#input_form_status, #input_form_direct { - padding-bottom: 40px; -} - -.form_notice_placeholder .placeholder { - width: 290px; - margin-bottom: 20px; -} - -.form_notice { - float: left; - margin-left: 0px; - width: 300px; - padding: 4px 0px; -} - -#form_notice-direct.form_notice { - padding-top: 0px; -} - -.form_notice textarea, #form_notice-direct.form_notice textarea { - width: 292px; - height: 36px; - padding: 4px 4px 16px 4px; - font-size: 1em; -} - -.form_notice .count { - position: absolute; - top: 44px; - left: 270px; -} - -#form_notice-direct.form_notice .count { - top: 70px; - left: 270px; -} - -.form_notice .error, -.form_notice .success, -.form_notice .notice-status { - width: 285px; -} - - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ - -.form_notice .notice_data-attach, .form_notice .notice_data-geo_wrap label, .form_notice .notice_data-geo_wrap input { - display:none; -} - -.checkbox-wrapper { - margin-left: 0px; - clear: left; - float: left; - width: 200px; - z-index: 2; -} - -.form_notice .checkbox-wrapper { - display: inline; - margin-left: 0px; -} - -.checkbox-wrapper label.checkbox { - display: none !important; -} - -.checkbox-wrapper #notice_private { - display: inline; - margin-top: 10px; - margin-left: 20px; -} - -.form_notice .checkbox-wrapper #notice_private { - margin-left: 0px; -} - -.checkbox-wrapper:before { - content: "Send privately?"; -} - -.input_form fieldset fieldset { - width: 300px; -} - -.input_form .form_settings label { - display: inline; -} - -.input_form .form_settings li input { - width: 292px; -} - -.input_form .form_settings li textarea { - width: 292px; -} - -.bookmarkform-thumbnail { - display: none; -} - -#event-startdate, #event-starttime, #event-enddate, #event-endtime { - width: 120px; - margin-right: 12px; -} - -.input_form .form_settings .submit { - font-size: 1em; - margin: 10px 0; - clear: left; - float: left; -} - -.form_notice #notice_action-submit { - text-align: center; - left: 0px; - top: 100%; - margin-top: -45px; - width: 80px; - font-size: 1em; -} - -#form_notice-direct.form_notice #notice_action-submit { - top: 148px; -} - -.threaded-replies { - width: 80%; - margin-left: 59px; -} - -#content .notice .threaded-replies .notice { - width: 95%; -} - -.threaded-replies .placeholder { - margin: 10px; - width: 92%; -} - -.threaded-replies .form_notice { - margin-bottom: 10px; -} - -.threaded-replies .form_notice textarea { - width: 220px; -} - -.threaded-replies .form_notice .count { - left: 205px; - top: 53px; -} - -.threaded-replies .form_notice #notice_action-submit { - position: relative; - top: 0; - bottom: 0px; - left: 0; - margin-top: 10px; -} - -.threaded-replies .form_notice .error, -.threaded-replies .form_notice .success, -.threaded-replies .form_notice .notice-status { - width: 210px; -} - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; - text-align: left; -} - -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0 !important; -} - -#settings_design_color .form_data { - width: auto; - margin-right: 0; -} - -.form_settings input.checkbox, .form_settings input.radio { - left: 0px; -} - -.form_settings label.checkbox, .form_settings label.radio { - left: -10px; -} - -.notice .addressees:before { - content: '\003E'; -} - -.user_in .notice div.entry-content { - max-width: 150px; -} - -ul.qna-dummy { - width: 80%; -} - -.qna-dummy-placeholder input { - width: 92%; -} - -.question #qna-answer, .qna-full-question #qna-answer { - width: 220px; -} - -.threaded-replies #answer-form fieldset { - width: 220px; -} - -.threaded-replies #qna-answer-submit { - float: left; - clear: left; - position: relative; - top: 0; - bottom: 0px; - left: 0; - margin-top: 10px; -} - -a.company_logo { - display: none !important; -} diff --git a/theme/neo/css/mp-screen.css b/theme/neo/css/mp-screen.css index 87f8f298f8..013779ca95 100644 --- a/theme/neo/css/mp-screen.css +++ b/theme/neo/css/mp-screen.css @@ -1,141 +1,43 @@ -/* mobile style */ - body { background-image: none; min-width: 0; } -#wrap { - margin: 0; - padding: 0; - min-width:0; - max-width:100%; - width: auto; - border: none; -} - #header { - width: 100%; padding: 0; } -address { - float:left; - margin: 0px; - width: auto; - left: 0px; -} - -address img { - float: left; - background: #fff; - padding: 2px 2px 2px 6px; -} - -address img + .fn { - display:block; - margin-top: 8px; - clear: left; - float: left; - color: #000; - margin-left: 6px; -} - #site_nav_global_primary { - margin:0; - width: 100%; - padding: 2px 0; - height: auto; - position:absolute; - top:0; - left:0; - font-size: 1em; - letter-spacing: 0em; - border-top: none; + top: 0; -webkit-border-top-right-radius: 0px; -moz-border-radius-topright: 0px; border-top-right-radius: 0px; - height: 24px; line-height: 16px; } #site_nav_global_primary li { - margin-left:0; - margin-right: 2px; - float:left; - font-size:0.9em; - padding: 2px 4px; - line-height: 1em; - height: auto; -} - -#site_nav_global_primary li:last-child { - margin-right: 0px; -} - -#site_nav_global_primary a { - padding: 2px 4px; - height: 20px; -} - -#core { - width: 100%; - border-left: none; - border-right: none; -} - -#aside_primary_wrapper { - background: none; -} - -#content_wrapper { - right: 0px; - border: none; -} - -#site_nav_local_views_wrapper { - right: 0px; - border: none; -} - -#navtoggle { - float: right; - padding: 2px 6px; - text-decoration: none; + float: left; + margin-right: 8px; } #site_nav_local_views { - height: auto; - font-size: 1em; line-height: 2em; - margin-bottom: 0px; - padding: 10px 0px 10px 6px; - background: none; - left: 0px; - width: 100%; - display: none; } #site_nav_local_views h3 { color: #333; - font-size: 1em; - margin-bottom: 0px; background: none; text-transform: none; letter-spacing: 0; padding-bottom: 0; } -#site_nav_local_views li { - margin-right: 6px; - margin-bottom: 0px; - clear: left; +#site_nav_local_views li li { + margin: 0 6px 6px 0; } -#site_nav_local_views li li { - float: left; - clear: none; - margin-bottom: 6px; +#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li { + margin: 0 6px 6px 0; } #site_nav_local_views a { @@ -154,161 +56,23 @@ address img + .fn { background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb)); } -#login #site_nav_local_views, #register #site_nav_local_views, #openidlogin #site_nav_local_views { - display: block; - margin-top: 25px; -} - -#login #navtoggle, #register #navtoggle, #openidlogin #navtoggle { - display: none; -} - -#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li { - float: left; - clear: none; - margin-bottom: 6px; -} - -#content { - width: 96%; - padding: 10px 2%; - margin: 0; - min-height: auto; - left: 0px; -} - -#content h1 { - clear: left; -} - -#footer { - width: auto; - margin: 0; - padding: 10px 4px 4px 4px; -} - .input_forms { - display: block; - width: 102%; top: -10px; - left: -2%; - padding-left: 2%; padding-right: 0; } #input_form_nav li a { padding: 0px 4px 1px 4px; - margin-right: 6px; -} - -.input_form { - clear: left; - width: 100%; - padding-bottom: 0px; -} - -#input_form_status, #input_form_direct { - padding-bottom: 40px; -} - -.form_notice_placeholder .placeholder { - width: 290px; - margin-bottom: 20px; -} - -.form_notice { - float: left; - margin-left: 0px; - width: 300px; - padding: 4px 0px; -} - -#form_notice-direct.form_notice { - padding-top: 0px; -} - -.form_notice textarea, #form_notice-direct.form_notice textarea { - width: 292px; - height: 36px; - padding: 4px 4px 16px 4px; - font-size: 1em; } .form_notice .count { - position: absolute; top: 44px; - left: 270px; + left: 276px; } #form_notice-direct.form_notice .count { - top: 70px; - left: 270px; -} - -.form_notice .error, -.form_notice .success, -.form_notice .notice-status { - width: 285px; -} - - -/*input type=file no good in -iPhone/iPod Touch, Android, Opera Mini Simulator -*/ - -.form_notice .notice_data-attach, .form_notice .notice_data-geo_wrap label, .form_notice .notice_data-geo_wrap input { - display:none; -} - -.checkbox-wrapper { - margin-left: 0px; - clear: left; - float: left; - width: 200px; - z-index: 2; -} - -.form_notice .checkbox-wrapper { - display: inline; - margin-left: 0px; -} - -.checkbox-wrapper label.checkbox { - display: none !important; -} - -.checkbox-wrapper #notice_private { - display: inline; - margin-top: 10px; - margin-left: 20px; -} - -.form_notice .checkbox-wrapper #notice_private { - margin-left: 0px; -} - -.checkbox-wrapper:before { - content: "Send privately?"; -} - -.input_form fieldset fieldset { - width: 300px; -} - -.input_form .form_settings label { - display: inline; -} - -.input_form .form_settings li input { - width: 292px; -} - -.input_form .form_settings li textarea { - width: 292px; -} - -.bookmarkform-thumbnail { - display: none; + top: 74px; + left: 276px; } #event-startdate, #event-starttime, #event-enddate, #event-endtime { @@ -318,118 +82,14 @@ iPhone/iPod Touch, Android, Opera Mini Simulator .input_form .form_settings .submit { font-size: 1em; - margin: 10px 0; - clear: left; - float: left; } -.form_notice #notice_action-submit { - text-align: center; - left: 0px; - top: 100%; - margin-top: -45px; - width: 80px; +.form_notice input.submit { font-size: 1em; } -#form_notice-direct.form_notice #notice_action-submit { - top: 148px; -} - -.threaded-replies { - width: 80%; - margin-left: 59px; -} - -#content .notice .threaded-replies .notice { - width: 95%; -} - -.threaded-replies .placeholder { - margin: 10px; - width: 92%; -} - -.threaded-replies .form_notice { - margin-bottom: 10px; -} - -.threaded-replies .form_notice textarea { - width: 220px; -} - -.threaded-replies .form_notice .count { - left: 205px; - top: 53px; -} - -.threaded-replies .form_notice #notice_action-submit { - position: relative; - top: 0; - bottom: 0px; - left: 0; - margin-top: 10px; -} - -.threaded-replies .form_notice .error, -.threaded-replies .form_notice .success, -.threaded-replies .form_notice .notice-status { - width: 210px; -} - -.form_settings fieldset { -margin-bottom:7px; -} - -.form_settings label { -width:auto; -display:block; -float:none; - text-align: left; -} - -.form_settings .form_data li { -margin-bottom:7px; -} - -.form_settings .form_data textarea, -.form_settings .form_data select, -.form_settings .form_data input { -margin-left:0; -display:block; -} -.form_settings .form_data textarea { -width:96.41%; -} - -.form_settings .form_data label { -float:none; -} - -.form_settings .form_data p.form_guide { -width:auto; -margin-left:0 !important; -} - -#settings_design_color .form_data { - width: auto; - margin-right: 0; -} - -.form_settings input.checkbox, .form_settings input.radio { - left: 0px; -} - -.form_settings label.checkbox, .form_settings label.radio { - left: -10px; -} - -.notice .addressees:before { - content: '\003E'; -} - -.user_in .notice div.entry-content { - max-width: 150px; +.question div.question-description { + max-width: 100% !important; } ul.qna-dummy { From c54b3311fd58c93c9f59774f0b452dc39c8896a8 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 12:25:10 -0400 Subject: [PATCH 092/118] Style cleanup for QnA. --- plugins/QnA/css/qna.css | 81 +++++++++++++++++++++++++++++++-- theme/base/css/display.css | 1 + theme/neo/css/display.css | 93 +++----------------------------------- 3 files changed, 85 insertions(+), 90 deletions(-) diff --git a/plugins/QnA/css/qna.css b/plugins/QnA/css/qna.css index 1b89b6c2bb..e29ef22e60 100644 --- a/plugins/QnA/css/qna.css +++ b/plugins/QnA/css/qna.css @@ -1,5 +1,78 @@ -/* Why doesn't this work? */ -input.answer-placeholder { - margin-left: 0; - width: 95%; +.question .answer-count, .qna-full-question .answer-count { + display: block; + clear: left; +} + +.question .answer-count:before, .qna-full-question .answer-count:before { + content: '('; +} + +.question .answer-count:after, .qna-full-question .answer-count:after { + content: ')'; +} + +.question .notice-answer { + margin-left: 10px; + padding-bottom: 10px; +} + +ul.qna-dummy { + clear: left; + float: left; + list-style-type: none; + width: 458px; + margin-left: 59px; + padding-right: 2px; + border-left: 3px solid #ECECF2; + background: #fafafa; + font-size: 1em; +} + +ul.qna-dummy + ul.threaded-replies li.notice:first-child, li.notice-answer + li.notice { + border-top: 2px dotted #eee; + margin-top: -10px; + padding-top: 10px; +} + +.qna-dummy-placeholder input { + margin: 10px 0px 10px 2px; + width: 426px; + color: #888; + border: 1px solid #A6A6A6; + padding: 4px 4px 4px 6px; +} + +.question fieldset, .qna-full-question fieldset { + margin: 0px; +} + +.question fieldset legend, .qna-full-question fieldset legend, .answer fieldset legend { + display: none; +} + +.question label[for=qna-answer], .qna-full-question label[for=qna-answer] { + display: none; +} + +.question #qna-answer, .qna-full-question #qna-answer { + width: 426px; + height: 54px; + padding: 6px 5px; + font-size: 1.2em; + margin-top: 10px; + margin-bottom: 10px; + border: 1px solid #A6A6A6; +} + +.qna-full-question textarea { + width: 508px; +} + +.question p.best:before, .answer p.best:before { + content: '[Best] '; +} + +.question .question-closed { + display: block; + font-style: italic; } diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 2c00b77b1d..9ad1b4ec15 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -735,6 +735,7 @@ left:0; float: right; margin-top: 12px; margin-right: -6px; + margin-bottom: 10px; } .notice-options fieldset { diff --git a/theme/neo/css/display.css b/theme/neo/css/display.css index d460a5d71d..22634b40ea 100644 --- a/theme/neo/css/display.css +++ b/theme/neo/css/display.css @@ -413,7 +413,6 @@ div.entry-content a.response:after { .notice-options { margin-top: 4px; - margin-bottom: 10px; } #content .threaded-replies .notice .author .photo { @@ -1175,7 +1174,7 @@ td.entity_profile { } label[for=event-starttime], label[for=event-endtime] { - display: none; + display: none !important; } #event-starttime, #event-endtime { @@ -1224,10 +1223,6 @@ label[for=event-starttime], label[for=event-endtime] { /* QnA specific styles */ -#content .question .entry-title, #content .qna-full-question .entry-title { - min-height: 1px; -} - .question div.question-description { font-size: 1em; line-height: 1.36em; @@ -1236,95 +1231,17 @@ label[for=event-starttime], label[for=event-endtime] { } .question div.answer-content, .qna-full-question div.answer-content { + font-size: 1em; opacity: 1; } -.question .answer-count, .qna-full-question .answer-count { - display: block; - clear: left; -} - -.question .answer-count:before, .qna-full-question .answer-count:before { - content: '('; -} - -.question .answer-count:after, .qna-full-question .answer-count:after { - content: ')'; -} - -.question .notice-answer { - margin-left: 10px; - padding-bottom: 10px; -} - -ul.qna-dummy { - clear: left; - float: left; - list-style-type: none; - width: 458px; - margin-left: 59px; - padding-right: 2px; - border-left: 3px solid #ECECF2; - background: #fafafa; - font-size: 1em; -} - -ul.qna-dummy + ul.threaded-replies li.notice:first-child { - border-top: 2px dotted #eee; - margin-top: -10px; - padding-top: 10px; -} - -.qna-dummy-placeholder input { - margin: 10px; - width: 426px; - padding: 4px 4px 4px 6px; - border: 1px solid #a6a6a6; +.qna-dummy-placeholder input, .question #qna-answer, .qna-full-question #qna-answer { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); - color: #888; -} - -li.notice-answer + li.notice { - border-top: 2px dotted #eee; - margin-top: -10px; - padding-top: 10px; -} - -.question fieldset, .qna-full-question fieldset { - margin: 0px; -} - -.question fieldset legend, .qna-full-question fieldset legend, .answer fieldset legend { - display: none; -} - -.question label[for=qna-answer], .qna-full-question label[for=qna-answer] { - display: none; -} - -.question #qna-answer, .qna-full-question #qna-answer { - width: 426px; - height: 54px; - padding: 6px 5px; - border: 1px solid #a6a6a6; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); - -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2); - font-size: 1.2em; - margin-top: 10px; - margin-bottom: 10px; -} - -.qna-full-question textarea { - width: 508px; } .question-description input.submit, .answer-content input.submit { @@ -1367,6 +1284,10 @@ li.notice-answer + li.notice { padding-left: 20px; } +.question p.best:before, .answer p.best:before { + content: none !important; +} + /* Blog specific styles */ label[for=blog-entry-content] { From 9814de76fe0bb9a27842ea0507dd5b350b0d369a Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 12:30:21 -0400 Subject: [PATCH 093/118] Mobile Profile CSS for neo-light theme. --- theme/neo-light/css/mp-screen.css | 125 ++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 theme/neo-light/css/mp-screen.css diff --git a/theme/neo-light/css/mp-screen.css b/theme/neo-light/css/mp-screen.css new file mode 100644 index 0000000000..ba305c47ad --- /dev/null +++ b/theme/neo-light/css/mp-screen.css @@ -0,0 +1,125 @@ +/* copy of mp-screen.css from neo theme */ + +body { + background-image: none; + min-width: 0; +} + +#header { + padding: 0; +} + +#site_nav_global_primary { + top: 0; + -webkit-border-top-right-radius: 0px; + -moz-border-radius-topright: 0px; + border-top-right-radius: 0px; + line-height: 16px; +} + +#site_nav_global_primary li { + float: left; + margin-right: 8px; +} + +#site_nav_local_views { + line-height: 2em; +} + +#site_nav_local_views h3 { + color: #333; + background: none; + text-transform: none; + letter-spacing: 0; + padding-bottom: 0; +} + +#site_nav_local_views li li { + margin: 0 6px 6px 0; +} + +#login #site_nav_local_views li, #register #site_nav_local_views li, #openidlogin #site_nav_local_views li { + margin: 0 6px 6px 0; +} + +#site_nav_local_views a { + color: #fff; + text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);; + background: #364a84; + background: -moz-linear-gradient(top, #7b8dbb , #364a84); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b8dbb), color-stop(100%,#364a84)); + font-size: 0.9em; + width: auto; +} + +#site_nav_local_views a:hover { + background: #7b8dbb; + background: -moz-linear-gradient(top, #364a84 , #7b8dbb); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#364a84), color-stop(100%,#7b8dbb)); +} + +.input_forms { + top: -10px; + padding-right: 0; +} + +#input_form_nav li a { + padding: 0px 4px 1px 4px; +} + +.form_notice .count { + top: 44px; + left: 276px; +} + +#form_notice-direct.form_notice .count { + top: 74px; + left: 276px; +} + +#event-startdate, #event-starttime, #event-enddate, #event-endtime { + width: 120px; + margin-right: 12px; +} + +.input_form .form_settings .submit { + font-size: 1em; +} + +.form_notice input.submit { + font-size: 1em; +} + +.question div.question-description { + max-width: 100% !important; +} + +ul.qna-dummy { + width: 80%; +} + +.qna-dummy-placeholder input { + width: 92%; +} + +.question #qna-answer, .qna-full-question #qna-answer { + width: 220px; +} + +.threaded-replies #answer-form fieldset { + width: 220px; +} + +.threaded-replies #qna-answer-submit { + float: left; + clear: left; + position: relative; + top: 0; + bottom: 0px; + left: 0; + margin-top: 10px; +} + +a.company_logo { + display: none !important; +} From 94503a50fd33dbf2480065bfb7b12867c970b614 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 12:41:25 -0400 Subject: [PATCH 094/118] Don't prefill for each conversation --- lib/threadednoticelist.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/threadednoticelist.php b/lib/threadednoticelist.php index 88d7bb5b45..dbf3de642d 100644 --- a/lib/threadednoticelist.php +++ b/lib/threadednoticelist.php @@ -239,7 +239,6 @@ class ThreadedNoticeListItem extends NoticeListItem $item = new ThreadedNoticeListMoreItem($moreCutoff, $this->out, count($notices)); $item->show(); } - NoticeList::prefill($notices, AVATAR_MINI_SIZE); foreach (array_reverse($notices) as $notice) { if (Event::handle('StartShowThreadedNoticeSub', array($this, $this->notice, $notice))) { $item = new ThreadedNoticeListSubItem($notice, $this->notice, $this->out); From 654fdf2fa453fcb6be3df62622741e52eca4db7b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 12:59:40 -0400 Subject: [PATCH 095/118] Don't try to read the URLs in system notices --- plugins/Activity/ActivityPlugin.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index 92972ff173..cd47427e0a 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -99,6 +99,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'urls' => array(), 'replies' => array($other->getUri()), 'verb' => ActivityVerb::FOLLOW, 'object_type' => ActivityObject::PERSON, @@ -133,6 +134,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'urls' => array(), 'replies' => array($other->getUri()), 'uri' => $uri, 'verb' => ActivityVerb::UNFOLLOW, @@ -169,6 +171,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'urls' => array(), 'replies' => array($author->getUri()), 'uri' => $fave->getURI(), 'verb' => ActivityVerb::FAVORITE, @@ -206,6 +209,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'urls' => array(), 'replies' => array($author->getUri()), 'uri' => $uri, 'verb' => ActivityVerb::UNFAVORITE, @@ -244,6 +248,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'urls' => array(), 'groups' => array($group->id), 'uri' => $mem->getURI(), 'verb' => ActivityVerb::JOIN, @@ -282,6 +287,7 @@ class ActivityPlugin extends Plugin $content, ActivityPlugin::SOURCE, array('rendered' => $rendered, + 'urls' => array(), 'groups' => array($group->id), 'uri' => $uri, 'verb' => ActivityVerb::LEAVE, From 297d603febbb1900b395e1ddaf970f61f259cdad Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 25 Aug 2011 10:00:20 -0700 Subject: [PATCH 096/118] Update activity streams JSON to match spec Squashed commit of the following: commit 0722450267a1d0f4bdc2853f52a85b850329db73 Author: Zach Copley Date: Thu Aug 25 09:58:29 2011 -0700 Updgrade activity object json commit 882ba1dceaba8a0b3ec3513760aa09f68e41f270 Author: Zach Copley Date: Wed Aug 24 16:30:07 2011 -0700 Update to the JSON activity serialization document commit 121e441b314b93e184711c3dcc79ada69d429eba Author: Zach Copley Date: Wed Aug 24 15:08:06 2011 -0700 Output application/json instead of application/stream+json (at least for now) commit e045e214bffe5e0ddeb0a42555d440b75ae4edde Author: Zach Copley Date: Wed Aug 24 15:06:40 2011 -0700 Update to use latest property names from the JSON activity spec --- actions/apitimelinefriends.php | 7 +- lib/activity.php | 35 +++++----- lib/activityobject.php | 19 ++++-- lib/activitystreamjsondocument.php | 105 +++++++++++++++++++++++++---- 4 files changed, 126 insertions(+), 40 deletions(-) diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index e27d052652..591baccfcc 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -267,15 +267,14 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction break; case 'as': header('Content-Type: ' . ActivityStreamJSONDocument::CONTENT_TYPE); - $doc = new ActivityStreamJSONDocument($this->auth_user); - $doc->setTitle($title); - $doc->addLink($link,'alternate', 'text/html'); + $doc = new ActivityStreamJSONDocument($this->auth_user, $title); + $doc->addLink($link, 'alternate', 'text/html'); $doc->addItemsFromNotices($this->notices); $this->raw($doc->asString()); break; default: // TRANS: Client error displayed when coming across a non-supported API method. - $this->clientError(_('API method not found.'), $code = 404); + $this->clientError(_('API method not found.'), 404); break; } } diff --git a/lib/activity.php b/lib/activity.php index 1582a2019e..9dbb0e2ee0 100644 --- a/lib/activity.php +++ b/lib/activity.php @@ -362,15 +362,16 @@ class Activity // actor $activity['actor'] = $this->actor->asArray(); - // body - $activity['body'] = $this->content; + // content + $activity['content'] = $this->content; // generator <-- We could use this when we know a notice is created // locally. Or if we know the upstream Generator. - // icon <-- I've decided to use the posting user's stream avatar here - // for now (also included in the avatarLinks extension) + // icon <-- possibly a mini object representing verb? + // id + $activity['id'] = $this->id; // object if ($this->verb == ActivityVerb::POST && count($this->objects) == 1) { @@ -399,9 +400,9 @@ class Activity // Instead of adding enclosures as an extension to JSON // Activities, it seems like we should be using the - // attachedObjects property of ActivityObject + // attachements property of ActivityObject - $attachedObjects = array(); + $attachments = array(); // XXX: OK, this is kinda cheating. We should probably figure out // what kind of objects these are based on mime-type and then @@ -413,11 +414,11 @@ class Activity if (is_string($enclosure)) { - $attachedObjects[]['id'] = $enclosure; + $attachments[]['id'] = $enclosure; } else { - $attachedObjects[]['id'] = $enclosure->url; + $attachments[]['id'] = $enclosure->url; $mediaLink = new ActivityStreamsMediaLink( $enclosure->url, @@ -427,16 +428,16 @@ class Activity // XXX: Add 'size' as an extension to MediaLink? ); - $attachedObjects[]['mediaLink'] = $mediaLink->asArray(); // extension + $attachments[]['mediaLink'] = $mediaLink->asArray(); // extension if ($enclosure->title) { - $attachedObjects[]['displayName'] = $enclosure->title; + $attachments[]['displayName'] = $enclosure->title; } } } - if (!empty($attachedObjects)) { - $activity['object']['attachedObjects'] = $attachedObjects; + if (!empty($attachments)) { + $activity['object']['attachments'] = $attachments; } } else { @@ -452,7 +453,8 @@ class Activity } } - $activity['postedTime'] = self::iso8601Date($this->time); // Change to exactly be RFC3339? + // published + $activity['published'] = self::iso8601Date($this->time); // provider $provider = array( @@ -471,8 +473,8 @@ class Activity // title $activity['title'] = $this->title; - // updatedTime <-- Should we use this to indicate the time we received - // a remote notice? Probably not. + // updated <-- Optional. Should we use this to indicate the time we r + // eceived a remote notice? Probably not. // verb // @@ -480,6 +482,9 @@ class Activity // relative simple name is easier to parse $activity['verb'] = substr($this->verb, strrpos($this->verb, '/') + 1); + // url + $activity['url'] = $this->id; + /* Purely extensions hereafter */ $tags = array(); diff --git a/lib/activityobject.php b/lib/activityobject.php index 0343fa664e..7204980d40 100644 --- a/lib/activityobject.php +++ b/lib/activityobject.php @@ -679,16 +679,19 @@ class ActivityObject $object = array(); if (Event::handle('StartActivityObjectOutputJson', array($this, &$object))) { - // XXX: attachedObjects are added by Activity + // XXX: attachments are added by Activity + + // author (Add object for author? Could be useful for repeats.) + + // content (Add rendered version of the notice?) // displayName $object['displayName'] = $this->title; - // TODO: downstreamDuplicates - - // embedCode (used for video) + // downstreamDuplicates // id + $object['id'] = $this->id; // // XXX: Should we use URL here? or a crazy tag URI? $object['id'] = $this->id; @@ -736,9 +739,13 @@ class ActivityObject // @fixme this breaks extension URIs $object['type'] = substr($this->type, strrpos($this->type, '/') + 1); + // published (probably don't need. Might be useful for repeats.) + // summary $object['summary'] = $this->summary; + // udpated (probably don't need this) + // TODO: upstreamDuplicates // url (XXX: need to put the right thing here...) @@ -753,8 +760,6 @@ class ActivityObject $object[$objectName] = $props; } - // GeoJSON - if (!empty($this->geopoint)) { list($lat, $long) = explode(' ', $this->geopoint); @@ -766,7 +771,7 @@ class ActivityObject } if (!empty($this->poco)) { - $object['contact'] = $this->poco->asArray(); + $object['contact'] = array_filter($this->poco->asArray()); } Event::handle('EndActivityObjectOutputJson', array($this, &$object)); } diff --git a/lib/activitystreamjsondocument.php b/lib/activitystreamjsondocument.php index 097267f504..6d17075931 100644 --- a/lib/activitystreamjsondocument.php +++ b/lib/activitystreamjsondocument.php @@ -41,15 +41,29 @@ 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 ActivityStreamJSONDocument +class ActivityStreamJSONDocument extends JSONActivityCollection { - const CONTENT_TYPE = 'application/stream+json; charset=utf-8'; + // Note: Lot of AS folks think the content type should be: + // 'application/stream+json; charset=utf-8', but this is more + // useful at the moment, because some programs actually understand + // it. + const CONTENT_TYPE = 'application/json; charset=utf-8'; /* Top level array representing the document */ protected $doc = array(); /* The current authenticated user */ - protected $cur = null; + protected $cur; + + /* Title of the document */ + protected $title; + + /* Links associated with this document */ + protected $links; + + /* Count of items in this document */ + // XXX This is cryptically referred to in the spec: "The Stream serialization MAY contain a count property." + protected $count; /** * Constructor @@ -57,20 +71,26 @@ class ActivityStreamJSONDocument * @param User $cur the current authenticated user */ - function __construct($cur = null) + function __construct($cur = null, $title = null, $items = null, $links = null, $url = null) { + parent::__construct($items, $url); $this->cur = $cur; /* Title of the JSON document */ - $this->doc['title'] = null; + $this->title = $title; - /* Array of activity items */ - $this->doc['items'] = array(); + if (!empty($items)) { + $this->count = count($this->items); + } /* Array of links associated with the document */ - $this->doc['links'] = array(); + $this->links = empty($links) ? array() : $items; + /* URL of a document, this document? containing a list of all the items in the stream */ + if (!empty($this->url)) { + $this->url = $this->url; + } } /** @@ -81,9 +101,15 @@ class ActivityStreamJSONDocument function setTitle($title) { - $this->doc['title'] = $title; + $this->title = $title; } + function setUrl($url) + { + $this->url = $url; + } + + /** * Add more than one Item to the document * @@ -116,7 +142,8 @@ class ActivityStreamJSONDocument $act = $notice->asActivity($cur); $act->extra[] = $notice->noticeInfo($cur); - array_push($this->doc['items'], $act->asArray()); + array_push($this->items, $act->asArray()); + $this->count++; } /** @@ -128,7 +155,7 @@ class ActivityStreamJSONDocument function addLink($url = null, $rel = null, $mediaType = null) { $link = new ActivityStreamsLink($url, $rel, $mediaType); - $this->doc['links'][] = $link->asArray(); + array_push($this->links, $link->asArray()); } /* @@ -138,7 +165,13 @@ class ActivityStreamJSONDocument */ function asString() { - return json_encode(array_filter($this->doc)); + $this->doc['generator'] = 'StatusNet ' . STATUSNET_VERSION; // extension + $this->doc['title'] = $this->title; + $this->doc['url'] = $this->url; + $this->doc['count'] = $this->count; + $this->doc['items'] = $this->items; + $this->doc['links'] = $this->links; // extension + return json_encode(array_filter($this->doc)); // filter out empty elements } } @@ -161,8 +194,8 @@ class ActivityStreamsMediaLink extends ActivityStreamsLink $url = null, $width = null, $height = null, - $mediaType = null, - $rel = null, + $mediaType = null, // extension + $rel = null, // extension $duration = null ) { @@ -183,6 +216,49 @@ class ActivityStreamsMediaLink extends ActivityStreamsLink } } +/* + * Collection primarily as the root of an Activity Streams doc but can be used as the value + * of extension properties in a variety of situations. + * + * A valid Collection object serialization MUST contain at least the url or items properties. + */ +class JSONActivityCollection { + + /* Non-negative integer specifying the total number of activities within the stream */ + protected $totalItems; + + /* An array containing a listing of Objects of any object type */ + protected $items; + + /* IRI referencing a JSON document containing the full listing of objects in the collection */ + protected $url; + + /** + * Constructor + * + * @param array $items array of activity items + * @param string $url url of a doc list all the objs in the collection + * @param int $totalItems total number of items in the collection + */ + function __construct($items = null, $url = null) + { + $this->items = empty($items) ? array() : $items; + $this->totalItems = count($items); + $this->url = $url; + } + + /** + * Get the total number of items in the collection + * + * @return int total the total + */ + public function getTotalItems() + { + $this->totalItems = count($items); + return $this->totalItems; + } +} + /** * A class for representing links in JSON Activities * @@ -216,3 +292,4 @@ class ActivityStreamsLink return array_filter($this->linkDict); } } + From e8d45a4644f1435d6687a3a744a94c2d5a7acb9b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 25 Aug 2011 11:30:07 -0700 Subject: [PATCH 097/118] * Add conversation ID to Twitter compatible API * Fix formatting of blocking info in JSON API output --- lib/apiaction.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/apiaction.php b/lib/apiaction.php index 64b4284f6a..7b2f70c07c 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -241,13 +241,13 @@ class ApiAction extends Action // Is the requesting user following this user? $twitter_user['following'] = false; - $twitter_user['statusnet:blocking'] = false; + $twitter_user['statusnet_blocking'] = false; $twitter_user['notifications'] = false; if (isset($this->auth_user)) { $twitter_user['following'] = $this->auth_user->isSubscribed($profile); - $twitter_user['statusnet:blocking'] = $this->auth_user->hasBlocked($profile); + $twitter_user['statusnet_blocking'] = $this->auth_user->hasBlocked($profile); // Notifications on? $sub = Subscription::pkeyGet(array('subscriber' => @@ -317,6 +317,7 @@ class ApiAction extends Action $twitter_status['source'] = $source; $twitter_status['id'] = intval($notice->id); + $twitter_status['statusnet_conversation_id'] = intval($notice->conversation); $replier_profile = null; From 8b9258c0ec46f0c12fc4d8d1da73120a4ed62cbc Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 25 Aug 2011 12:48:36 -0700 Subject: [PATCH 098/118] Function to test for RTL language --- lib/language.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/language.php b/lib/language.php index 2af62fea0c..d72380e466 100644 --- a/lib/language.php +++ b/lib/language.php @@ -289,6 +289,21 @@ function get_nice_language_list() return $nice_lang; } +/* + * Check whether a language is right-to-left + * + * @param string $lang language code of the language to check + * + * @return boolean true if language is rtl + */ + +function is_rtl($lang) +{ + $all_languages = common_config('site', 'languages'); + $lang = $all_languages[$lang]; + return ($lang['direction'] == 'rtl'); +} + /** * Get a list of all languages that are enabled in the default config * From 3bdae5aed432386e5f1be049d1ad382c5ea6bf08 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 25 Aug 2011 13:12:44 -0700 Subject: [PATCH 099/118] Link in additional stylesheet for RTL languages --- lib/action.php | 5 ++ theme/neo/css/rtl.css | 157 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 162 insertions(+) create mode 100644 theme/neo/css/rtl.css diff --git a/lib/action.php b/lib/action.php index d63569cba3..c0b251cc05 100644 --- a/lib/action.php +++ b/lib/action.php @@ -277,6 +277,11 @@ class Action extends HTMLOutputter // lawsuit $this->cssLink('css/display.css', $baseTheme, $media); } $this->cssLink('css/display.css', $mainTheme, $media); + + // Additional styles for RTL languages + if (is_rtl(common_language())) { + $this->cssLink('css/rtl.css', $mainTheme, $media); + } } /** diff --git a/theme/neo/css/rtl.css b/theme/neo/css/rtl.css new file mode 100644 index 0000000000..f198fe6474 --- /dev/null +++ b/theme/neo/css/rtl.css @@ -0,0 +1,157 @@ +body { + direction: rtl; +} + +span.rtl{ + direction: rtl !important; +} + +#content .notice .entry-title{ + direction: ltr; +} + +.form_notice textarea{ + direction: ltr; +} + +#site_nav_global_primary ul{ + float: left; +} + +.notice div.entry-content { + float: right; +} + +#content .notice .threaded-replies .notice div.entry-content{ + clear: right; + float: right; +} + +.threaded-replies { + border-right: 3px solid #ECECF2; + border-left: 0; + margin-right: 59px; + margin-left: 0; +} + +address{ + float: right; +} + +#site_nav_global_primary { + left: 0; + right: auto; +} + +.input_form .form_settings .submit{ + float: left; +} + +.input_form .form_settings fieldset fieldset{ + float: right; +} + +.input_form fieldset fieldset label{ + right: 6px; + text-align: right; +} + +#input_form_event .form_settings .form_data li{ + float: right; +} + +.notice .author { + direction: rtl; + float: right; + margin-left: 8px; + margin-right: 0; +} + +.section .notice .author { + margin-left: 0; +} + +.threaded-replies .form_notice #notice_action-submit { + right: 10px; +} + +.form_notice input.submit{ + float: right; +} + +#export_data li a{ + padding-right: 30px; + padding-left: 0; + background-position: right center; +} + +#content .notice .threaded-replies .notice .entry-title{ + margin: 2px 35px 0 7px; +} + +#content .notice .entry-title { + margin: 2px 59px 0 7px; +} + +#content .notice .author .photo{ + right: 0; +} + +.notice-options{ + float: left; +} + +.notice div.entry-content { + margin-right: 59px; + margin-left: 0; +} + +#core .vcard .photo { + margin-left: 11px; + margin-right: 0; +} + +.threaded-replies .notice-reply-comments { + margin: 2px 10px 4px 0; +} + +#shownotice .notice div.entry-content { + margin-right: 0; +} + +.notice .addressees:before { + content: "◂"; +} + +#content thead th { + text-align: right; +} + +.profile_list th.current a { + background-position: left top; + padding-left: 25px; +} + +.form_settings .form_data textarea, .form_settings .form_data select, .form_settings .form_data input { + float: right; +} + +.form_settings .form_data label { + float: right; +} + +.form_settings label { + text-align: left; +} + +#form_search input.submit { + margin-right: 5px; +} + +#site_nav_local_views { + float: right; +} + +#content { + float: right; +} \ No newline at end of file From f0443aff1aa44977615cf08d1e2fc57b2c754612 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 16:24:54 -0400 Subject: [PATCH 100/118] Style for Activity notices. --- plugins/Activity/ActivityPlugin.php | 12 ++++++------ plugins/Activity/joinlistitem.php | 2 +- plugins/Activity/systemlistitem.php | 2 +- theme/base/css/display.css | 9 +++++++++ 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/plugins/Activity/ActivityPlugin.php b/plugins/Activity/ActivityPlugin.php index 92972ff173..1a460219dc 100644 --- a/plugins/Activity/ActivityPlugin.php +++ b/plugins/Activity/ActivityPlugin.php @@ -84,7 +84,7 @@ class ActivityPlugin extends Plugin if (!empty($user)) { $sub = Subscription::pkeyGet(array('subscriber' => $subscriber->id, 'subscribed' => $other->id)); - $rendered = sprintf(_m('%s started following %s.'), + $rendered = sprintf(_m('%s started following %s.'), $subscriber->profileurl, $subscriber->getBestName(), $other->profileurl, @@ -113,7 +113,7 @@ class ActivityPlugin extends Plugin if(!$this->StopFollowUser) return true; $user = $subscriber->getUser(); if (!empty($user)) { - $rendered = sprintf(_m('%s stopped following %s.'), + $rendered = sprintf(_m('%s stopped following %s.'), $subscriber->profileurl, $subscriber->getBestName(), $other->profileurl, @@ -154,7 +154,7 @@ class ActivityPlugin extends Plugin $fave = Fave::pkeyGet(array('user_id' => $user->id, 'notice_id' => $notice->id)); - $rendered = sprintf(_m('%s liked %s\'s update.'), + $rendered = sprintf(_m('%s liked %s\'s update.'), $profile->profileurl, $profile->getBestName(), $notice->bestUrl(), @@ -186,7 +186,7 @@ class ActivityPlugin extends Plugin if (!empty($user)) { $author = Profile::staticGet('id', $notice->profile_id); - $rendered = sprintf(_m('%s stopped liking %s\'s update.'), + $rendered = sprintf(_m('%s stopped liking %s\'s update.'), $profile->profileurl, $profile->getBestName(), $notice->bestUrl(), @@ -226,7 +226,7 @@ class ActivityPlugin extends Plugin return true; } - $rendered = sprintf(_m('%s joined the group %s.'), + $rendered = sprintf(_m('%s joined the group %s.'), $profile->profileurl, $profile->getBestName(), $group->homeUrl(), @@ -262,7 +262,7 @@ class ActivityPlugin extends Plugin return true; } - $rendered = sprintf(_m('%s left the group %s.'), + $rendered = sprintf(_m('%s left the group %s.'), $profile->profileurl, $profile->getBestName(), $group->homeUrl(), diff --git a/plugins/Activity/joinlistitem.php b/plugins/Activity/joinlistitem.php index 1979524001..5764f1d2e6 100644 --- a/plugins/Activity/joinlistitem.php +++ b/plugins/Activity/joinlistitem.php @@ -58,7 +58,7 @@ class JoinListItem extends SystemListItem $out->elementStart('div', 'join-activity'); $profile = $mem->getMember(); $group = $mem->getGroup(); - $out->raw(sprintf(_m('%s joined the group %s.'), + $out->raw(sprintf(_m('%s joined the group %s.'), $profile->profileurl, $profile->getBestName(), $group->homeUrl(), diff --git a/plugins/Activity/systemlistitem.php b/plugins/Activity/systemlistitem.php index d2b99c802e..0b8d2f4c02 100644 --- a/plugins/Activity/systemlistitem.php +++ b/plugins/Activity/systemlistitem.php @@ -56,7 +56,7 @@ class SystemListItem extends NoticeListItemAdapter function showNotice() { $out = $this->nli->out; - $out->elementStart('div'); + $out->elementStart('div', 'entry-title'); $this->showContent(); $out->elementEnd('div'); } diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 9ad1b4ec15..5b18772db8 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1514,6 +1514,15 @@ content:'☠'; font-size:150%; } +#content .notice-source-system div.entry-title, .notice-source-system div.entry-content { + margin-left: 0; +} + +#content .notice-source-system div.entry-title { + font-style: italic; + min-height: 0; +} + /* override OStatus plugin style */ #form_ostatus_connect.form_settings.dialogbox, #form_ostatus_sub.dialogbox { From 2dd13b071c828af0b1004f50402cf9ed46f05c4c Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 17:14:13 -0400 Subject: [PATCH 101/118] Update DirectionDetector style for 1.0 and move to base stylesheet. --- plugins/DirectionDetector/DirectionDetectorPlugin.php | 9 --------- theme/base/css/display.css | 7 +++++++ 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/plugins/DirectionDetector/DirectionDetectorPlugin.php b/plugins/DirectionDetector/DirectionDetectorPlugin.php index be8dbea8e5..890af06807 100644 --- a/plugins/DirectionDetector/DirectionDetectorPlugin.php +++ b/plugins/DirectionDetector/DirectionDetectorPlugin.php @@ -42,15 +42,6 @@ class DirectionDetectorPlugin extends Plugin { return true; } - /** - * SN plugin API, here we will add css needed for modifiyed rendered - * - * @param Action $xml - */ - public function onEndShowStatusNetStyles($xml){ - $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;} .notice .author {float:left}'); - } - /** * is passed string a rtl content or not * diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 5b18772db8..5d65c14cc8 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1521,6 +1521,13 @@ font-size:150%; #content .notice-source-system div.entry-title { font-style: italic; min-height: 0; +} + +span.rtl { + display: block; + direction: rtl; + text-align: right; + float: right; } /* override OStatus plugin style */ From 8ea5cd0cac762e99bdec69e6ec5ad5bdf1e14150 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 17:48:27 -0400 Subject: [PATCH 102/118] Check for existence of RTL stylesheets; placeholder files for base and neo themes. --- lib/action.php | 4 +- theme/base/css/rtl.css | 1 + theme/neo/css/rtl.css | 158 +---------------------------------------- 3 files changed, 5 insertions(+), 158 deletions(-) create mode 100644 theme/base/css/rtl.css diff --git a/lib/action.php b/lib/action.php index c0b251cc05..ed0144515c 100644 --- a/lib/action.php +++ b/lib/action.php @@ -280,7 +280,9 @@ class Action extends HTMLOutputter // lawsuit // Additional styles for RTL languages if (is_rtl(common_language())) { - $this->cssLink('css/rtl.css', $mainTheme, $media); + if (file_exists(Theme::file('css/rtl.css'))) { + $this->cssLink('css/rtl.css', $mainTheme, $media); + } } } diff --git a/theme/base/css/rtl.css b/theme/base/css/rtl.css new file mode 100644 index 0000000000..a9b6e593cd --- /dev/null +++ b/theme/base/css/rtl.css @@ -0,0 +1 @@ +/* placeholder for RTL style */ diff --git a/theme/neo/css/rtl.css b/theme/neo/css/rtl.css index f198fe6474..a9b6e593cd 100644 --- a/theme/neo/css/rtl.css +++ b/theme/neo/css/rtl.css @@ -1,157 +1 @@ -body { - direction: rtl; -} - -span.rtl{ - direction: rtl !important; -} - -#content .notice .entry-title{ - direction: ltr; -} - -.form_notice textarea{ - direction: ltr; -} - -#site_nav_global_primary ul{ - float: left; -} - -.notice div.entry-content { - float: right; -} - -#content .notice .threaded-replies .notice div.entry-content{ - clear: right; - float: right; -} - -.threaded-replies { - border-right: 3px solid #ECECF2; - border-left: 0; - margin-right: 59px; - margin-left: 0; -} - -address{ - float: right; -} - -#site_nav_global_primary { - left: 0; - right: auto; -} - -.input_form .form_settings .submit{ - float: left; -} - -.input_form .form_settings fieldset fieldset{ - float: right; -} - -.input_form fieldset fieldset label{ - right: 6px; - text-align: right; -} - -#input_form_event .form_settings .form_data li{ - float: right; -} - -.notice .author { - direction: rtl; - float: right; - margin-left: 8px; - margin-right: 0; -} - -.section .notice .author { - margin-left: 0; -} - -.threaded-replies .form_notice #notice_action-submit { - right: 10px; -} - -.form_notice input.submit{ - float: right; -} - -#export_data li a{ - padding-right: 30px; - padding-left: 0; - background-position: right center; -} - -#content .notice .threaded-replies .notice .entry-title{ - margin: 2px 35px 0 7px; -} - -#content .notice .entry-title { - margin: 2px 59px 0 7px; -} - -#content .notice .author .photo{ - right: 0; -} - -.notice-options{ - float: left; -} - -.notice div.entry-content { - margin-right: 59px; - margin-left: 0; -} - -#core .vcard .photo { - margin-left: 11px; - margin-right: 0; -} - -.threaded-replies .notice-reply-comments { - margin: 2px 10px 4px 0; -} - -#shownotice .notice div.entry-content { - margin-right: 0; -} - -.notice .addressees:before { - content: "◂"; -} - -#content thead th { - text-align: right; -} - -.profile_list th.current a { - background-position: left top; - padding-left: 25px; -} - -.form_settings .form_data textarea, .form_settings .form_data select, .form_settings .form_data input { - float: right; -} - -.form_settings .form_data label { - float: right; -} - -.form_settings label { - text-align: left; -} - -#form_search input.submit { - margin-right: 5px; -} - -#site_nav_local_views { - float: right; -} - -#content { - float: right; -} \ No newline at end of file +/* placeholder for RTL style */ From 44a46de7ffd6a6a45689ecf423a4baa179248388 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 25 Aug 2011 17:59:27 -0400 Subject: [PATCH 103/118] use a form for search --- lib/action.php | 8 +++ lib/primarynav.php | 10 ---- lib/searchform.php | 118 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 126 insertions(+), 10 deletions(-) create mode 100644 lib/searchform.php diff --git a/lib/action.php b/lib/action.php index d63569cba3..8ba2abc9f9 100644 --- a/lib/action.php +++ b/lib/action.php @@ -575,6 +575,14 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('div', array('id' => 'site_nav_global_primary')); $pn = new PrimaryNav($this); $pn->show(); + + $user = common_current_user(); + + if (!empty($user) || !common_config('site', 'private')) { + $form = new SearchForm($this); + $form->show(); + } + $this->elementEnd('div'); } diff --git a/lib/primarynav.php b/lib/primarynav.php index 7a9815af7b..f765938903 100644 --- a/lib/primarynav.php +++ b/lib/primarynav.php @@ -86,16 +86,6 @@ class PrimaryNav extends Menu 'nav_login'); } - if (!empty($user) || !common_config('site', 'private')) { - $this->action->menuItem(common_local_url('noticesearch'), - // TRANS: Menu item in primary navigation panel. - _m('MENU','Search'), - // TRANS: Menu item title in primary navigation panel. - _('Search the site.'), - false, - 'nav_search'); - } - Event::handle('EndPrimaryNav', array($this->action)); } diff --git a/lib/searchform.php b/lib/searchform.php new file mode 100644 index 0000000000..b58d7af809 --- /dev/null +++ b/lib/searchform.php @@ -0,0 +1,118 @@ +. + * + * @category Widget + * @package StatusNet + * @author Evan Prodromou + * @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 for searching a StatusNet site + * + * @category General + * @package StatusNet + * @author Evan Prodromou + * @copyright 2011 StatusNet, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 + * @link http://status.net/ + */ + +class SearchForm extends Form +{ + /** + * Visible or invisible data elements + * + * Display the form fields that make up the data of the form. + * Sub-classes should overload this to show their data. + * + * @return void + */ + + function formData() + { + $this->out->element('input', array('name' => 'q', + 'size' => 20, + 'id' => 'search-q')); + } + + /** + * Buttons for form actions + * + * Submit and cancel buttons (or whatever) + * Sub-classes should overload this to show their own buttons. + * + * @return void + */ + + function formActions() + { + $this->out->element('input', array('type' => 'submit', + 'value' => _('Search'))); + } + + /** + * ID of the form + * + * Should be unique on the page. Sub-classes should overload this + * to show their own IDs. + * + * @return int ID of the form + */ + + function id() + { + return 'search'; + } + + /** + * Action of the form. + * + * URL to post to. Should be overloaded by subclasses to give + * somewhere to post to. + * + * @return string URL to post to + */ + + function action() + { + return common_local_url('noticesearch'); + } + + function method() + { + return 'get'; + } + + function sessionToken() + { + return; + } +} From 5f1ace8c047e481530d42d7cd35c925c7f6baccb Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 25 Aug 2011 16:33:41 -0700 Subject: [PATCH 104/118] * Update copyright in version info * add sammyd to contributors * sort contributors --- actions/version.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/actions/version.php b/actions/version.php index 37555652c7..a7b5fd8c72 100644 --- a/actions/version.php +++ b/actions/version.php @@ -1,7 +1,7 @@ * @author Craig Andrews - * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org + * @copyright 2009-2011 Free Software Foundation, Inc http://www.fsf.org * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ @@ -149,7 +149,7 @@ class VersionAction extends Action // TRANS: Content part of StatusNet version page. // TRANS: %1$s is the engine name (StatusNet) and %2$s is the StatusNet version. $this->raw(sprintf(_('This site is powered by %1$s version %2$s, '. - 'Copyright 2008-2010 StatusNet, Inc. '. + 'Copyright 2008-2011 StatusNet, Inc. '. 'and contributors.'), XMLStringer::estring('a', array('href' => 'http://status.net/'), // TRANS: Engine name. @@ -160,6 +160,7 @@ class VersionAction extends Action // TRANS: Header for StatusNet contributors section on the version page. $this->element('h2', null, _('Contributors')); + sort($this->contributors); $this->element('p', null, implode(', ', $this->contributors)); // TRANS: Header for StatusNet license section on the version page. @@ -277,6 +278,7 @@ class VersionAction extends Action 'mEDI', 'Brett Taylor', 'Brigitte Schuster', - 'Brion Vibber', - 'Siebrand Mazeland'); + 'Brion Vibber (StatusNet)', + 'Siebrand Mazeland', + 'Samantha Doherty (StatusNet)'); } From 8c84637612a4ecb8efb624a98159f6c955dd5894 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 22:29:11 -0400 Subject: [PATCH 105/118] Move header search before nav in the HTML; give it a unique ID. --- lib/action.php | 4 ++-- lib/searchform.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/action.php b/lib/action.php index 251b1dadac..38685f928a 100644 --- a/lib/action.php +++ b/lib/action.php @@ -580,8 +580,6 @@ class Action extends HTMLOutputter // lawsuit function showPrimaryNav() { $this->elementStart('div', array('id' => 'site_nav_global_primary')); - $pn = new PrimaryNav($this); - $pn->show(); $user = common_current_user(); @@ -590,6 +588,8 @@ class Action extends HTMLOutputter // lawsuit $form->show(); } + $pn = new PrimaryNav($this); + $pn->show(); $this->elementEnd('div'); } diff --git a/lib/searchform.php b/lib/searchform.php index b58d7af809..4c63264006 100644 --- a/lib/searchform.php +++ b/lib/searchform.php @@ -89,7 +89,7 @@ class SearchForm extends Form function id() { - return 'search'; + return 'header-search'; } /** From a0514281a03e267f8cab9cf209e20d6c8305f09e Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Thu, 25 Aug 2011 22:30:09 -0400 Subject: [PATCH 106/118] Style for header search form. --- theme/base/css/display.css | 7 +++++++ theme/neo/README | 2 +- theme/neo/css/display.css | 31 +++++++++++++++++++++++++++++++ theme/neo/images/magnifier.png | Bin 0 -> 615 bytes 4 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 theme/neo/images/magnifier.png diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 5d65c14cc8..52bf7f19ed 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -218,6 +218,13 @@ address .poweredby { margin-right: 0px; } +#header-search { + float: right; + position: relative; + top: -8px; + margin-left: 10px; +} + #site_notice { float: right; width: 300px; diff --git a/theme/neo/README b/theme/neo/README index 9e001123cb..eff8cd6dfa 100644 --- a/theme/neo/README +++ b/theme/neo/README @@ -1,7 +1,7 @@ Default avatars are modified from an image by Francesco 'Architetto' Rollandin. http://www.openclipart.org/detail/34957 -Icons by Mark James +Some icons by Mark James http://www.famfamfam.com/lab/icons/silk/ http://creativecommons.org/licenses/by/2.5/ Creative Commons Attribution 2.5 License diff --git a/theme/neo/css/display.css b/theme/neo/css/display.css index 22634b40ea..e41cf9f87a 100644 --- a/theme/neo/css/display.css +++ b/theme/neo/css/display.css @@ -129,6 +129,37 @@ h6 {font-size: 1em;} text-decoration: none; } +#header-search { + top: 1px; + margin-left: 6px; +} + +#header-search #search-q { + position: relative; + width: 131px; + height: 12px; + margin-right: 10px; + padding: 2px 22px 2px 6px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + border: none; + font-size: 0.88em; +} + +#header-search input[type="submit"] { + border: 0; + background: url(../images/magnifier.png) no-repeat 2px 1px; + text-indent: -9999px; + width: 20px; + height: 18px; + position: absolute; + right: 10px; + top: 2px; + z-index: 2; + cursor: pointer; +} + #site_notice { -webkit-border-radius: 6px; -moz-border-radius: 6px; diff --git a/theme/neo/images/magnifier.png b/theme/neo/images/magnifier.png new file mode 100644 index 0000000000000000000000000000000000000000..cf3d97f75e9cde9c143980d89272fe61fc2d64ee GIT binary patch literal 615 zcmV-t0+{`YP)gNuvOO$0ks zMIj=HnnBRUR?tKXG11rxCU4&7dG4NbuvR2_mEvc)n?Cow;~Wve|KR^>9@p5l)|QB+ z$jmun3q#x>;ss-PW_mnr2MHVzLAl1RW&0?VkixF*4t!St0YVb2wnKdU(kmOHiL;aW zK8Xte%(k>MVGG$E4no6dcNnb>BhVHHGD&1pv4YZ68kE2V03t5#PCEFm7=ad$6)+3B zTCmn*?A?=u(o~ET7~-7g0)ZB=6|lumi4}B}MLgy~Ysy6)Q5%Al7|05&1z3Jpu>cF8 z3?VXs*3<}%h3`5Wld)N2zJnk%Agw<~3k)sPTLFd=F5;d8-bj-09SkQuynfflNcZLN z!^_37fdZvzrq=9~mp*($%mcDRKC&qvaaZuX+C=AT6O*~tHl>0mcP<_q>-z%$xO(@! zYluq5a8VQI$S@4?r*v;gPo!QQ%pX3A#>xx4t=w-L6COWx?aj&`f+!YePsFtj=hOQR zP3=E2j@9L7s8;T^&s?u(Hdpu?CubjMrGn{t_37>9$|AD)QE08weJlKn8|OyjL~7oP zC8mPT`jzuH*Dh^I0048RGafUIT)4H~*m8m>egI0iH=(LB%b@@O002ovPDHLkV1lw0 B3 Date: Fri, 26 Aug 2011 10:51:51 -0400 Subject: [PATCH 107/118] A few quick general form fixes. --- theme/base/css/display.css | 74 ++++++++++++++------------------------ theme/neo/css/display.css | 16 ++++----- 2 files changed, 33 insertions(+), 57 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 52bf7f19ed..149fb323b7 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1346,6 +1346,7 @@ margin-left:11px; .form_settings .form_data li { width:100%; float:left; + margin-bottom: 22px; } .form_settings .form_data label { float:left; @@ -1356,6 +1357,12 @@ float:left; margin-left:1.795%; float:left; } + +.form_settings .form_data select { + margin-top: 0px; +} + + .form_settings .form_data input { width:39%; } @@ -1374,17 +1381,13 @@ margin-left:0; .form_settings label { margin-top:2px; -width:24%; + width: 25%; text-align: right; } -.form_settings label.checkbox { - text-align: left; -} - .form_settings input.checkbox, .form_settings input.radio { - margin-left: 24%; - margin-top: 2px; + margin-left: 25%; + margin-top: 3px; position: relative; left: -14px; } @@ -1393,19 +1396,23 @@ width:24%; width: auto; max-width: 60%; position: relative; - left: -30px; + left: -25px; +} + +.form_settings label.checkbox { + text-align: left; + line-height: 1.2em; +} + +.form_settings label.radio { + text-align: left; + margin: 0px; } .form_settings li input.radio { clear: left; } -.form_settings label.radio { - margin-left: 10px; - margin-right: 10px; - text-align: left; -} - .form_actions label { display:none; } @@ -1457,43 +1464,16 @@ width:50px; .form_settings .form_data p.form_guide { clear:both; -margin-left:26%; + margin-left: 27%; margin-bottom:0; + line-height: 1.2em; + padding-top: 4px; } .form_settings p { margin-bottom:11px; } -.form_settings input.checkbox, -.form_settings input.radio { -margin-top:3px; -margin-left:0; -} -.form_settings label.checkbox { -font-weight:normal; -margin-top:0; -margin-right:0; -margin-left:11px; -float:left; -width:90%; -} -.form_settings label.radio { -margin-top:0; -margin-right:47px; -margin-left:11px; -width:auto; -} - -#form_login p.form_guide, -#form_register #settings_rememberme p.form_guide, -#form_openid_login #settings_rememberme p.form_guide, -#settings_twitter_remove p.form_guide, -#form_search ul.form_data #q, -#design_background-image_onoff p.form_guide { -margin-left:0; -} - .form_settings .form_note { border-radius:4px; -moz-border-radius:4px; @@ -1593,7 +1573,7 @@ background:none; } .form_settings .form_note { -background-color:#9BB43E; + background-color: #d1f7cb; } #form_settings_photo .form_data { @@ -2187,8 +2167,8 @@ width:68%; #showapplication .entity_profile .entity_fn { margin-left:0; } -#showapplication .entity_profile .entity_fn .fn:before, -#showapplication .entity_profile .entity_fn .fn:after { +#showapplication .entity_profile .fn:before, +#showapplication .entity_profile .fn:after { content:''; } #showapplication .entity_data { diff --git a/theme/neo/css/display.css b/theme/neo/css/display.css index e41cf9f87a..f472401007 100644 --- a/theme/neo/css/display.css +++ b/theme/neo/css/display.css @@ -598,20 +598,16 @@ div.entry-content a.response:after { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FB6104', endColorstr='#fc8035',GradientType=0 ); } -.form_settings input#settings_design_reset, .form_settings input.cancel { - background: #e2e2e2; - color: #8e181b; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); -} - -.form_settings input#settings_design_reset:hover, .form_settings input.cancel:hover { +.form_settings input#settings_design_reset, .form_settings input#cancel, #form_action-no { background: #f2f2f2; - color: #8e181b; + color: #d7621c; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); } -#form_login p.form_guide, #form_register #settings_rememberme p.form_guide, #form_openid_login #settings_rememberme p.form_guide, #settings_twitter_remove p.form_guide, #design_background-image_onoff p.form_guide { - margin-left: 26%; +.form_settings input#settings_design_reset:hover, .form_settings input#cancel:hover, #form_action-no:hover { + background: #fff; + color: #d7621c; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); } .form_settings fieldset fieldset { From b83af83b82a9719e946504866058770b109ece71 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Aug 2011 11:37:45 -0400 Subject: [PATCH 108/118] return links for foreign keys --- classes/Managed_DataObject.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/classes/Managed_DataObject.php b/classes/Managed_DataObject.php index 7263b3e320..552d980fba 100644 --- a/classes/Managed_DataObject.php +++ b/classes/Managed_DataObject.php @@ -152,4 +152,18 @@ abstract class Managed_DataObject extends Memcached_DataObject return $style; } + + function links() + { + $links = array(); + + $table = call_user_func(array(get_class($this), 'schemaDef')); + + foreach ($table['foreign keys'] as $keyname => $keydef) { + if (count($keydef) == 2 && is_string($keydef[0]) && is_array($keydef[1]) && count($keydef[1]) == 1) { + $links[$keydef[1][0]] = $keydef[0].':'.$keydef[1][1]; + } + } + return $links; + } } \ No newline at end of file From 04dccad3bb4bce38b53b02ce1e8847e621bad495 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Aug 2011 11:38:05 -0400 Subject: [PATCH 109/118] Activity notices on by default --- lib/default.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/default.php b/lib/default.php index 9c4c8cab05..71b2257cd5 100644 --- a/lib/default.php +++ b/lib/default.php @@ -310,7 +310,8 @@ $default = 'TagSub' => null, 'OpenID' => null, 'Directory' => null, - 'ExtendedProfile' => null), + 'ExtendedProfile' => null, + 'Activity' => null), 'locale_path' => false, // Set to a path to use *instead of* each plugin's own locale subdirectories 'server' => null, 'sslserver' => null, From f251c2e03656d62349a5996a358862f7076d477a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Aug 2011 11:38:39 -0400 Subject: [PATCH 110/118] Explicit joins for people tags --- lib/peopletagnoticestream.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/peopletagnoticestream.php b/lib/peopletagnoticestream.php index 9477ca8ea6..e82d754e8d 100644 --- a/lib/peopletagnoticestream.php +++ b/lib/peopletagnoticestream.php @@ -96,10 +96,10 @@ class RawPeopletagNoticeStream extends NoticeStream $notice->selectAdd(); $notice->selectAdd('notice.id'); - $ptag = new Profile_tag(); - $ptag->tag = $this->profile_list->tag; - $ptag->tagger = $this->profile_list->tagger; - $notice->joinAdd($ptag); + $notice->joinAdd(array('profile_id', 'profile_tag:tagged')); + + $notice->whereAdd(sprintf('profile_tag.tag = "%s"', $this->profile_list->tag)); + $notice->whereAdd(sprintf('profile_tag.tagger = %d', $this->profile_list->tagger)); if ($since_id != 0) { $notice->whereAdd('notice.id > ' . $since_id); From a47c372ac4a14d3919161334e4bffe9063e5ed32 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Aug 2011 11:39:06 -0400 Subject: [PATCH 111/118] explicit join for subscribers to a profile list --- classes/Profile_list.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/classes/Profile_list.php b/classes/Profile_list.php index 50aa71f55d..c433a53fee 100644 --- a/classes/Profile_list.php +++ b/classes/Profile_list.php @@ -220,10 +220,9 @@ class Profile_list extends Managed_DataObject function getSubscribers($offset=0, $limit=null, $since=0, $upto=0) { $subs = new Profile(); - $sub = new Profile_tag_subscription(); - $sub->profile_tag_id = $this->id; - $subs->joinAdd($sub); + $subs->joinAdd(array('id', 'profile_tag_subscription:profile_tag_id')); + $subs->selectAdd('unix_timestamp(profile_tag_subscription.' . 'created) as "cursor"'); From 34a0525b672280eff763e827adc67134b847b131 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Aug 2011 11:48:40 -0400 Subject: [PATCH 112/118] Profile uses joinAdd() with explicit arguments --- classes/Profile.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/classes/Profile.php b/classes/Profile.php index bcbb406ae0..228a0ae202 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -435,6 +435,7 @@ class Profile extends Managed_DataObject $tags->tagged = $this->id; $lists->joinAdd($tags); + #@fixme: postgres (round(date_part('epoch', my_date))) $lists->selectAdd('unix_timestamp(profile_tag.modified) as "cursor"'); @@ -507,7 +508,8 @@ class Profile extends Managed_DataObject $lists = new Profile_list(); $subs = new Profile_tag_subscription(); - $lists->joinAdd($subs); + $lists->joinAdd('id', 'profile_tag_subscription:profile_tag_id'); + #@fixme: postgres (round(date_part('epoch', my_date))) $lists->selectAdd('unix_timestamp(profile_tag_subscription.created) as "cursor"'); From 37bb0e6d20a41cf239958ce431ab9276e97c2127 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Fri, 26 Aug 2011 12:51:55 -0400 Subject: [PATCH 113/118] Style cleanup for ostatus forms. --- plugins/OStatus/theme/base/css/ostatus.css | 75 ++++++---------------- theme/base/css/display.css | 49 +------------- theme/neo/css/display.css | 36 +++++------ 3 files changed, 40 insertions(+), 120 deletions(-) diff --git a/plugins/OStatus/theme/base/css/ostatus.css b/plugins/OStatus/theme/base/css/ostatus.css index c2d724158f..f8d708d81f 100644 --- a/plugins/OStatus/theme/base/css/ostatus.css +++ b/plugins/OStatus/theme/base/css/ostatus.css @@ -1,74 +1,39 @@ -/** theme: base for OStatus - * - * @package StatusNet - * @author Sarven Capadisli - * @copyright 2010 StatusNet, Inc. - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ - -#form_ostatus_connect.dialogbox, -#form_ostatus_sub.dialogbox { -width:70%; -background-image:none; -} -#form_ostatus_sub.dialogbox { -width:65%; -} #form_ostatus_connect.dialogbox .form_data label, #form_ostatus_sub.dialogbox .form_data label { -width:34%; + display: block; + width: 100%; + text-align: left; } + #form_ostatus_connect.dialogbox .form_data input, #form_ostatus_sub.dialogbox .form_data input { -width:57%; + width: 90%; + padding: 4px; + margin: 0; + background-color: #fff !important; + border: 1px solid #888; } + #form_ostatus_connect.dialogbox .form_data .form_guide, #form_ostatus_sub.dialogbox .form_data .form_guide { -margin-left:36%; + margin-left: 0; + background-color: #fff !important; } #form_ostatus_connect.dialogbox #ostatus_nickname, #form_ostatus_sub.dialogbox #ostatus_nickname { -display:none; + display: none; } -#form_ostatus_connect.dialogbox .submit_dialogbox, -#form_ostatus_sub.dialogbox .submit_dialogbox { -min-width:96px; +#form_ostatus_connect.dialogbox input.submit_dialogbox, +#form_ostatus_sub.dialogbox input.submit_dialogbox { + padding: 4px; } -#entity_remote_subscribe { -padding:0; -float:right; -position:relative; +.entity_remote_tag { + background-position: 5px -257px; } -.section .entity_actions { -margin-bottom:0; -margin-right:7px; -} - -#entity_remote_subscribe .dialogbox { -width:405px; -} - -.aside #entity_subscriptions .more, -.aside #entity_groups .more { -float:left; -} - -.section #entity_remote_subscribe { -border:0; -} - -.section .entity_remote_subscribe { -color:#002FA7; -box-shadow:none; --moz-box-shadow:none; --webkit-box-shadow:none; -background-color:transparent; -background-position:0 -1183px; -padding:0 0 0 23px; -border:0; +.section .entity_remote_tag { + background-position: 5px -257px; } diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 149fb323b7..6b7629d4aa 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1517,48 +1517,6 @@ span.rtl { float: right; } -/* override OStatus plugin style */ - -#form_ostatus_connect.form_settings.dialogbox, #form_ostatus_sub.dialogbox { - width: 76%; -} - -#form_ostatus_connect.form_settings.dialogbox legend { - font-size: 1.4em; - font-weight: normal; - padding-bottom: 10px; -} - -#form_ostatus_connect.dialogbox .form_data label, -#form_ostatus_sub.dialogbox .form_data label { - font-weight: normal; - font-size: 1.2em; - width:34%; -} - -#form_ostatus_connect.dialogbox .form_data input, -#form_ostatus_sub.dialogbox .form_data input { - float: right; - width: 52% !important; -} - -#form_ostatus_connect.dialogbox .form_data .form_guide, -#form_ostatus_sub.dialogbox .form_data .form_guide { - background: none !important; - text-align: right; - margin-right: 16px; -} - -.section .entity_actions { - margin-right: 0px !important; -} - -.section .entity_remote_subscribe { - color:#000 !important; - padding-left: 26px !important; - background-position: 4px -1183px !important; -} - #filter_tags ul li, .entity_send-a-message .form_notice, .form_settings fieldset fieldset, @@ -1759,11 +1717,6 @@ display:block; text-align:left; width:100%; } -.entity_actions a { -text-decoration:none; -font-weight:bold; -display:block; -} .entity_actions a, .entity_actions input, .entity_actions p { color: #333 !important; @@ -1772,6 +1725,8 @@ display:block; } .entity_actions a { +text-decoration:none; +display:block; padding: 3px 4px 4px 28px; } diff --git a/theme/neo/css/display.css b/theme/neo/css/display.css index f472401007..9082687442 100644 --- a/theme/neo/css/display.css +++ b/theme/neo/css/display.css @@ -519,24 +519,18 @@ div.entry-content a.response:after { top: 46px; } -#aside_primary #entity_remote_subscribe a:hover { - background-color: #fff !important; +.entity_subscribe .dialogbox, .entity_tag .dialogbox { + border: 1px solid #aaa; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); + -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); + -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); } -#entity_remote_subscribe .dialogbox { - border: 1px solid #7B4E82; - border-radius: 8px; - -moz-border-radius: 8px; - -webkit-border-radius: 8px; -} - -#entity_remote_subscribe input { - padding-left: 4px; -} - -#entity_remote_subscribe .submit_dialogbox { - margin-top: 10px; - float: right; +.entity_subscribe .dialogbox input.submit_dialogbox, .entity_tag .dialogbox input.submit_dialogbox { + color: #fff !important; } #filter_tags_item .submit { @@ -572,7 +566,10 @@ div.entry-content a.response:after { } -.form_notice input.submit, .form_settings input.submit, .form_settings input.cancel, #form_invite input.submit { +.form_notice input.submit, .form_settings input.submit, .form_settings input.cancel, #form_invite input.submit, +.entity_subscribe .dialogbox input.submit_dialogbox, +.entity_tag .dialogbox input.submit_dialogbox + { height: 1.9em; padding: 0px 10px; color:#fff; @@ -590,7 +587,10 @@ div.entry-content a.response:after { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9d63', endColorstr='#FB6104',GradientType=0 ); } -.form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover, #form_invite input.submit:hover { +.form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover, #form_invite input.submit:hover, +.entity_subscribe .dialogbox input.submit_dialogbox:hover, +.entity_tag .dialogbox input.submit_dialogbox:hover + { text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6); background: #ff9d63; background: -moz-linear-gradient(top, #FB6104 , #fc8035); From 41f06d96d4127f4ecf50033efc8f945050895587 Mon Sep 17 00:00:00 2001 From: Samantha Doherty Date: Fri, 26 Aug 2011 15:35:00 -0400 Subject: [PATCH 114/118] Quick fix to make custom site logos work better. --- plugins/MobileProfile/mp-screen.css | 4 ++-- theme/base/css/display.css | 14 +++++++++----- theme/neo-blue/css/display.css | 4 ---- theme/neo-blue/logo.png | Bin 11512 -> 3818 bytes theme/neo/logo.png | Bin 11740 -> 2837 bytes 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/plugins/MobileProfile/mp-screen.css b/plugins/MobileProfile/mp-screen.css index c77933b0ca..78086af210 100644 --- a/plugins/MobileProfile/mp-screen.css +++ b/plugins/MobileProfile/mp-screen.css @@ -12,8 +12,8 @@ } address { - width: auto; - left: 0px; + margin: 1px 0 0; + height: 24px; } address img { diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 6b7629d4aa..6328098a51 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -176,15 +176,19 @@ option { address { float: left; position: relative; - top: 1px; - left: 2px; - margin: 0px; + margin: -2px 0 3px 0; padding: 0px; - height: 24px; - width: 148px; z-index: 99; } +address a, address img { + display: block; +} + +address img { + max-width: 158px; +} + address img + .fn { display: none; } diff --git a/theme/neo-blue/css/display.css b/theme/neo-blue/css/display.css index ace3e15f4c..f5163fcdf1 100644 --- a/theme/neo-blue/css/display.css +++ b/theme/neo-blue/css/display.css @@ -26,10 +26,6 @@ body { padding-top: 7px; } -address { - left: 5px; -} - #site_nav_global_primary { top: 0px; right: -14px; diff --git a/theme/neo-blue/logo.png b/theme/neo-blue/logo.png index 3114a6c0597a54eab0be226c23b24f903a45c657..5bf106368331c47f990d97eb4969369c9b839754 100644 GIT binary patch literal 3818 zcmVPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipi5 z6Cf*`p?bXl01j$NL_t(&-t9VhRMY3OlLW%P?}RO3NmxSwK^76qA|Q&&j;$zGv3fOeDlpW+c&=eEWr{i!4fRN5-h&iPGB&`kWyMD z^4*DF5yv%K^MgYoq`d+|bCLPMFP!V{4m+~1qOyklu(PWNxq17cKd*lCSt#{kHsTc+ z>dB8kuYi`tDc>tF)a`CcCKpZp>o-VV0Zng$hGgol5TBTW-yiWKQczTe3=fZT(bv{D zAqh9Bh<9M_6}$vdT3GiM@IYp?7w(*Blxi zK~f%MAsYksAkH4aS|2!Hwfod;>kF4}AdOAU2#dvH%V=rsKoV~~M7#p_RGdB&E6Zc| zgY&Wd1i!%a3T-7?EhAr%k(RL9w`a?g=UA*DP)rSgVrl?i1gu;Bdv-xwMs~i^$2vO6 z)J@L7Kxa7)r_9F5$x6e^>iT#9NcbxSC5hs$Yh_^)hu2cG@%LH7mqv%60XhT?aCKQ> z9)C0SwTP&QLp6<>GuO3c*mX?;7vYx840{CoL4Xd4O4RiBK;}eonzx4NB z^L8QZhMvZl3i?Ft-*yE1SgEQg&L~6;rwroaqMl49Q|Dt9BAe)|ONfj4NK0`WV#8YJ zzg#8Q9JtQxKUhJ-lS*_gQ~%FF%hMiNzU(VT9*hoiW?-7-rxoHC$Ls2PQn(kdbT zX6gwhlU4Y!3hmtH2i8_o55_=W8=O6Y+ZJNe$O6c)TIs98WU|g#P>cYLM$bs!)!hp< zbq%N5+B@_9%)k&5!h$))$jNz4@K+PK?+)!%cXqVZ5f&Djm5e_e&;IuPjCTv66W{Xc z@8b@#GSXZQ*U;1giOCNdo|RVgqfsa@Hq-;pwT=X29Fd4T{L|(1l-L6#ihG>*roCJ} zi=USp*=M6G`*&a807M=>)7{qI$(gE~C%z;kQEBI+zMUE!Xf*u&Z$a|uDKTuE_olsN zoHV8;B=W)kX4@9V#@<8nokv~CcONx#9)4>Zz3*cU_eFpwhNOp=z+fgFuD7=z9%be= z-n#p!kI7SHLRVOC zKBPx`M;FkZSCwVw76U;`4ICYon`jd>P#khVSy>*talNxhdTI=ObL6Z{Lu2zzD+?30 zjFFL1$jvW(bNtlBo~#E~OvA#D`#3vVUvye!BaOxWC%Fj<3c}GtVe(yFy*l2T_O=56 z+x8|#MCDyO0+i(CCQE+`H4Ead-6@-WCO{B8X9LJ&vJh(8;}R0Z&5)fmEQ`2&$ZA6EMM_9o-BfX~M4c-~aML#k!isTj0E`4C1^S(%A zX6LI_zO3VVmX%Y8Z2KzGo2OOz^5Ee!d~L)C!jKq27-VdV0N)QI2;(zBo0m`9MyGdk zt=HE-fSfpeF^Z>jo~(cUhKsJdrw_?1pzQ+ySmhQJ+1%2`e#T<4kjj^J6^D-gY{4UE zb8cSA2(OK{@A@W}cOR$E#vX5N?ckz|yLua$Q+b^lbpX2BnzCkOgCDKzeMKhl$=9PU zrl-X0U%=aPg1z0cX`c%V3!&|7%tHPO{oMHYI3UP47fw?{6*SaU4+MuqicjFGY1HVW zhr;&rw<~IVy7uLd?8p3&4ke|PprWK0!HG*xi3z`xk~uAptc=uAoa*F#kHHv&S2YdK z4jJMEhPyPmk2Z(4cY{Ct+`{0pr*DF z9zT5sgM-7Ou@{bwFT_D^^mK6+6BXgYH8iyVUK7Xut*5KyNTRs!uclE?eM+Y*uc!eg za~uryb=f#AO&mmohnQh7=+0wD{tnMyyo7?HGDy7j0IEt-g%?_f{((X0?CP0<@9P_w zmdBi8IHhetqfwuqJ{#-LC$O-*IGl>o;y7L0)!SfUW(?jNRs$N1V)q7uf&u^lLMBE; zFfk&6_lDIlG&IawVPj4c6BY6F^KqZum6}iD4GxJUd3t=trBBnFcX09Yjk52*4I`t` zXh5M*prWjZ{@i~Z<{*vwNi*Gpv?mNS8vV-A!HOs-D9E;vfB*&nKuAeZ4puwa!D=Tv zI25rPqT`Z~TX!GDH8iz^Rnw?_pGt2@3Gpcx4Nnh83;v7?| zn%V~7*W_}7n3yQ|dbv`@0g3Yp3{{`is(dPnHbMP}w3LJ-C+b>k znwrv%6Q?hU_-=G{c6VJlqas9ItrjG5O?ADU&e`8EEY7sYlne>p+9ZSY2Qd>q{OxZfXkIjC%`LkkAbq1VyOX1 z8%&IdprfsUQjnL$a*hiONIIa6*MP0_P{Pf{UPYUrF3%~iv8e^x+Uc1r77O|Z2D#|% zZ7qO+R~P*G^uYx+#wv-4A#h&y>4+BC%SP&Az&Urd(wbECNY@}zTp{Bx}{fGp(7ITs>yOfj!{B-WhQ~rf| z{-CLWll2M=)k(e{RR;i|jn@EaDak2^)YIF~CrD#z0YEr$a$kgXYd%ZawLL&zT6$83 z8prEB02o0KB!{1aAqXOZLZLbr`oK$QmE1iY77HXI0cUCNiz|AZ*uqQi6%ZsO`S$emK}2{6*Ofo7kTzm(XF(rF#!0j6Kd0^Kh3?M3W~}&`%ZrV zusHPnIeImX`ojdiFemYKc-Xe+(NV@}PJRq#(q7m&=34-8_%q9CcTeBJmUr#!u?ZF{ z2%74uPR541(I}L!e_>8yAJ2<|a{>YweLpYPFZ{gSs~64bNECP63S09eS7$qQ5n*BQ z^l)@aOV5QDm9Jo6Ut$Y1dK+cn5=<4nTYfDq0ko6Vh6}aDx*3~zClHP5ixY${n{qiKQ zlzkbUQ7ZcrC`ZT#FJ~72uhoEtvsD}pt080xKVM_}Wa-grrwCim80C+4rYA-9&Nu?tl086cm^Fw0CsgR8)`y6bc0x3=)_wU(QdxUP*Nmf~`i8ggApOa`|Ju7X4gjFH zZ}5eQF=^IoF&Ja;G{2N_Wteiq%jLn=$-?etY`RIgKg~cy|s-IJ9<`Q;ZfuTQGEi>Wu$2Tu3YHsqf6g^J- z?rzHOQ^pWq26@ka)|L`epZ&Nf=!btqSEXm>0fRAhzg=Cua4q3JI>!UXllo&pqTT=UM@!2oa4R=?^A!@a_VeMThp5lPo2ic$Dyvi z30{=Hii-N@)$P?Z>Y+s`uNhf+rzm8@8^xs+XDDR-b*9E7P~hlI#>U=5<;yxqOV0%t zCtID|{F34Hl-O3jv#gX1sC-$+!8-;ub&UW3(Aq{1*dM`tL+$S$?79|vlJ8%nqJI4s zR}&9_a5+j@c{S_`JHlZw7IgRY&vXD~Z(H0QajHrpRj=x;THEOHS{kY#ARqt*MP+~> zsz6bTHt^r0yM}hMu+|bklt!?xvv>o(rD1BZv*>4XFK|@nB&%R@y_7C_jlaZEE zudQ#)b8)l<4K-CTH#3Cy@83g1V++*3egoOL#ZX>Z6YaFp`hUuc?~U-&E%jkGR8-Xh g=U=6G*W-kL10PvXUgmAYWdHyG07*qoM6N<$g1o>r-~a#s literal 11512 zcmd5C2{=|+`{1)i_9a_(pCun9LZnbcX>3JPO6$~AroZO@EAuzhv^Uc>)267VNGOFi zLRnHFNo9*l3zA5baR2vw<6igjS(~ZEp*1A~&y)*sx_k;ov$qD`3%DDNn!U>2#U_l=0}Ov@|ee<^959s`=~M zI^xXPOEV~fjsit6fI`BhR0787j#+eVmU%NTh296yxx~dMGswywKP7-pkECOpPL_{| ziq~AVb{lc?RzA_x^npQNQuc(1Jd;Rx`7OT_uz0N|+ibE3*>)g#*ooMA$thVx4$L|E ztXi{;81L*)0FJ16{f6rIeN!_Le=&vd@Lfj08fx^^58zZUB&J#&JaU?-cv4BUwY5<^ zp1-UnqGB%*p1#ZO@7xt8L+1fRK@{Nt3M|aT$!)H_{=FjkQeb$X|004fNFnI%g?c)mrye*Z7DfHP? z6*hsmxR^V9s7{~6eGqU=4AdmVhj>d#GC%g4DNcQ~{PO78ep9W!Tj*;&den$MJC__P zj>e7|iL5P5`=sqJfrYtAw@pQFI~4j1Tsm8Dwx9cQIvgaG?NA9A zxAn-03Uac4o{mlwq~iu!=AY)~AZ|Byv<2QUe0+R;wg;7n;52S&ZEef$leiCp#q*{k zE6eVaZ)l(mQZ(RIAITB?9N_DdeJLkA4t{=@5x9; zT8go$%AY((Q85?G@8sTZ;D^mN!blIfPjS#9+6jqu!M`238XvX>Bwe`I%oPk9V!Edb z$J@i1>axE69a>kUjWU947;1d-8+c?b6VOjfBJFWwK|`^#O8KT5%%uY9Tk1yd6? zC+OeQ{GpbXPblWxmD-rND-?gcz%O6b)YIDyraa5nU4X5pDIp-xxvAd1Z9rF&Gb>`_ zuGF`-wV~naDrky}y{5jN=Fl4%w~tNta$QaD>!ZKGP&l~Lz)Ycoxn+Q}0G=d#tnFzx zBn?niU5oPWKFCi^zm2psRFQ-I7!z$RbxImw!JwohC*(2BN%U&MQS?*DZt3!h$}^zC zDK5>;A5eN$?$gaX4%MYxJZ2iWdb78agViC&@zzq<p5&Q7b7k~#|wvm#!!my!zxGNo5 zXAnbWAjW%gYL;r@!%_x|l(cMO-goP~Nd7p7!!|!Cco)w(f{n$7hiI9@;`sp1o8*<5 zl{c@Zrqe*j9oIL!Bev{3w1=d@IjqNa>|oH-o4R`ZZ7VT;yo>+3%IB{rG&b1bJMORF zxYr!x$pn06r)TCgQ-mFb1xtQPCuzuh=kBo0FTvQSr|=VJyPcNKBiPXrYeQY_;W8sR zhTAOdd_+lxF{kz%0tvE;tbc9}9}@{GxJNc1y7@uhFY1xt3nJRv+rg`BXY@E+T^XsX zDX$4wv`(BvfT11=C!OaUfi!8y5`|ZSMZ(}#UN{n#lUs;}DJrZb>o|w?SbZ)&nGRx< zWuzrHswj8*Sm52GqT=#9!9mOJ&i}o9HlHc5<}t3hH;A_25w{l9C*XNW&eg zA#E)+jqpQTG*~Qwx`M(GR9sSlu4mjqjg3uWVFx!cXSm;8F$q1~CprxgqxLNqiB+)X za21MBPglbMq`)dzFrHF?BK(I71^0_lYim0)GSH=Z(tvTUUA<@|sK?ivLViGZ?>$5i zf91cr$~HTsMKczXy!G2J*|bEBs;%8a3Oxb`7GKi{_?b-IOf;PBw^6eFn& z>)ezKL_aDl5M#)EXvt1^#bmOce;qOC-s@N`CS3 zjgK&CY#R@EGMI!7 zaeBhWy}O$O9yE90bR4fTXM{d4aKB*u5Hzbxxt@K#xTG8h5qoVkWQZ8@@pLu=#Sjj* zlUlFDB$9{p2ZwO3C_X2#j%tnVCYj|9AD8GuIy-O=dDZuzd`{F;TmuPHf3bx zp|-ZZ1-Ac8cQnh-ea;vQPIs60D~x}zUE=i~Y+^mSoA_2$RdL~#orgtzJe-{-JCEy? z7w$}7S7U;ki@h4yUHy|)L!+}ZkCD2qCmuVz1$p`{GgMMk$TehZb5)>@wmKg~dxhw( zwjo;wX=|#Zxq}#<%S5|jAhG1={3^hrFYK+llbytD$@ zrpL|)iRe0)O%Q5`J$L2U%H?zC43cHPn=$Mh+$!eO-UpCT#wWP-def#j#KDGOci0pN z>uUV;E77zo1R95MjP;DwRfjQ}f&@b+k8Wqc$ciLH<$v3EECcF{1tRf-%^~h21L|A{ zq;4tZfe#9HV(1AkL>bFE@w=c97#den0U5-Og)%ZI{pDaS_adDIm*&^mWx z>6^J&1TOXWsjI8Uo({uZ&dknhwi|0+(@wOr`)Ttr$3WW-5Ij@?t9Pliv?Pb(?nZSEgUw*x04)gD?z<4FgEJ+`Y;{#hOwtdCa?psH)X#5mwh!L z!M2icxSM;tI&fYnsPvsA4Cev@oi?&icq=v=?BQt$lRk}*_$mA^093zBg7{X@^A}ZA z_yGq)hpQ<&jxf><<>T|20pGxIG9Yli4+M$9bWi75)4e8t)<$E2{i9-QGb-BIX{?&4 zhzRx|94}u@NB0VgxO#b_gN-P7g?d6Ao)Mmsca2ThTO9E0ES&3uloaI#+)iIl3wxCr zM-TpDGvLM@4K638qeXC?L?%3rmCNVYfJb*lR8*uHqUt8}&5tjD?>{I($!RyaO<;q$ zaYnFz2X9aYHtUDd$KUy;-MG!Y%CUm`K{JklyqrAqvbePD3EABj%}Ip;7tnv)$jsR| z!)r3tKOA%{NSpzl$=1{U)cF2Ag6~3p)7_AQoD4@$h=sCm6Dor&tbqvdr zkDpHxyemrYV%uzrtG!9)tvm^k8a)SbD9+srwl?M#a6NKM0Tv&tCLG>SRN!uMuE?Tq zD*TOQkDq-MA0oCmHzTGPew!Hqe=uCYi-Hqe4vWCU@$+%(-cbkSb?sX;d*(Fz%^}=? zc#m}d1cFo;8~(eZ?&j@$@2cw8XB6aRx!;W?Dy%tv4E<+L{!IRCE|bHg#++xo_PCUC0z zn{c!{BP*wH`){Gx@c*jmr{LYsqGB$UHZ(N$dmQk;7pkp$i|Ge_D)_;sSOa%p=wnOY zQt!pfYIGnpvMBrZJ%0#U6!&YS9mfZZ=B<{aJ1<6YTUg$w_wE;;>BKBynO;!7-gx~Z~1TiHT1#N z9bWQc8W*3$r6qAKuvv>sE4Wn%Hu|nw%k%=_6xE&#+n!C*)AK$1|6~}^cpK6;Lw>;{ zv?MTuYSP}`hTeb#>@C40=RbQs*#Yj-L?0BDS;CkiG~oV^#bR;$g1f;@!otF#@b^VI zozLC;hrhyK9?{u%@^_e;7`%b!3fN8NL#C9Cqzae8oUAtY|*6^GoI^UkkMWyAa z`NIc9_crm>7mT-ClWNc)xp%Qs|5w8Cs`4k5WR;u4dSx`c^BFBIC8<_YR*?zPAE~P< zqfsM`(5FwIPPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipi5 z6B9X`b8f`|01A~!L_t(&-tAg@uoh(@CIkTi?rNdQJ# z|LTymhU8t6ZX>xy(f|N|CON(b>-S5O=zVM5!vQ>y|CW?wm3WsD{q#u|kpz;Fq{&$& z&Kxfg$*unb@Kjcb#}(E%PSU;kIJ5U_vr2qHe!=kq0vG{c7RjjqhS_TZc#Px&lID?I zmnM;Va!8IBd=bD;NexV4>j+b-_ zfI|SZlFa9L4#4e_ZqF+5TZQ{x1+eEQ-A9^41b~K;4Nj5tPXN~f7-=?{8?phwa7h;f zcnQGeB!`mhsFM?%n=dCxBz?yV#`R*SJs&_s@;phy0N9`s$w>gNBpCrXyT_4%90Xvz zq;Vw2lRQAuG?LGeoC{z#>zpKMEP%Tt&3FB9Koua5lJppWJ4qgC0Jn7x0Am1L58xTs z4=2~tXblBL#*$n>a;IDYTCPqq|Hyd6IVRGnRz+Mt94hJH;<_Y%)Em*}`r(BDt|8fM z0M;pU(5ua%_%OTYp=3l6y+J z$MJ$0bqAg6hue{y4ZyY1L#GsFT_b=t0Aon50?=A^k9Du?IqZ)mCz5Qj56+A^$o0d) zWx5pZS0S}+9b;_RQZJ)9UeF?GuD!0kW+6(^WQCLJRugTJPIfIsSXz!S)A54c3RB!i z(y_+;pUvz92Vi@Wzi_-@XEUb79#cGvYUiCxlch*2fTQfaNqUFmm6GlU&`xp}0OtW1 z1z>zuiC=O3utCxc0R7Dd+9XXNc^!a(mf`1;TxiYT2wm4E!vlUoj4BH~=^*Q0pRs+ z2;l6j65nQBzt!=AXC;j(=r-B{^yx(sDe1_p5W8iy|i`1##cysuw>p# zN_1;8&N&!BP$)%~*nqS2ei^_$g>`*Ndv#}j^S!G5?MSy7z}u2`Fi0hU;Uu4Ryr2QV zasdAUa6f>BStVXyrvn@eV5%`>9%bK_)NUd#0DNB3ApjolB|IXsBc1tsoTOtNFW3xV zCCPtC`Xk9jCL7cn`0rV4)4u*r7twP+lNM=#*Kxey;u7#m(vX59_X9AXR^9EIZWDmT zBu}>tN&t;!bE74VHvOnyIbLuR$qUmYdb>s)e3A!QA-@B_0>cW=u#7X&@d78S#Mx(! zIFfe*xKUC+V;h>%wLwxV$x)I<0XS9CM%NGL0Jt?xqRn*%UYTxP-7-K@qvb3D@MZI< zHn*&-H3-0vy0O=+5`ReY8cDAe*`P(Gw=xrwvn1VZ(qk<$>m#xwX$!fyQ_@Nkee-oE z_oN}YEhJ5%4U*0=N;B8r?l9$D2a^2({06`&y+C!FJQUe|RUa#`(3ZM^&KPqQfFnr$ z-lW$e?Ny=wbRdAQ*U;-CfYUp70{B*%M30kvC}*1%(>kiR^y#und^5?309NGXNTEHj zm5`a=H}!%D%|dh}fc27AlkE0mh)u1Tty6lVp?emK>1ruPT1KgqpqzAmZ1 zApv*yFg<*ejD6meTrw)WhzUPXc>T!t{)C1IYH8XBu7gc z17HUeMe?3ngX0C`vP%49jVZDg*+8I;BHN2b2sORSv}C9A|AZd1@XUT`?cwls;BlqmhT zdU>Sd1tUxo*)CMs#hf`nE`#+_Ko8|5Y@c8^`g+1>jt{=`cP3`Rg zV;@TL&@#QP@9RlE(t{{B5Wt~1kul+IBgtiw+6ruICjbZ9z?5`inP+|ikN=tD1wWMJ zS}e1l&5n!DBuQS9ry$o4uK@4^!?rz=Cj&US3LDIUyDm+l6}^A}EpWWx`y@wN0i>Da zBuSGB4d`6|CIDBte)xWxL^sq8bR-wUJS#04u7qai7Zw&C{d`=RVAV`Ho|dLb^wko8 z?m#j_=QkiucKz^*TKZlj50iACq+QM2cACdWogr=pFfUD_pBunU0r1_js9dEq$TLE3 zXqn`441m8Fg2*!cJHKc`0C*2TU1~eKWilJU68kk7l)SQ(voQddWtDh#l@Q(}X<*@U zvpKXz)0WxZJ`@0ps(|BN080z=4+C(lHKw`X7)=1S>xLvfZ(1<(3gCeCy3jKwf_=xD z`)NsYNWM`3sr_h4)*Be>NSPX%a1Uyx?imdzuMgEP!1Kp8q1r#gcwY^0h9Ew4CIzInV$! zk<3X*1IY#E1;RX>v`c!T3OL#wFE|sx7tr}7f)}mt4`a&%@-{PHhan5yrJC6F!!sp) z&!qdkOgeuOz-j<%(j?kgxMzdo1-AgWSJH6+rjeXzn!q+2S`Oe2lD|uns8%NWuCY&E z`ZNM~A#a|SIO+2wH<@#5Ai1(+@BcR4h&=$D0AQk|eMs(3^1qUnOZq#>g_5GI5^v~2 nzX#FzeZj`U`SeMje75pG?ynYRy;8WU00000NkvXXu0mjfXig*e literal 11740 zcmd6t3zU^r702&9c;=waK;Z~DqAb8t3c+{?1G9$5R3egy4;GISBp0aJ3zo*SRY2mh zTDg=ghkO93fVENrL5NJ$0HN>^6(vc=LJUJ53QWKMxo02GeSkA}2By8%zWaIh-e-U3 zJKwqAz4L|-8&cG=v}GcZD5@G-IRbh=Skk;HpL4#oybzN2wGl%q63aHX`*$KymZ+*6 zc=e1xv?hEkyruh*^LArqI)o^GT=)lKahkhk|HFOVityA3=i#!*@f1emd#8QkV z@XKKzh93t`K<)rd$PE8H^ls>{$$3cnY``3~Hb&q(209RI&KQgF67nP19%0UV;R7)4 zuLvE3qLxg)`7xnN0{;zp0oWZrGzM0FouPL^Ujt`TRD19^d_%ykmJX_gP)a>17r!Br zG+>O|iM5qFZ=>8Y_|Ply=m$XOLbpOEgE;}?TQRUNIr_l&1uugi34IBigRKLy6+EC_7^89-kz#l8;1Vq#Q5wZK9QmM4W+ zk8UTR$Xh^7!ivke5GK-|SpA9bVnJPA$jqFBp2C6DJC*QvQC}0N?Tm4+9M7CIpHF~# zw&V(man!d&JB?&LVcLq79<+Xmx*kGDf_H-{z;$kiViiMrCqpH#ExI^{%Y#oxe4b#; zwJAYz5b|kSGXmbk*b zd|pl-@-X~|;B%o*qdNw#^U-bKrC?v4)qi0Dm#}e}` zF02lyrvkbX-!)&s#RE5!PdB5%pJDE$7Z>VgG-X6f8Mi3C?#O-({D~HsHR>i}>+o;z z5WRSjxLRmV=WFX>4(P{w-eRc!D&pv%?*M)+bywp19JbazRz9>B`nL3chxv-4+ZD_5 zXWSm*r1&X-^Gl;$DO%6|01W(qByNEPWhSGA5hfusNu|pG3Y1?zPzzIj0pl7Q{ zsJhr0{zZz@fKA{(LEWuODXc*rJ>=2E-D87Xwu`C`?S$G{1s_Kq2;JbM#{bak5L?Vf z^~&Q)dZj*YXD)w2{uOjN7p$SaeTSJ7`#tq5C_IB+N1SxE$rr)s@#P%wRqe&pe5W}W zRcxSbB#UhUX8pEmekY?kUmOBg5PZB(E`JqMpoGvK=zGBHebD_Bwh(?Q4SWZ=K2S=W z%Y6Xl(*@BtTs^*Tl-}1uz5P4>Q#VV59r)F z7J85!PG_Zu=#>^=g8{KKVv##T7b*1qQ`gg}pbGFAkC9ul=U!p+lh_Ij3(wnYP4c;T z@00W{irDE##WQeKsW|LT4?hw1asRlhb)qbeiX*i`3-o1RF?2iVE{e}vfxe?08yi?G z2dM29)dAHl?^r%4HC#ZaL)Po@pMqngXk^fnB9x%Ig|RLeKV;ne%oiFC@*ld?j&sjX zny1$hLrMAzg1Ks<;BFOQGrc<73;bg3Qe=Ah1v=ha6k4#CIyOL8qj!&FYOvSVFeKaOer`-@%hOXs)>U$m2MSS|CAnP55>wN1GyE1!ck0!z9{upS2&!X+dUm$PCKbfF=R6;GDI(`L> zzal*vE~sl-Qo~T{TA6OIi|o_6g)N@Amt`4W7VCWe1F_C{>e&VVsL7(#`Af!xdH6hC zG1(&1JFfN8rvrMO_4cOg>njuY72>{6oG^Fz{?wY!9I}2n;l^mHqf~u!YkXK_1RX*l zM@hOSJupT7A=YJUP;5ULPo6Hs(@R@7VegBW+4R`Pm|4iRU1SqGE&L9zgy-wO04FNv zH4OTZ+ji&zYMV-9=Ss%~P@T7nS8edBR~JOPSOCV{fUt#eI&!3gbYa1Hqh5YHXj*+# zi*!IzIz6A%xu3b|edAzd^z%9&c7{i(12Dg0=0Be?8(15Qf+0u7EjWUGmhlSKk^~!} z%Socc_*?J;z{#K*9~KF=T%XrpQY^r2SHyIWM@UlZKa(R}S zLoPtGen1W1CQeB*wacUTK^-lg*XwR~D&*<*cwsTJRVMDhCO8M%XynoG&fmuRSPFp3 z{q1Lq*EJep?n{{aH>k(GaEGcs{j@iL`UhBHnhQFKvTGBX$Gi{I11-dyppbw%hw0*H zG|DG)fqf&Bw`lSO?bFUsw~v0fm-!)tbn9n56Zl+u7#gA%#d=TXa>9#_)`iC3eMv|k zQyZBugUS0O*v`jxi^0aC7prv2QBAHNNF`PUkzM(*H8XoQ%A(nfUav>0z1`Kp z*l?2(_XTX)p}yjMWZMW%!S*IPt6logEAfCE0^Nh}IB>Pa$bmB4{eT{7BSv_^8pk7F z#ysR3`*7Xf#7}eAP3B@oc2q%U^ZOn4Vf5@LkzdTF^q*Q~3+GRBEF{2sc8!fVl%t#g z_6E;22PFnx#l8amXV9Hy%R)C{*CKEW3#y&czCh?V(L(Tx|I!0ZS zFnkKsdCA~aW1!D~*MRO(OT6RoI^3TWX!bT1{UmaK9mhf71&r0>S!XAm`F4>1AT$7D z4p7g7D3&qqD(FbYl!JP;;{aY=-UL1h`*ULKO`JlcbmE+q9-}Au#!fyiq2)`7%RrAK@M6e3Oh{&k=;_Kr~ Y-8z@7pZU}s*GZ@vG^}!2#kkr31NNyZ3jhEB From a6000f3051e034bec2030379139b3a53c9e7329b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 26 Aug 2011 13:37:04 -0700 Subject: [PATCH 115/118] Update install form to include installation profile dropdown --- install.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/install.php b/install.php index 5cb46e27d2..fdcbce84c9 100644 --- a/install.php +++ b/install.php @@ -248,6 +248,20 @@ class WebInstaller extends Installer +
+ Installation profile +
    +
  • + + +

    Initial access settings for your site

    +
  • +
+
From af97bc896e64ccbfc161ebde7bca808ae5089564 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 26 Aug 2011 21:10:24 -0700 Subject: [PATCH 116/118] Make site profiles work --- install.php | 22 ++-- lib/installer.php | 45 ++++++-- lib/siteprofile.php | 264 ++++++++++++++++++++++++++++++++++++++++++++ lib/statusnet.php | 11 ++ 4 files changed, 323 insertions(+), 19 deletions(-) create mode 100644 lib/siteprofile.php diff --git a/install.php b/install.php index fdcbce84c9..054be3d8d7 100644 --- a/install.php +++ b/install.php @@ -249,11 +249,11 @@ class WebInstaller extends Installer
- Installation profile + Site profile
  • - - @@ -298,7 +298,7 @@ STR; /** * Read and validate input data. * May output side effects. - * + * * @return boolean success */ function prepare() @@ -318,6 +318,8 @@ STR; $this->adminEmail = $post->string('admin_email'); $this->adminUpdates = $post->string('admin_updates'); + $this->siteProfile = $post->string('site_profile'); + $this->server = $_SERVER['HTTP_HOST']; $this->path = substr(dirname($_SERVER['PHP_SELF']), 1); @@ -329,12 +331,16 @@ STR; if (!$this->validateAdmin()) { $fail = true; } - + if ($this->adminPass != $adminPass2) { $this->updateStatus("Administrator passwords do not match. Did you mistype?", true); $fail = true; } - + + if (!$this->validateSiteProfile()) { + $fail = true; + } + return !$fail; } @@ -373,11 +379,11 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"