Merge branch '0.9.x' into 1.0.x

This commit is contained in:
Brion Vibber 2010-05-14 12:15:13 -07:00
commit 91367dbc21
47 changed files with 1689 additions and 1479 deletions

View File

@ -491,6 +491,45 @@ class RegisterAction extends Action
$this->elementStart('li'); $this->elementStart('li');
$this->element('input', $attrs); $this->element('input', $attrs);
$this->elementStart('label', array('class' => 'checkbox', 'for' => 'license')); $this->elementStart('label', array('class' => 'checkbox', 'for' => 'license'));
$this->raw($this->licenseCheckbox());
$this->elementEnd('label');
$this->elementEnd('li');
}
$this->elementEnd('ul');
$this->submit('submit', _('Register'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
}
function licenseCheckbox()
{
$out = '';
switch (common_config('license', 'type')) {
case 'private':
// TRANS: Copyright checkbox label in registration dialog, for private sites.
$out .= htmlspecialchars(sprintf(
_('I understand that content and data of %1$s are private and confidential.'),
common_config('site', 'name')));
// fall through
case 'allrightsreserved':
if ($out != '') {
$out .= ' ';
}
if (common_config('license', 'owner')) {
// TRANS: Copyright checkbox label in registration dialog, for all rights reserved with a specified copyright owner.
$out .= htmlspecialchars(sprintf(
_('My text and files are copyright by %1$s.'),
common_config('license', 'owner')));
} else {
// TRANS: Copyright checkbox label in registration dialog, for all rights reserved with ownership left to contributors.
$out .= htmlspecialchars(_('My text and files remain under my own copyright.'));
}
// TRANS: Copyright checkbox label in registration dialog, for all rights reserved.
$out .= ' ' . _('All rights reserved.');
break;
case 'cc': // fall through
default:
// TRANS: Copyright checkbox label in registration dialog, for Creative Commons-style licenses.
$message = _('My text and files are available under %s ' . $message = _('My text and files are available under %s ' .
'except this private data: password, ' . 'except this private data: password, ' .
'email address, IM address, and phone number.'); 'email address, IM address, and phone number.');
@ -499,14 +538,9 @@ class RegisterAction extends Action
'">' . '">' .
htmlspecialchars(common_config('license', 'title')) . htmlspecialchars(common_config('license', 'title')) .
'</a>'; '</a>';
$this->raw(sprintf(htmlspecialchars($message), $link)); $out .= sprintf(htmlspecialchars($message), $link);
$this->elementEnd('label');
$this->elementEnd('li');
} }
$this->elementEnd('ul'); return $out;
$this->submit('submit', _('Register'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
} }
/** /**

View File

@ -1212,24 +1212,6 @@ class Notice extends Memcached_DataObject
$xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE)); $xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE));
$xs->element('updated', null, common_date_w3dtf($this->created)); $xs->element('updated', null, common_date_w3dtf($this->created));
$noticeInfoAttr = array(
'local_id' => $this->id, // local notice ID (useful to clients for ordering)
'source' => $this->source // the client name (source attribution)
);
$ns = $this->getSource();
if ($ns) {
if (!empty($ns->url)) {
$noticeInfoAttr['source_link'] = $ns->url;
}
}
if (!empty($cur)) {
$noticeInfoAttr['favorited'] = ($cur->hasFave($this)) ? 'true' : 'false';
}
$xs->element('statusnet:notice_info', $noticeInfoAttr, null);
} }
if ($source) { if ($source) {
@ -1252,6 +1234,24 @@ class Notice extends Memcached_DataObject
$xs->element('published', null, common_date_w3dtf($this->created)); $xs->element('published', null, common_date_w3dtf($this->created));
$xs->element('updated', null, common_date_w3dtf($this->created)); $xs->element('updated', null, common_date_w3dtf($this->created));
$noticeInfoAttr = array(
'local_id' => $this->id, // local notice ID (useful to clients for ordering)
'source' => $this->source // the client name (source attribution)
);
$ns = $this->getSource();
if ($ns) {
if (!empty($ns->url)) {
$noticeInfoAttr['source_link'] = $ns->url;
}
}
if (!empty($cur)) {
$noticeInfoAttr['favorited'] = ($cur->hasFave($this)) ? 'true' : 'false';
}
$xs->element('statusnet:notice_info', $noticeInfoAttr, null);
if ($this->reply_to) { if ($this->reply_to) {
$reply_notice = Notice::staticGet('id', $this->reply_to); $reply_notice = Notice::staticGet('id', $this->reply_to);
if (!empty($reply_notice)) { if (!empty($reply_notice)) {

View File

@ -128,6 +128,7 @@ abstract class Installer
$pass = false; $pass = false;
} }
// @fixme this check seems to be insufficient with Windows ACLs
if (!is_writable(INSTALLDIR)) { if (!is_writable(INSTALLDIR)) {
$this->warning(sprintf('Cannot write config file to: <code>%s</code></p>', INSTALLDIR), $this->warning(sprintf('Cannot write config file to: <code>%s</code></p>', INSTALLDIR),
sprintf('On your server, try this command: <code>chmod a+w %s</code>', INSTALLDIR)); sprintf('On your server, try this command: <code>chmod a+w %s</code>', INSTALLDIR));
@ -409,6 +410,10 @@ abstract class Installer
"\$config['db']['database'] = '{$this->db['database']}';\n\n". "\$config['db']['database'] = '{$this->db['database']}';\n\n".
($this->db['type'] == 'pgsql' ? "\$config['db']['quote_identifiers'] = true;\n\n":''). ($this->db['type'] == 'pgsql' ? "\$config['db']['quote_identifiers'] = true;\n\n":'').
"\$config['db']['type'] = '{$this->db['type']}';\n\n"; "\$config['db']['type'] = '{$this->db['type']}';\n\n";
// Normalize line endings for Windows servers
$cfg = str_replace("\n", PHP_EOL, $cfg);
// write configuration file out to install directory // write configuration file out to install directory
$res = file_put_contents(INSTALLDIR.'/config.php', $cfg); $res = file_put_contents(INSTALLDIR.'/config.php', $cfg);

View File

@ -1397,7 +1397,7 @@ function common_log_line($priority, $msg)
{ {
static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR', static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR',
'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG'); 'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG');
return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n"; return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . PHP_EOL;
} }
function common_request_id() function common_request_id()

View File

@ -9,11 +9,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:08+0000\n" "PO-Revision-Date: 2010-05-13 20:50:32+0000\n"
"Language-Team: Afrikaans\n" "Language-Team: Afrikaans\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: af\n" "X-Language-Code: af\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -95,10 +95,10 @@ msgstr "Hierdie bladsy bestaan nie"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -221,12 +221,12 @@ msgstr "Die API-funksie is nie gevind nie."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Hierdie metode benodig 'n POST." msgstr "Hierdie metode benodig 'n POST."
@ -256,7 +256,7 @@ msgstr "Kon nie die profiel stoor nie."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -313,20 +313,20 @@ msgstr "Direkte boodskappe aan %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Alle direkte boodskappe gestuur aan %s" msgstr "Alle direkte boodskappe gestuur aan %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Die boodskap bevat geen inhoud nie!" msgstr "Die boodskap bevat geen inhoud nie!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Dit is te lank. Die maksimum boodskaplengte is %d karakters." msgstr "Dit is te lank. Die maksimum boodskaplengte is %d karakters."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Die ontvanger kon gevind word nie." msgstr "Die ontvanger kon gevind word nie."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"U kan nie direkte boodskappe aan gebruikers wat nie op u viendelys is stuur " "U kan nie direkte boodskappe aan gebruikers wat nie op u viendelys is stuur "
@ -643,17 +643,17 @@ msgstr "Die status is verwyder."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Geen status met die ID gevind nie." msgstr "Geen status met die ID gevind nie."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters." msgstr "Die kennisgewing is te lank. Gebruik maksimum %d karakters."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Nie gevind nie." msgstr "Nie gevind nie."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -764,7 +764,7 @@ msgid "Preview"
msgstr "Voorskou" msgstr "Voorskou"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Skrap" msgstr "Skrap"
@ -1039,7 +1039,7 @@ msgid "Do not delete this notice"
msgstr "Moenie hierdie kennisgewing verwyder nie" msgstr "Moenie hierdie kennisgewing verwyder nie"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Verwyder hierdie kennisgewing" msgstr "Verwyder hierdie kennisgewing"
@ -2459,8 +2459,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3293,7 +3293,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "" msgstr ""
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Herhalend" msgstr "Herhalend"
@ -4616,7 +4616,7 @@ msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5068,7 +5068,7 @@ msgid "Snapshots configuration"
msgstr "" msgstr ""
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -5969,7 +5969,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "van" msgstr "van"
@ -6123,23 +6123,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "op" msgstr "op"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "in konteks" msgstr "in konteks"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Herhaal deur" msgstr "Herhaal deur"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Antwoord" msgstr "Antwoord"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "" msgstr ""

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-29 23:21+0000\n" "POT-Creation-Date: 2010-04-29 23:21+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:11+0000\n" "PO-Revision-Date: 2010-05-13 20:50:36+0000\n"
"Language-Team: Arabic\n" "Language-Team: Arabic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ar\n" "X-Language-Code: ar\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -96,10 +96,10 @@ msgstr "لا صفحة كهذه."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -220,12 +220,12 @@ msgstr "لم يتم العثور على وسيلة API."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "تتطلب هذه الطريقة POST." msgstr "تتطلب هذه الطريقة POST."
@ -255,7 +255,7 @@ msgstr "لم يمكن حفظ الملف."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -312,20 +312,20 @@ msgstr "رسالة مباشرة %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "كل الرسائل المباشرة التي أرسلت إلى %s" msgstr "كل الرسائل المباشرة التي أرسلت إلى %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "لا نص في الرسالة!" msgstr "لا نص في الرسالة!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "لم يُعثر على المستخدم المستلم." msgstr "لم يُعثر على المستخدم المستلم."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -637,17 +637,17 @@ msgstr "حُذِفت الحالة."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "لا حالة وُجدت بهذه الهوية." msgstr "لا حالة وُجدت بهذه الهوية."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "لم يوجد." msgstr "لم يوجد."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -758,7 +758,7 @@ msgid "Preview"
msgstr "معاينة" msgstr "معاينة"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "احذف" msgstr "احذف"
@ -1031,7 +1031,7 @@ msgid "Do not delete this notice"
msgstr "لا تحذف هذا الإشعار" msgstr "لا تحذف هذا الإشعار"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "احذف هذا الإشعار" msgstr "احذف هذا الإشعار"
@ -2449,8 +2449,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "ليس نسق بيانات مدعوم." msgstr "ليس نسق بيانات مدعوم."
@ -3291,7 +3291,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "أنت كررت هذه الملاحظة بالفعل." msgstr "أنت كررت هذه الملاحظة بالفعل."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "مكرر" msgstr "مكرر"
@ -4635,7 +4635,7 @@ msgstr "مشكلة أثناء حفظ الإشعار."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "آر تي @%1$s %2$s" msgstr "آر تي @%1$s %2$s"
@ -5097,7 +5097,7 @@ msgid "Snapshots configuration"
msgstr "ضبط المسارات" msgstr "ضبط المسارات"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6069,7 +6069,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "من" msgstr "من"
@ -6223,23 +6223,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "في" msgstr "في"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "في السياق" msgstr "في السياق"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "مكرر بواسطة" msgstr "مكرر بواسطة"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار" msgstr "رُد على هذا الإشعار"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "رُد" msgstr "رُد"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "الإشعار مكرر" msgstr "الإشعار مكرر"

View File

@ -11,11 +11,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:20+0000\n" "PO-Revision-Date: 2010-05-13 20:50:39+0000\n"
"Language-Team: Egyptian Spoken Arabic\n" "Language-Team: Egyptian Spoken Arabic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: arz\n" "X-Language-Code: arz\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -103,10 +103,10 @@ msgstr "لا صفحه كهذه"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "الـ API method مش موجوده."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "تتطلب هذه الطريقه POST." msgstr "تتطلب هذه الطريقه POST."
@ -262,7 +262,7 @@ msgstr "لم يمكن حفظ الملف."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -319,20 +319,20 @@ msgstr "رساله مباشره %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "لا نص فى الرسالة!" msgstr "لا نص فى الرسالة!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "لم يُعثر على المستخدم المستلم." msgstr "لم يُعثر على المستخدم المستلم."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -645,17 +645,17 @@ msgstr "حُذِفت الحاله."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "لم يوجد." msgstr "لم يوجد."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -766,7 +766,7 @@ msgid "Preview"
msgstr "عاين" msgstr "عاين"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "احذف" msgstr "احذف"
@ -1047,7 +1047,7 @@ msgid "Do not delete this notice"
msgstr "لا تحذف هذا الإشعار" msgstr "لا تحذف هذا الإشعار"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "احذف هذا الإشعار" msgstr "احذف هذا الإشعار"
@ -2473,8 +2473,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr " مش نظام بيانات مدعوم." msgstr " مش نظام بيانات مدعوم."
@ -3313,7 +3313,7 @@ msgstr "ما ينفعش تكرر الملاحظه بتاعتك."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "انت عيدت الملاحظه دى فعلا." msgstr "انت عيدت الملاحظه دى فعلا."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "مكرر" msgstr "مكرر"
@ -4658,7 +4658,7 @@ msgstr "مشكله أثناء حفظ الإشعار."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "آر تى @%1$s %2$s" msgstr "آر تى @%1$s %2$s"
@ -5142,7 +5142,7 @@ msgid "Snapshots configuration"
msgstr "ضبط المسارات" msgstr "ضبط المسارات"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6054,7 +6054,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "من" msgstr "من"
@ -6209,23 +6209,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "في" msgstr "في"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "فى السياق" msgstr "فى السياق"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "متكرر من" msgstr "متكرر من"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار" msgstr "رُد على هذا الإشعار"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "رُد" msgstr "رُد"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "الإشعار مكرر" msgstr "الإشعار مكرر"

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:24+0000\n" "PO-Revision-Date: 2010-05-13 20:50:43+0000\n"
"Language-Team: Bulgarian\n" "Language-Team: Bulgarian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: bg\n" "X-Language-Code: bg\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -97,10 +97,10 @@ msgstr "Няма такака страница."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -221,12 +221,12 @@ msgstr "Не е открит методът в API."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Този метод изисква заявка POST." msgstr "Този метод изисква заявка POST."
@ -256,7 +256,7 @@ msgstr "Грешка при запазване на профила."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -315,20 +315,20 @@ msgstr "Преки съобщения до %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Всички преки съобщения, изпратени до %s" msgstr "Всички преки съобщения, изпратени до %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Липсва текст на съобщението" msgstr "Липсва текст на съобщението"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Твърде дълго. Може да е най-много %d знака." msgstr "Твърде дълго. Може да е най-много %d знака."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Получателят не е открит" msgstr "Получателят не е открит"
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Не може да изпращате преки съобщения до хора, които не са в списъка ви с " "Не може да изпращате преки съобщения до хора, които не са в списъка ви с "
@ -646,17 +646,17 @@ msgstr "Бележката е изтрита."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Не е открита бележка с такъв идентификатор." msgstr "Не е открита бележка с такъв идентификатор."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака." msgstr "Твърде дълга бележка. Трябва да е най-много 140 знака."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Не е открито." msgstr "Не е открито."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -770,7 +770,7 @@ msgid "Preview"
msgstr "Преглед" msgstr "Преглед"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Изтриване" msgstr "Изтриване"
@ -1044,7 +1044,7 @@ msgid "Do not delete this notice"
msgstr "Да не се изтрива бележката" msgstr "Да не се изтрива бележката"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Изтриване на бележката" msgstr "Изтриване на бележката"
@ -2558,8 +2558,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Неподдържан формат на данните" msgstr "Неподдържан формат на данните"
@ -3432,7 +3432,7 @@ msgstr "Не можете да повтаряте собствена бележ
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Вече сте повторили тази бележка." msgstr "Вече сте повторили тази бележка."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -4816,7 +4816,7 @@ msgstr "Проблем при записване на бележката."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5298,7 +5298,7 @@ msgid "Snapshots configuration"
msgstr "Настройка на пътищата" msgstr "Настройка на пътищата"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6226,7 +6226,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "от" msgstr "от"
@ -6382,23 +6382,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "в контекст" msgstr "в контекст"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено от" msgstr "Повторено от"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Отговаряне на тази бележка" msgstr "Отговаряне на тази бележка"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Отговор" msgstr "Отговор"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Бележката е повторена." msgstr "Бележката е повторена."

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:27+0000\n" "PO-Revision-Date: 2010-05-13 20:50:46+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n" "X-Language-Code: br\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -95,10 +95,10 @@ msgstr "N'eus ket eus ar bajenn-se."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -219,12 +219,12 @@ msgstr "N'eo ket bet kavet an hentenn API !"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Ezhomm en deus an argerzh-mañ eus ur POST." msgstr "Ezhomm en deus an argerzh-mañ eus ur POST."
@ -254,7 +254,7 @@ msgstr "Diposubl eo enrollañ ar profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -311,20 +311,20 @@ msgstr "Kemennadennoù war-eeun kaset da %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "An holl gemennadennoù war-eeun kaset da %s" msgstr "An holl gemennadennoù war-eeun kaset da %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Kemenadenn hep testenn !" msgstr "Kemenadenn hep testenn !"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn." msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "N'eo ket bet kavet ar resever." msgstr "N'eo ket bet kavet ar resever."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho " "Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho "
@ -636,17 +636,17 @@ msgstr "Statud diverket."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "N'eo ket bet kavet a statud evit an ID-mañ" msgstr "N'eo ket bet kavet a statud evit an ID-mañ"
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "N'eo ket bet kavet." msgstr "N'eo ket bet kavet."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -757,7 +757,7 @@ msgid "Preview"
msgstr "Rakwelet" msgstr "Rakwelet"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Diverkañ" msgstr "Diverkañ"
@ -1031,7 +1031,7 @@ msgid "Do not delete this notice"
msgstr "Arabat dilemel an ali-mañ" msgstr "Arabat dilemel an ali-mañ"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Dilemel an ali-mañ" msgstr "Dilemel an ali-mañ"
@ -2450,8 +2450,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3308,7 +3308,7 @@ msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Adkemeret o peus dija an ali-mañ." msgstr "Adkemeret o peus dija an ali-mañ."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Adlavaret" msgstr "Adlavaret"
@ -4636,7 +4636,7 @@ msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5089,7 +5089,7 @@ msgid "Snapshots configuration"
msgstr "Kefluniadur ar primoù" msgstr "Kefluniadur ar primoù"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -5995,7 +5995,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "eus" msgstr "eus"
@ -6149,23 +6149,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "e" msgstr "e"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "en amdro" msgstr "en amdro"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Adkemeret gant" msgstr "Adkemeret gant"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Respont d'an ali-mañ" msgstr "Respont d'an ali-mañ"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Respont" msgstr "Respont"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Ali adkemeret" msgstr "Ali adkemeret"

File diff suppressed because it is too large Load Diff

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:33+0000\n" "PO-Revision-Date: 2010-05-13 20:51:00+0000\n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: cs\n" "X-Language-Code: cs\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -103,10 +103,10 @@ msgstr "Žádné takové oznámení."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -229,12 +229,12 @@ msgstr "Potvrzující kód nebyl nalezen"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "" msgstr ""
@ -266,7 +266,7 @@ msgstr "Nelze uložit profil"
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -325,20 +325,20 @@ msgstr ""
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -664,18 +664,18 @@ msgstr "Obrázek nahrán"
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků" msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
#, fuzzy #, fuzzy
msgid "Not found." msgid "Not found."
msgstr "Žádný požadavek nebyl nalezen!" msgstr "Žádný požadavek nebyl nalezen!"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -790,7 +790,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Odstranit" msgstr "Odstranit"
@ -1081,7 +1081,7 @@ msgid "Do not delete this notice"
msgstr "Žádné takové oznámení." msgstr "Žádné takové oznámení."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Odstranit toto oznámení" msgstr "Odstranit toto oznámení"
@ -2575,8 +2575,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3453,7 +3453,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Již jste přihlášen" msgstr "Již jste přihlášen"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Vytvořit" msgstr "Vytvořit"
@ -4846,7 +4846,7 @@ msgstr "Problém při ukládání sdělení"
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5341,7 +5341,7 @@ msgid "Snapshots configuration"
msgstr "Potvrzení emailové adresy" msgstr "Potvrzení emailové adresy"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6277,7 +6277,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " od " msgstr " od "
@ -6438,26 +6438,26 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Žádný obsah!" msgstr "Žádný obsah!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Vytvořit" msgstr "Vytvořit"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:630 #: lib/noticelist.php:622
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "odpověď" msgstr "odpověď"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Sdělení" msgstr "Sdělení"

View File

@ -16,11 +16,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-29 23:21+0000\n" "POT-Creation-Date: 2010-04-29 23:21+0000\n"
"PO-Revision-Date: 2010-05-05 22:19:15+0000\n" "PO-Revision-Date: 2010-05-13 20:51:03+0000\n"
"Language-Team: German\n" "Language-Team: German\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65963); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n" "X-Language-Code: de\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -102,10 +102,10 @@ msgstr "Seite nicht vorhanden"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -236,12 +236,12 @@ msgstr "API-Methode nicht gefunden."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Diese Methode benötigt ein POST." msgstr "Diese Methode benötigt ein POST."
@ -273,7 +273,7 @@ msgstr "Konnte Profil nicht speichern."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -332,21 +332,21 @@ msgstr "Direkte Nachricht an %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Alle an %s gesendeten direkten Nachrichten" msgstr "Alle an %s gesendeten direkten Nachrichten"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Fehlender Nachrichtentext!" msgstr "Fehlender Nachrichtentext!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen." "Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Empfänger nicht gefunden." msgstr "Empfänger nicht gefunden."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen " "Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen "
@ -665,18 +665,18 @@ msgstr "Status gelöscht."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Keine Nachricht mit dieser ID gefunden." msgstr "Keine Nachricht mit dieser ID gefunden."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
"Das war zu lang. Die Länge einer Nachricht ist auf %d Zeichen beschränkt." "Das war zu lang. Die Länge einer Nachricht ist auf %d Zeichen beschränkt."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Nicht gefunden." msgstr "Nicht gefunden."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -790,7 +790,7 @@ msgid "Preview"
msgstr "Vorschau" msgstr "Vorschau"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -1071,7 +1071,7 @@ msgid "Do not delete this notice"
msgstr "Diese Nachricht nicht löschen" msgstr "Diese Nachricht nicht löschen"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Nachricht löschen" msgstr "Nachricht löschen"
@ -2581,8 +2581,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Bitte nur %s URLs über einfaches HTTP." msgstr "Bitte nur %s URLs über einfaches HTTP."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Kein unterstütztes Datenformat." msgstr "Kein unterstütztes Datenformat."
@ -3477,7 +3477,7 @@ msgstr "Du kannst deine eigene Nachricht nicht wiederholen."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Nachricht bereits wiederholt" msgstr "Nachricht bereits wiederholt"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Wiederholt" msgstr "Wiederholt"
@ -4897,7 +4897,7 @@ msgstr "Problem bei Speichern der Nachricht."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5359,7 +5359,7 @@ msgid "Snapshots configuration"
msgstr "Snapshot Konfiguration" msgstr "Snapshot Konfiguration"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte." msgstr "API-Ressource erfordert lesen/schreib Zugriff; du hast nur Leserechte."
@ -6405,7 +6405,7 @@ msgstr ""
"schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir " "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir "
"Nachrichten schicken, die nur Du sehen kannst." "Nachrichten schicken, die nur Du sehen kannst."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "von" msgstr "von"
@ -6567,23 +6567,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "in" msgstr "in"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "im Zusammenhang" msgstr "im Zusammenhang"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Wiederholt von" msgstr "Wiederholt von"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Auf diese Nachricht antworten" msgstr "Auf diese Nachricht antworten"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Antworten" msgstr "Antworten"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nachricht wiederholt" msgstr "Nachricht wiederholt"

View File

@ -11,11 +11,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:39+0000\n" "PO-Revision-Date: 2010-05-13 20:51:07+0000\n"
"Language-Team: Greek\n" "Language-Team: Greek\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: el\n" "X-Language-Code: el\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -98,10 +98,10 @@ msgstr "Δεν υπάρχει τέτοια σελίδα"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "" msgstr ""
@ -264,7 +264,7 @@ msgstr "Απέτυχε η αποθήκευση του προφίλ."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -322,20 +322,20 @@ msgstr ""
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -655,17 +655,17 @@ msgstr "Η κατάσταση διεγράφη."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -776,7 +776,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Διαγραφή" msgstr "Διαγραφή"
@ -1064,7 +1064,7 @@ msgid "Do not delete this notice"
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -2531,8 +2531,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3411,7 +3411,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Δημιουργία" msgstr "Δημιουργία"
@ -4769,7 +4769,7 @@ msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5251,7 +5251,7 @@ msgid "Snapshots configuration"
msgstr "Επιβεβαίωση διεύθυνσης email" msgstr "Επιβεβαίωση διεύθυνσης email"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6161,7 +6161,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "από" msgstr "από"
@ -6318,23 +6318,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Επαναλαμβάνεται από" msgstr "Επαναλαμβάνεται από"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Ρυθμίσεις OpenID" msgstr "Ρυθμίσεις OpenID"

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-05-09 17:09+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:42+0000\n" "PO-Revision-Date: 2010-05-13 20:51:11+0000\n"
"Language-Team: British English\n" "Language-Team: British English\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: en-gb\n" "X-Language-Code: en-gb\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -96,10 +96,10 @@ msgstr "No such page."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "API method not found."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "This method requires a POST." msgstr "This method requires a POST."
@ -266,7 +266,7 @@ msgstr "Couldn't save profile."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -325,20 +325,20 @@ msgstr "Direct messages to %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "All the direct messages sent to %s" msgstr "All the direct messages sent to %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "No message text!" msgstr "No message text!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "That's too long. Max message size is %d chars." msgstr "That's too long. Max message size is %d chars."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Recipient user not found." msgstr "Recipient user not found."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "Can't send direct messages to users who aren't your friend." msgstr "Can't send direct messages to users who aren't your friend."
@ -652,17 +652,17 @@ msgstr "Status deleted."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "No status with that ID found." msgstr "No status with that ID found."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "That's too long. Max notice size is %d chars." msgstr "That's too long. Max notice size is %d chars."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Not found." msgstr "Not found."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Max notice size is %d chars, including attachment URL." msgstr "Max notice size is %d chars, including attachment URL."
@ -773,7 +773,7 @@ msgid "Preview"
msgstr "Preview" msgstr "Preview"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Delete" msgstr "Delete"
@ -1054,7 +1054,7 @@ msgid "Do not delete this notice"
msgstr "Do not delete this notice" msgstr "Do not delete this notice"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Delete this notice" msgstr "Delete this notice"
@ -1686,7 +1686,7 @@ msgstr "Invalid role."
#: actions/grantrole.php:66 actions/revokerole.php:66 #: actions/grantrole.php:66 actions/revokerole.php:66
msgid "This role is reserved and cannot be set." msgid "This role is reserved and cannot be set."
msgstr "" msgstr "This role is reserved and cannot be set."
#: actions/grantrole.php:75 #: actions/grantrole.php:75
msgid "You cannot grant user roles on this site." msgid "You cannot grant user roles on this site."
@ -2303,21 +2303,19 @@ msgstr ""
"changing your settings." "changing your settings."
#: actions/login.php:270 #: actions/login.php:270
#, fuzzy
msgid "Login with your username and password." msgid "Login with your username and password."
msgstr "Login with a username and password" msgstr "Login with your username and password."
#: actions/login.php:273 #: actions/login.php:273
#, fuzzy, php-format #, php-format
msgid "" msgid ""
"Don't have a username yet? [Register](%%action.register%%) a new account." "Don't have a username yet? [Register](%%action.register%%) a new account."
msgstr "" msgstr ""
"Login with your username and password. Don't have a username yet? [Register]" "Don't have a username yet? [Register](%%action.register%%) a new account."
"(%%action.register%%) a new account."
#: actions/makeadmin.php:92 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr "Only and admin can make another user an admin."
#: actions/makeadmin.php:96 #: actions/makeadmin.php:96
#, php-format #, php-format
@ -2480,16 +2478,16 @@ msgstr "OAuth applications"
#: actions/oauthappssettings.php:85 #: actions/oauthappssettings.php:85
msgid "Applications you have registered" msgid "Applications you have registered"
msgstr "" msgstr "Applications you have registered"
#: actions/oauthappssettings.php:135 #: actions/oauthappssettings.php:135
#, php-format #, php-format
msgid "You have not registered any applications yet." msgid "You have not registered any applications yet."
msgstr "" msgstr "You have not registered any applications yet."
#: actions/oauthconnectionssettings.php:72 #: actions/oauthconnectionssettings.php:72
msgid "Connected applications" msgid "Connected applications"
msgstr "" msgstr "Connected applications"
#: actions/oauthconnectionssettings.php:83 #: actions/oauthconnectionssettings.php:83
msgid "You have allowed the following applications to access you account." msgid "You have allowed the following applications to access you account."
@ -2534,8 +2532,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Not a supported data format." msgstr "Not a supported data format."
@ -3404,7 +3402,7 @@ msgstr "You can't repeat your own notice."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "You already repeated that notice." msgstr "You already repeated that notice."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Repeated" msgstr "Repeated"
@ -4779,7 +4777,7 @@ msgstr "Problem saving group inbox."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5237,7 +5235,7 @@ msgid "Snapshots configuration"
msgstr "Snapshots configuration" msgstr "Snapshots configuration"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -5700,7 +5698,7 @@ msgstr "Connections"
#: lib/connectsettingsaction.php:121 #: lib/connectsettingsaction.php:121
msgid "Authorized connected applications" msgid "Authorized connected applications"
msgstr "" msgstr "Authorised connected applications"
#: lib/dberroraction.php:60 #: lib/dberroraction.php:60
msgid "Database error" msgid "Database error"
@ -6153,7 +6151,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "from" msgstr "from"
@ -6307,23 +6305,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "in context" msgstr "in context"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repeated by" msgstr "Repeated by"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Reply to this notice" msgstr "Reply to this notice"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Reply" msgstr "Reply"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notice repeated" msgstr "Notice repeated"

View File

@ -14,12 +14,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-05-09 17:09+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:46+0000\n" "PO-Revision-Date: 2010-05-13 20:51:14+0000\n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n" "X-Language-Code: es\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -100,10 +100,10 @@ msgstr "No existe tal página."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -232,12 +232,12 @@ msgstr "Método de API no encontrado."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Este método requiere un POST." msgstr "Este método requiere un POST."
@ -269,7 +269,7 @@ msgstr "No se pudo guardar el perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -328,20 +328,20 @@ msgstr "Mensajes directos a %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Todos los mensajes directos enviados a %s" msgstr "Todos los mensajes directos enviados a %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "¡Sin texto de mensaje!" msgstr "¡Sin texto de mensaje!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres." msgstr "Demasiado largo. Tamaño máx. de los mensajes es %d caracteres."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "No se encuentra usuario receptor." msgstr "No se encuentra usuario receptor."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo." msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo."
@ -660,17 +660,17 @@ msgstr "Status borrado."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "No hay estado para ese ID" msgstr "No hay estado para ese ID"
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "La entrada es muy larga. El tamaño máximo es de %d caracteres." msgstr "La entrada es muy larga. El tamaño máximo es de %d caracteres."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "No encontrado." msgstr "No encontrado."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -783,7 +783,7 @@ msgid "Preview"
msgstr "Vista previa" msgstr "Vista previa"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Borrar" msgstr "Borrar"
@ -1065,7 +1065,7 @@ msgid "Do not delete this notice"
msgstr "No eliminar este mensaje" msgstr "No eliminar este mensaje"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Borrar este aviso" msgstr "Borrar este aviso"
@ -2567,8 +2567,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Solamente %s URLs sobre HTTP simples por favor." msgstr "Solamente %s URLs sobre HTTP simples por favor."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "No es un formato de dato soportado" msgstr "No es un formato de dato soportado"
@ -3467,7 +3467,7 @@ msgstr "No puedes repetir tus propios mensajes."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Ya has repetido este mensaje." msgstr "Ya has repetido este mensaje."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Repetido" msgstr "Repetido"
@ -4883,7 +4883,7 @@ msgstr "Hubo un problema al guarda la bandeja de entrada del grupo."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5053,7 +5053,7 @@ msgstr "Cerrar sesión en el sitio"
#: lib/action.php:467 #: lib/action.php:467
msgctxt "MENU" msgctxt "MENU"
msgid "Logout" msgid "Logout"
msgstr "Cerrar Sesión" msgstr "Cerrar sesión"
#. TRANS: Tooltip for main menu option "Register" #. TRANS: Tooltip for main menu option "Register"
#: lib/action.php:472 #: lib/action.php:472
@ -5348,7 +5348,7 @@ msgid "Snapshots configuration"
msgstr "Configuración de instantáneas" msgstr "Configuración de instantáneas"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API requiere acceso de lectura y escritura, pero sólo tienes acceso de " "API requiere acceso de lectura y escritura, pero sólo tienes acceso de "
@ -6402,7 +6402,7 @@ msgstr ""
"otros usuarios partícipes de la conversación. La gente puede enviarte " "otros usuarios partícipes de la conversación. La gente puede enviarte "
"mensajes que sólo puedas leer tú." "mensajes que sólo puedas leer tú."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "desde" msgstr "desde"
@ -6563,23 +6563,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "en" msgstr "en"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "en contexto" msgstr "en contexto"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetido por" msgstr "Repetido por"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder este aviso." msgstr "Responder este aviso."
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Aviso repetido" msgstr "Aviso repetido"

View File

@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:52+0000\n" "PO-Revision-Date: 2010-05-13 20:51:21+0000\n"
"Last-Translator: Ahmad Sufi Mahmudi\n" "Last-Translator: Ahmad Sufi Mahmudi\n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -20,7 +20,7 @@ msgstr ""
"X-Language-Code: fa\n" "X-Language-Code: fa\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
#. TRANS: Page title #. TRANS: Page title
@ -99,10 +99,10 @@ msgstr "چنین صفحه‌ای وجود ندارد"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -229,12 +229,12 @@ msgstr "رابط مورد نظر پیدا نشد."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "برای استفاده از این روش باید اطلاعات را به صورت پست بفرستید" msgstr "برای استفاده از این روش باید اطلاعات را به صورت پست بفرستید"
@ -265,7 +265,7 @@ msgstr "نمی‌توان شناس‌نامه را ذخیره کرد."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -323,20 +323,20 @@ msgstr "پیام‌های مستقیم به %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "تمام پیام‌های مستقیم فرستاده‌شده به %s" msgstr "تمام پیام‌های مستقیم فرستاده‌شده به %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "هیچ پیام متنی وجود ندارد!" msgstr "هیچ پیام متنی وجود ندارد!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "این بسیار طولانی است. بیشینهٔ اندازهٔ پیام %d حرف است." msgstr "این بسیار طولانی است. بیشینهٔ اندازهٔ پیام %d حرف است."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "کاربر گیرنده یافت نشد." msgstr "کاربر گیرنده یافت نشد."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "نمی‌توان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد." msgstr "نمی‌توان پیام مستقیم را به کاربرانی که دوست شما نیستند، فرستاد."
@ -650,17 +650,17 @@ msgstr "وضعیت حذف شد."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "هیچ وضعیتی با آن شناسه یافت نشد." msgstr "هیچ وضعیتی با آن شناسه یافت نشد."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "خیلی طولانی است. حداکثر طول مجاز پیام %d حرف است." msgstr "خیلی طولانی است. حداکثر طول مجاز پیام %d حرف است."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "یافت نشد." msgstr "یافت نشد."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "حداکثر طول پیام %d حرف است که شامل ضمیمه نیز می‌باشد" msgstr "حداکثر طول پیام %d حرف است که شامل ضمیمه نیز می‌باشد"
@ -773,7 +773,7 @@ msgid "Preview"
msgstr "پیش‌نمایش" msgstr "پیش‌نمایش"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "حذف" msgstr "حذف"
@ -1065,7 +1065,7 @@ msgid "Do not delete this notice"
msgstr "این پیام را پاک نکن" msgstr "این پیام را پاک نکن"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "این پیام را پاک کن" msgstr "این پیام را پاک کن"
@ -2554,8 +2554,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست."
@ -3408,7 +3408,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "شما قبلا آن آگهی را تکرار کردید." msgstr "شما قبلا آن آگهی را تکرار کردید."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "" msgstr ""
@ -4775,7 +4775,7 @@ msgstr "مشکل در ذخیره کردن آگهی."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5254,7 +5254,7 @@ msgid "Snapshots configuration"
msgstr "پیکره بندی اصلی سایت" msgstr "پیکره بندی اصلی سایت"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6167,7 +6167,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "از" msgstr "از"
@ -6326,23 +6326,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "در" msgstr "در"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "در زمینه" msgstr "در زمینه"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "تکرار از" msgstr "تکرار از"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "به این آگهی جواب دهید" msgstr "به این آگهی جواب دهید"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "جواب دادن" msgstr "جواب دادن"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "آگهی تکرار شد" msgstr "آگهی تکرار شد"

View File

@ -11,11 +11,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:49+0000\n" "PO-Revision-Date: 2010-05-13 20:51:17+0000\n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n" "X-Language-Code: fi\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -105,10 +105,10 @@ msgstr "Sivua ei ole."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -236,12 +236,12 @@ msgstr "API-metodia ei löytynyt!"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Tämä metodi edellyttää POST sanoman." msgstr "Tämä metodi edellyttää POST sanoman."
@ -273,7 +273,7 @@ msgstr "Ei voitu tallentaa profiilia."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -333,20 +333,20 @@ msgstr "Suorat viestit käyttäjälle %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Kaikki suorat viestit käyttäjälle %s" msgstr "Kaikki suorat viestit käyttäjälle %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Viestissä ei ole tekstiä!" msgstr "Viestissä ei ole tekstiä!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä." msgstr "Liian pitkä päivitys. Maksimikoko päivitykselle on %d merkkiä."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Vastaanottajaa ei löytynyt." msgstr "Vastaanottajaa ei löytynyt."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri." "Et voi lähettää suoraa viestiä käyttäjälle, jonka kanssa et ole vielä kaveri."
@ -674,17 +674,17 @@ msgstr "Päivitys poistettu."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä." msgstr "Käyttäjätunnukselle ei löytynyt statusviestiä."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Päivitys on liian pitkä. Maksimipituus on %d merkkiä." msgstr "Päivitys on liian pitkä. Maksimipituus on %d merkkiä."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Ei löytynyt." msgstr "Ei löytynyt."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite." msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite."
@ -797,7 +797,7 @@ msgid "Preview"
msgstr "Esikatselu" msgstr "Esikatselu"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Poista" msgstr "Poista"
@ -1084,7 +1084,7 @@ msgid "Do not delete this notice"
msgstr "Älä poista tätä päivitystä" msgstr "Älä poista tätä päivitystä"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Poista tämä päivitys" msgstr "Poista tämä päivitys"
@ -2622,8 +2622,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Tuo ei ole tuettu tietomuoto." msgstr "Tuo ei ole tuettu tietomuoto."
@ -3530,7 +3530,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Sinä olet jo estänyt tämän käyttäjän." msgstr "Sinä olet jo estänyt tämän käyttäjän."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Luotu" msgstr "Luotu"
@ -4949,7 +4949,7 @@ msgstr "Ongelma päivityksen tallentamisessa."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -5447,7 +5447,7 @@ msgid "Snapshots configuration"
msgstr "SMS vahvistus" msgstr "SMS vahvistus"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6390,7 +6390,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " lähteestä " msgstr " lähteestä "
@ -6550,25 +6550,25 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Ei sisältöä!" msgstr "Ei sisältöä!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Luotu" msgstr "Luotu"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Vastaa tähän päivitykseen" msgstr "Vastaa tähän päivitykseen"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Vastaus" msgstr "Vastaus"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Päivitys on poistettu." msgstr "Päivitys on poistettu."

View File

@ -16,11 +16,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:17:56+0000\n" "PO-Revision-Date: 2010-05-13 20:51:27+0000\n"
"Language-Team: French\n" "Language-Team: French\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n" "X-Language-Code: fr\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -101,10 +101,10 @@ msgstr "Page non trouvée."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -234,12 +234,12 @@ msgstr "Méthode API non trouvée !"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Ce processus requiert un POST." msgstr "Ce processus requiert un POST."
@ -271,7 +271,7 @@ msgstr "Impossible denregistrer le profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -330,20 +330,20 @@ msgstr "Messages directs envoyés à %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Tous les messages directs envoyés à %s" msgstr "Tous les messages directs envoyés à %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Message sans texte !" msgstr "Message sans texte !"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Cest trop long ! La taille maximale du message est de %d caractères." msgstr "Cest trop long ! La taille maximale du message est de %d caractères."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Destinataire non trouvé." msgstr "Destinataire non trouvé."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Vous ne pouvez envoyer des messages personnels quaux utilisateurs inscrits " "Vous ne pouvez envoyer des messages personnels quaux utilisateurs inscrits "
@ -668,17 +668,17 @@ msgstr "Statut supprimé."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Aucun statut trouvé avec cet identifiant." msgstr "Aucun statut trouvé avec cet identifiant."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Cest trop long ! La taille maximale de lavis est de %d caractères." msgstr "Cest trop long ! La taille maximale de lavis est de %d caractères."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Non trouvé." msgstr "Non trouvé."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -793,7 +793,7 @@ msgid "Preview"
msgstr "Aperçu" msgstr "Aperçu"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
@ -1074,7 +1074,7 @@ msgid "Do not delete this notice"
msgstr "Ne pas supprimer cet avis" msgstr "Ne pas supprimer cet avis"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Supprimer cet avis" msgstr "Supprimer cet avis"
@ -2587,8 +2587,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s." msgstr "Veuillez n'utiliser que des URL HTTP complètes en %s."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Format de données non supporté." msgstr "Format de données non supporté."
@ -3484,7 +3484,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Vous avez déjà repris cet avis." msgstr "Vous avez déjà repris cet avis."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Repris" msgstr "Repris"
@ -4913,7 +4913,7 @@ msgstr "Problème lors de lenregistrement de la boîte de réception du group
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5375,7 +5375,7 @@ msgid "Snapshots configuration"
msgstr "Configuration des instantanés" msgstr "Configuration des instantanés"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"La ressource de lAPI a besoin de laccès en lecture et en écriture, mais " "La ressource de lAPI a besoin de laccès en lecture et en écriture, mais "
@ -6436,7 +6436,7 @@ msgstr ""
"pour démarrer des conversations avec dautres utilisateurs. Ceux-ci peuvent " "pour démarrer des conversations avec dautres utilisateurs. Ceux-ci peuvent "
"vous envoyer des messages destinés à vous seul(e)." "vous envoyer des messages destinés à vous seul(e)."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -6596,23 +6596,23 @@ msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s"
msgid "at" msgid "at"
msgstr "chez" msgstr "chez"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "dans le contexte" msgstr "dans le contexte"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repris par" msgstr "Repris par"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Répondre à cet avis" msgstr "Répondre à cet avis"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Répondre" msgstr "Répondre"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Avis repris" msgstr "Avis repris"

View File

@ -9,11 +9,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:04+0000\n" "PO-Revision-Date: 2010-05-13 20:51:30+0000\n"
"Language-Team: Irish\n" "Language-Team: Irish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ga\n" "X-Language-Code: ga\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -104,10 +104,10 @@ msgstr "Non existe a etiqueta."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -230,12 +230,12 @@ msgstr "Método da API non atopado"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Este método require un POST." msgstr "Este método require un POST."
@ -267,7 +267,7 @@ msgstr "Non se puido gardar o perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -327,21 +327,21 @@ msgstr "Mensaxes directas para %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Tódalas mensaxes directas enviadas a %s" msgstr "Tódalas mensaxes directas enviadas a %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Non hai mensaxes de texto!" msgstr "Non hai mensaxes de texto!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
"Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres." "Iso é demasiado longo. O tamaño máximo para unha mensaxe é de 140 caracteres."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Usuario destinatario non atopado." msgstr "Usuario destinatario non atopado."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo." "Non se pode enviar a mensaxe directa a usuarios dos que non eres amigo."
@ -669,18 +669,18 @@ msgstr "Avatar actualizado."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Non existe ningún estado con esa ID atopada." msgstr "Non existe ningún estado con esa ID atopada."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
"Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres." "Iso é demasiado longo. O tamaño máximo para un chío é de 140 caracteres."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Non atopado" msgstr "Non atopado"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -795,7 +795,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "eliminar" msgstr "eliminar"
@ -1095,7 +1095,7 @@ msgid "Do not delete this notice"
msgstr "Non se pode eliminar este chíos." msgstr "Non se pode eliminar este chíos."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
#, fuzzy #, fuzzy
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eliminar chío" msgstr "Eliminar chío"
@ -2651,8 +2651,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Non é un formato de datos soportado." msgstr "Non é un formato de datos soportado."
@ -3569,7 +3569,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Xa bloqueaches a este usuario." msgstr "Xa bloqueaches a este usuario."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Crear" msgstr "Crear"
@ -5004,7 +5004,7 @@ msgstr "Aconteceu un erro ó gardar o chío."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -5506,7 +5506,7 @@ msgid "Snapshots configuration"
msgstr "Confirmación de SMS" msgstr "Confirmación de SMS"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6539,7 +6539,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " dende " msgstr " dende "
@ -6702,27 +6702,27 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Sen contido!" msgstr "Sen contido!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Crear" msgstr "Crear"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
#, fuzzy #, fuzzy
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Non se pode eliminar este chíos." msgstr "Non se pode eliminar este chíos."
#: lib/noticelist.php:630 #: lib/noticelist.php:622
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "contestar" msgstr "contestar"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Chío publicado" msgstr "Chío publicado"

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-29 23:21+0000\n" "POT-Creation-Date: 2010-04-29 23:21+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:08+0000\n" "PO-Revision-Date: 2010-05-13 20:51:34+0000\n"
"Language-Team: Galician\n" "Language-Team: Galician\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n" "X-Language-Code: gl\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -95,10 +95,10 @@ msgstr "Esa páxina non existe."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "Non se atopou o método da API."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Este método require un POST." msgstr "Este método require un POST."
@ -264,7 +264,7 @@ msgstr "Non se puido gardar o perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -323,21 +323,21 @@ msgstr "Mensaxes directas a %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Todas as mensaxes directas enviadas a %s" msgstr "Todas as mensaxes directas enviadas a %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "A mensaxe non ten texto!" msgstr "A mensaxe non ten texto!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
"Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres." "Iso é longo de máis. A lonxitude máxima das mensaxes é de %d caracteres."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Non se atopou o destinatario." msgstr "Non se atopou o destinatario."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Non pode enviar mensaxes directas a usuarios que non sexan amigos seus." "Non pode enviar mensaxes directas a usuarios que non sexan amigos seus."
@ -656,17 +656,17 @@ msgstr "Borrouse o estado."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Non se atopou ningún estado con esa ID." msgstr "Non se atopou ningún estado con esa ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Iso é longo de máis. A nota non pode exceder os %d caracteres." msgstr "Iso é longo de máis. A nota non pode exceder os %d caracteres."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Non se atopou." msgstr "Non se atopou."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -781,7 +781,7 @@ msgid "Preview"
msgstr "Vista previa" msgstr "Vista previa"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Borrar" msgstr "Borrar"
@ -1062,7 +1062,7 @@ msgid "Do not delete this notice"
msgstr "Non borrar esta nota" msgstr "Non borrar esta nota"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Borrar esta nota" msgstr "Borrar esta nota"
@ -2563,8 +2563,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Só %s enderezos URL sobre HTTP simple." msgstr "Só %s enderezos URL sobre HTTP simple."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Non se soporta ese formato de datos." msgstr "Non se soporta ese formato de datos."
@ -3463,7 +3463,7 @@ msgstr "Non pode repetir a súa propia nota."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Xa repetiu esa nota." msgstr "Xa repetiu esa nota."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Repetida" msgstr "Repetida"
@ -4880,7 +4880,7 @@ msgstr "Houbo un problema ao gardar a caixa de entrada do grupo."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "♻ @%1$s %2$s" msgstr "♻ @%1$s %2$s"
@ -5343,7 +5343,7 @@ msgid "Snapshots configuration"
msgstr "Configuración das instantáneas" msgstr "Configuración das instantáneas"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"O recurso API precisa permisos de lectura e escritura, pero só dispón de " "O recurso API precisa permisos de lectura e escritura, pero só dispón de "
@ -6394,7 +6394,7 @@ msgstr ""
"Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con " "Non ten mensaxes privadas. Pode enviar mensaxes privadas para conversar con "
"outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede." "outros usuarios. A xente pode enviarlle mensaxes para que só as lea vostede."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -6553,23 +6553,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "en" msgstr "en"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "no contexto" msgstr "no contexto"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetida por" msgstr "Repetida por"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a esta nota" msgstr "Responder a esta nota"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Repetiuse a nota" msgstr "Repetiuse a nota"

View File

@ -8,11 +8,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:12+0000\n" "PO-Revision-Date: 2010-05-13 20:51:37+0000\n"
"Language-Team: Hebrew\n" "Language-Team: Hebrew\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n" "X-Language-Code: he\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -101,10 +101,10 @@ msgstr "אין הודעה כזו."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "קוד האישור לא נמצא."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "" msgstr ""
@ -264,7 +264,7 @@ msgstr "שמירת הפרופיל נכשלה."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -323,20 +323,20 @@ msgstr ""
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -661,18 +661,18 @@ msgstr "התמונה עודכנה."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
#, fuzzy #, fuzzy
msgid "Not found." msgid "Not found."
msgstr "לא נמצא" msgstr "לא נמצא"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -787,7 +787,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "מחק" msgstr "מחק"
@ -1081,7 +1081,7 @@ msgid "Do not delete this notice"
msgstr "אין הודעה כזו." msgstr "אין הודעה כזו."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -2583,8 +2583,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3457,7 +3457,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "כבר נכנסת למערכת!" msgstr "כבר נכנסת למערכת!"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "צור" msgstr "צור"
@ -4849,7 +4849,7 @@ msgstr "בעיה בשמירת ההודעה."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5343,7 +5343,7 @@ msgid "Snapshots configuration"
msgstr "הרשמות" msgstr "הרשמות"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6278,7 +6278,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -6439,26 +6439,26 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "אין תוכן!" msgstr "אין תוכן!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "צור" msgstr "צור"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:630 #: lib/noticelist.php:622
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "הגב" msgstr "הגב"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "הודעות" msgstr "הודעות"

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:15+0000\n" "PO-Revision-Date: 2010-05-13 20:51:43+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hsb\n" "X-Language-Code: hsb\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -96,10 +96,10 @@ msgstr "Strona njeeksistuje."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -220,12 +220,12 @@ msgstr "API-metoda njenamakana."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Tuta metoda wužaduje sej POST." msgstr "Tuta metoda wužaduje sej POST."
@ -255,7 +255,7 @@ msgstr "Profil njeje so składować dał."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -312,20 +312,20 @@ msgstr "Direktne powěsće do %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Wšě do %s pósłane direktne powěsće" msgstr "Wšě do %s pósłane direktne powěsće"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Žadyn powěsćowy tekst!" msgstr "Žadyn powěsćowy tekst!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow." msgstr "To je předołho. Maksimalna powěsćowa wulkosć je %d znamješkow."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Přijimowar njenamakany." msgstr "Přijimowar njenamakany."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -634,17 +634,17 @@ msgstr "Status zničeny."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Žadyn status z tym ID namakany." msgstr "Žadyn status z tym ID namakany."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow." msgstr "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Njenamakany." msgstr "Njenamakany."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -756,7 +756,7 @@ msgid "Preview"
msgstr "Přehlad" msgstr "Přehlad"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Zničić" msgstr "Zničić"
@ -1029,7 +1029,7 @@ msgid "Do not delete this notice"
msgstr "Tutu zdźělenku njewušmórnyć" msgstr "Tutu zdźělenku njewušmórnyć"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Tutu zdźělenku wušmórnyć" msgstr "Tutu zdźělenku wušmórnyć"
@ -2438,8 +2438,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Njeje podpěrany datowy format." msgstr "Njeje podpěrany datowy format."
@ -3273,7 +3273,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Sy tutu zdźělenku hižo wospjetował." msgstr "Sy tutu zdźělenku hižo wospjetował."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Wospjetowany" msgstr "Wospjetowany"
@ -4589,7 +4589,7 @@ msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5041,7 +5041,7 @@ msgid "Snapshots configuration"
msgstr "Konfiguracija wobrazowkowych fotow" msgstr "Konfiguracija wobrazowkowych fotow"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -5943,7 +5943,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "wot" msgstr "wot"
@ -6097,23 +6097,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Wospjetowany wot" msgstr "Wospjetowany wot"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Na tutu zdźělenku wotmołwić" msgstr "Na tutu zdźělenku wotmołwić"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Wotmołwić" msgstr "Wotmołwić"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Zdźělenka wospjetowana" msgstr "Zdźělenka wospjetowana"

View File

@ -9,11 +9,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:18+0000\n" "PO-Revision-Date: 2010-05-13 20:51:46+0000\n"
"Language-Team: Interlingua\n" "Language-Team: Interlingua\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n" "X-Language-Code: ia\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -94,10 +94,10 @@ msgstr "Pagina non existe."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -226,12 +226,12 @@ msgstr "Methodo API non trovate."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Iste methodo require un POST." msgstr "Iste methodo require un POST."
@ -263,7 +263,7 @@ msgstr "Non poteva salveguardar le profilo."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -322,20 +322,20 @@ msgstr "Messages directe a %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Tote le messages directe inviate a %s" msgstr "Tote le messages directe inviate a %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Message sin texto!" msgstr "Message sin texto!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Isto es troppo longe. Le maximo es %d characteres." msgstr "Isto es troppo longe. Le maximo es %d characteres."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Usator destinatario non trovate." msgstr "Usator destinatario non trovate."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "Non pote inviar messages directe a usatores que non es tu amicos." msgstr "Non pote inviar messages directe a usatores que non es tu amicos."
@ -652,18 +652,18 @@ msgstr "Stato delite."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Nulle stato trovate con iste ID." msgstr "Nulle stato trovate con iste ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
"Isto es troppo longe. Le longitude maximal del notas es %d characteres." "Isto es troppo longe. Le longitude maximal del notas es %d characteres."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Non trovate." msgstr "Non trovate."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -778,7 +778,7 @@ msgid "Preview"
msgstr "Previsualisation" msgstr "Previsualisation"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Deler" msgstr "Deler"
@ -1059,7 +1059,7 @@ msgid "Do not delete this notice"
msgstr "Non deler iste nota" msgstr "Non deler iste nota"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Deler iste nota" msgstr "Deler iste nota"
@ -2557,8 +2557,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Solmente le URLs %s es permittite super HTTP simple." msgstr "Solmente le URLs %s es permittite super HTTP simple."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Formato de datos non supportate." msgstr "Formato de datos non supportate."
@ -3445,7 +3445,7 @@ msgstr "Tu non pote repeter tu proprie nota."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Tu ha ja repetite iste nota." msgstr "Tu ha ja repetite iste nota."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Repetite" msgstr "Repetite"
@ -4857,7 +4857,7 @@ msgstr "Problema salveguardar le cassa de entrata del gruppo."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5317,7 +5317,7 @@ msgid "Snapshots configuration"
msgstr "Configuration del instantaneos" msgstr "Configuration del instantaneos"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"Le ressource de API require accesso pro lectura e scriptura, ma tu ha " "Le ressource de API require accesso pro lectura e scriptura, ma tu ha "
@ -6366,7 +6366,7 @@ msgstr ""
"altere usatores in conversation. Altere personas pote inviar te messages que " "altere usatores in conversation. Altere personas pote inviar te messages que "
"solmente tu pote leger." "solmente tu pote leger."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -6526,23 +6526,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "a" msgstr "a"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "in contexto" msgstr "in contexto"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetite per" msgstr "Repetite per"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a iste nota" msgstr "Responder a iste nota"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nota repetite" msgstr "Nota repetite"

View File

@ -9,11 +9,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:21+0000\n" "PO-Revision-Date: 2010-05-13 20:51:50+0000\n"
"Language-Team: Icelandic\n" "Language-Team: Icelandic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: is\n" "X-Language-Code: is\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -104,10 +104,10 @@ msgstr "Ekkert þannig merki."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -229,12 +229,12 @@ msgstr "Aðferð í forritsskilum fannst ekki!"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Þessi aðferð krefst POST." msgstr "Þessi aðferð krefst POST."
@ -266,7 +266,7 @@ msgstr "Gat ekki vistað persónulega síðu."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -325,20 +325,20 @@ msgstr "Bein skilaboð til %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Öll bein skilaboð til %s" msgstr "Öll bein skilaboð til %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Enginn texti í skilaboðum!" msgstr "Enginn texti í skilaboðum!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Þetta er of langt. Hámarkslengd skilaboða er 140 tákn." msgstr "Þetta er of langt. Hámarkslengd skilaboða er 140 tákn."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Móttakandi fannst ekki." msgstr "Móttakandi fannst ekki."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "Gat ekki sent bein skilaboð til notenda sem eru ekki vinir þínir." msgstr "Gat ekki sent bein skilaboð til notenda sem eru ekki vinir þínir."
@ -662,17 +662,17 @@ msgstr ""
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Engin staða með þessu kenni fannst." msgstr "Engin staða með þessu kenni fannst."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn." msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Fannst ekki." msgstr "Fannst ekki."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -785,7 +785,7 @@ msgid "Preview"
msgstr "Forsýn" msgstr "Forsýn"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Eyða" msgstr "Eyða"
@ -1072,7 +1072,7 @@ msgid "Do not delete this notice"
msgstr "" msgstr ""
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eyða þessu babli" msgstr "Eyða þessu babli"
@ -2603,8 +2603,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Enginn stuðningur við gagnasnið." msgstr "Enginn stuðningur við gagnasnið."
@ -3503,7 +3503,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Þú hefur nú þegar lokað á þennan notanda." msgstr "Þú hefur nú þegar lokað á þennan notanda."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Í sviðsljósinu" msgstr "Í sviðsljósinu"
@ -4899,7 +4899,7 @@ msgstr "Vandamál komu upp við að vista babl."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -5396,7 +5396,7 @@ msgid "Snapshots configuration"
msgstr "SMS staðfesting" msgstr "SMS staðfesting"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6325,7 +6325,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "frá" msgstr "frá"
@ -6485,24 +6485,24 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Í sviðsljósinu" msgstr "Í sviðsljósinu"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svara þessu babli" msgstr "Svara þessu babli"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Svara" msgstr "Svara"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Babl sent inn" msgstr "Babl sent inn"

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:25+0000\n" "PO-Revision-Date: 2010-05-13 20:51:54+0000\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n" "X-Language-Code: it\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -97,10 +97,10 @@ msgstr "Pagina inesistente."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -230,12 +230,12 @@ msgstr "Metodo delle API non trovato."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Questo metodo richiede POST." msgstr "Questo metodo richiede POST."
@ -267,7 +267,7 @@ msgstr "Impossibile salvare il profilo."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -326,20 +326,20 @@ msgstr "Messaggi diretti a %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Tutti i messaggi diretti inviati a %s" msgstr "Tutti i messaggi diretti inviati a %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Nessun testo nel messaggio!" msgstr "Nessun testo nel messaggio!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Troppo lungo. La dimensione massima di un messaggio è di %d caratteri." msgstr "Troppo lungo. La dimensione massima di un messaggio è di %d caratteri."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Destinatario non trovato." msgstr "Destinatario non trovato."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "Non puoi inviare messaggi diretti a utenti che non sono tuoi amici." msgstr "Non puoi inviare messaggi diretti a utenti che non sono tuoi amici."
@ -656,17 +656,17 @@ msgstr "Messaggio eliminato."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Nessuno stato trovato con quel ID." msgstr "Nessuno stato trovato con quel ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Troppo lungo. Lunghezza massima %d caratteri." msgstr "Troppo lungo. Lunghezza massima %d caratteri."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Non trovato." msgstr "Non trovato."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -779,7 +779,7 @@ msgid "Preview"
msgstr "Anteprima" msgstr "Anteprima"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Elimina"
@ -1059,7 +1059,7 @@ msgid "Do not delete this notice"
msgstr "Non eliminare il messaggio" msgstr "Non eliminare il messaggio"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Elimina questo messaggio" msgstr "Elimina questo messaggio"
@ -2555,8 +2555,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Solo URL %s attraverso HTTP semplice." msgstr "Solo URL %s attraverso HTTP semplice."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Non è un formato di dati supportato." msgstr "Non è un formato di dati supportato."
@ -3445,7 +3445,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Hai già ripetuto quel messaggio." msgstr "Hai già ripetuto quel messaggio."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Ripetuti" msgstr "Ripetuti"
@ -4857,7 +4857,7 @@ msgstr "Problema nel salvare la casella della posta del gruppo."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5319,7 +5319,7 @@ msgid "Snapshots configuration"
msgstr "Configurazione snapshot" msgstr "Configurazione snapshot"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"Le risorse API richiedono accesso lettura-scrittura, ma si dispone del solo " "Le risorse API richiedono accesso lettura-scrittura, ma si dispone del solo "
@ -6373,7 +6373,7 @@ msgstr ""
"iniziare una conversazione con altri utenti. Altre persone possono mandare " "iniziare una conversazione con altri utenti. Altre persone possono mandare "
"messaggi riservati solamente a te." "messaggi riservati solamente a te."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "via" msgstr "via"
@ -6532,23 +6532,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "presso" msgstr "presso"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "in una discussione" msgstr "in una discussione"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Ripetuto da" msgstr "Ripetuto da"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Rispondi a questo messaggio" msgstr "Rispondi a questo messaggio"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Rispondi" msgstr "Rispondi"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Messaggio ripetuto" msgstr "Messaggio ripetuto"

View File

@ -11,11 +11,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:28+0000\n" "PO-Revision-Date: 2010-05-13 20:51:57+0000\n"
"Language-Team: Japanese\n" "Language-Team: Japanese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ja\n" "X-Language-Code: ja\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -99,10 +99,10 @@ msgstr "そのようなページはありません。"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -229,12 +229,12 @@ msgstr "API メソッドが見つかりません。"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "このメソッドには POST が必要です。" msgstr "このメソッドには POST が必要です。"
@ -267,7 +267,7 @@ msgstr "プロフィールを保存できませんでした。"
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -326,20 +326,20 @@ msgstr "%s へのダイレクトメッセージ"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "%s へ送った全てのダイレクトメッセージ" msgstr "%s へ送った全てのダイレクトメッセージ"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "メッセージの本文がありません!" msgstr "メッセージの本文がありません!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "長すぎます。メッセージは最大 %d 字までです。" msgstr "長すぎます。メッセージは最大 %d 字までです。"
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "受け取り手のユーザが見つかりません。" msgstr "受け取り手のユーザが見つかりません。"
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "友人でないユーザにダイレクトメッセージを送ることはできません。" msgstr "友人でないユーザにダイレクトメッセージを送ることはできません。"
@ -654,17 +654,17 @@ msgstr "ステータスを削除しました。"
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "そのIDでのステータスはありません。" msgstr "そのIDでのステータスはありません。"
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "長すぎます。つぶやきは最大 140 字までです。" msgstr "長すぎます。つぶやきは最大 140 字までです。"
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "見つかりません。" msgstr "見つかりません。"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "つぶやきは URL を含めて最大 %d 字までです。" msgstr "つぶやきは URL を含めて最大 %d 字までです。"
@ -775,7 +775,7 @@ msgid "Preview"
msgstr "プレビュー" msgstr "プレビュー"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "削除" msgstr "削除"
@ -1060,7 +1060,7 @@ msgid "Do not delete this notice"
msgstr "このつぶやきを削除できません。" msgstr "このつぶやきを削除できません。"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "このつぶやきを削除" msgstr "このつぶやきを削除"
@ -2576,8 +2576,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "サポートされていないデータ形式。" msgstr "サポートされていないデータ形式。"
@ -3463,7 +3463,7 @@ msgstr "自分のつぶやきは繰り返せません。"
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "すでにそのつぶやきを繰り返しています。" msgstr "すでにそのつぶやきを繰り返しています。"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "繰り返された" msgstr "繰り返された"
@ -4890,7 +4890,7 @@ msgstr "グループ受信箱を保存する際に問題が発生しました。
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5371,7 +5371,7 @@ msgid "Snapshots configuration"
msgstr "パス設定" msgstr "パス設定"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"APIリソースは読み書きアクセスが必要です、しかしあなたは読みアクセスしか持って" "APIリソースは読み書きアクセスが必要です、しかしあなたは読みアクセスしか持って"
@ -6354,7 +6354,7 @@ msgstr ""
"に引き込むプライベートメッセージを送ることができます。人々はあなただけへの" "に引き込むプライベートメッセージを送ることができます。人々はあなただけへの"
"メッセージを送ることができます。" "メッセージを送ることができます。"
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "from" msgstr "from"
@ -6521,23 +6521,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "at" msgstr "at"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "" msgstr ""
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "このつぶやきへ返信" msgstr "このつぶやきへ返信"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "返信" msgstr "返信"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "つぶやきを繰り返しました" msgstr "つぶやきを繰り返しました"

View File

@ -9,11 +9,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:31+0000\n" "PO-Revision-Date: 2010-05-13 20:52:00+0000\n"
"Language-Team: Korean\n" "Language-Team: Korean\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ko\n" "X-Language-Code: ko\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -94,10 +94,10 @@ msgstr "해당하는 페이지 없음"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -220,12 +220,12 @@ msgstr "API 메서드 발견 안 됨."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "이 메서드는 POST를 요구합니다." msgstr "이 메서드는 POST를 요구합니다."
@ -255,7 +255,7 @@ msgstr "프로필을 저장 할 수 없습니다."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -314,20 +314,20 @@ msgstr "%s에게 직접 메시지"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "%s에게 모든 직접 메시지" msgstr "%s에게 모든 직접 메시지"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "메시지 내용이 없습니다!" msgstr "메시지 내용이 없습니다!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "너무 깁니다. 최대 메시지 길이는 %d 자까지입니다." msgstr "너무 깁니다. 최대 메시지 길이는 %d 자까지입니다."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "받는 사용자가 없습니다." msgstr "받는 사용자가 없습니다."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다." msgstr "당신의 친구가 아닌 사용자에게 직접 메시지를 보낼 수 없습니다."
@ -644,17 +644,17 @@ msgstr "삭제된 소식입니다."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "발견된 ID의 상태가 없습니다." msgstr "발견된 ID의 상태가 없습니다."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "너무 깁니다. 통지의 최대 길이는 %d 글자 입니다." msgstr "너무 깁니다. 통지의 최대 길이는 %d 글자 입니다."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "찾을 수가 없습니다." msgstr "찾을 수가 없습니다."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "소식의 최대 길이는 첨부 URL을 포함하여 %d 글자입니다." msgstr "소식의 최대 길이는 첨부 URL을 포함하여 %d 글자입니다."
@ -766,7 +766,7 @@ msgid "Preview"
msgstr "미리보기" msgstr "미리보기"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "삭제" msgstr "삭제"
@ -1054,7 +1054,7 @@ msgid "Do not delete this notice"
msgstr "이 통지를 지울 수 없습니다." msgstr "이 통지를 지울 수 없습니다."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "이 게시글 삭제하기" msgstr "이 게시글 삭제하기"
@ -2572,8 +2572,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "지원하는 형식의 데이터가 아닙니다." msgstr "지원하는 형식의 데이터가 아닙니다."
@ -3467,7 +3467,7 @@ msgstr "자신의 글은 재전송할 수 없습니다."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "당신은 이미 이 사용자를 차단하고 있습니다." msgstr "당신은 이미 이 사용자를 차단하고 있습니다."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "재전송됨" msgstr "재전송됨"
@ -4871,7 +4871,7 @@ msgstr "통지를 저장하는데 문제가 발생했습니다."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -5367,7 +5367,7 @@ msgid "Snapshots configuration"
msgstr "SMS 인증" msgstr "SMS 인증"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6293,7 +6293,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "다음에서:" msgstr "다음에서:"
@ -6453,25 +6453,25 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "내용이 없습니다!" msgstr "내용이 없습니다!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "생성" msgstr "생성"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "이 게시글에 대해 답장하기" msgstr "이 게시글에 대해 답장하기"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "답장하기" msgstr "답장하기"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "게시글이 등록되었습니다." msgstr "게시글이 등록되었습니다."

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:38+0000\n" "PO-Revision-Date: 2010-05-13 20:52:17+0000\n"
"Language-Team: Macedonian\n" "Language-Team: Macedonian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n" "X-Language-Code: mk\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -97,10 +97,10 @@ msgstr "Нема таква страница."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -230,12 +230,12 @@ msgstr "API методот не е пронајден."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Овој метод бара POST." msgstr "Овој метод бара POST."
@ -267,7 +267,7 @@ msgstr "Не може да се зачува профил."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -326,20 +326,20 @@ msgstr "Директни пораки до %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Сите директни пораки испратени до %s" msgstr "Сите директни пораки испратени до %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Нема текст за пораката!" msgstr "Нема текст за пораката!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Ова е предолго. Максималната должина изнесува %d знаци." msgstr "Ова е предолго. Максималната должина изнесува %d знаци."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Примачот не е пронајден." msgstr "Примачот не е пронајден."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Неможете да испраќате директни пораки на корисници што не ви се пријатели." "Неможете да испраќате директни пораки на корисници што не ви се пријатели."
@ -656,17 +656,17 @@ msgstr "Статусот е избришан."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Нема пронајдено статус со тој ID." msgstr "Нема пронајдено статус со тој ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Ова е предолго. Максималната дозволена должина изнесува %d знаци." msgstr "Ова е предолго. Максималната дозволена должина изнесува %d знаци."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Не е пронајдено." msgstr "Не е пронајдено."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -781,7 +781,7 @@ msgid "Preview"
msgstr "Преглед" msgstr "Преглед"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Бриши" msgstr "Бриши"
@ -1063,7 +1063,7 @@ msgid "Do not delete this notice"
msgstr "Не ја бриши оваа забелешка" msgstr "Не ја бриши оваа забелешка"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Бриши ја оваа забелешка" msgstr "Бриши ја оваа забелешка"
@ -2565,8 +2565,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код." msgstr "Ве молиме користете само %s URL-адреси врз прост HTTP-код."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ова не е поддржан формат на податотека." msgstr "Ова не е поддржан формат на податотека."
@ -3459,7 +3459,7 @@ msgstr "Не можете да повторувате сопствена заб
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Веќе ја имате повторено таа забелешка." msgstr "Веќе ја имате повторено таа забелешка."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -4878,7 +4878,7 @@ msgstr "Проблем при зачувувањето на групното п
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5340,7 +5340,7 @@ msgid "Snapshots configuration"
msgstr "Поставки за снимки" msgstr "Поставки за снимки"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API-ресурсот бара да може и да чита и да запишува, а вие можете само да " "API-ресурсот бара да може и да чита и да запишува, а вие можете само да "
@ -6391,7 +6391,7 @@ msgstr ""
"впуштите во разговор со други корисници. Луѓето можат да ви испраќаат пораки " "впуштите во разговор со други корисници. Луѓето можат да ви испраќаат пораки "
"што ќе можете да ги видите само Вие." "што ќе можете да ги видите само Вие."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "од" msgstr "од"
@ -6553,23 +6553,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "во" msgstr "во"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "во контекст" msgstr "во контекст"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено од" msgstr "Повторено од"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Одговори на забелешкава" msgstr "Одговори на забелешкава"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Одговор" msgstr "Одговор"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Забелешката е повторена" msgstr "Забелешката е повторена"

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:41+0000\n" "PO-Revision-Date: 2010-05-13 20:52:20+0000\n"
"Language-Team: Norwegian (bokmål)\n" "Language-Team: Norwegian (bokmål)\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n" "X-Language-Code: no\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -95,10 +95,10 @@ msgstr "Ingen slik side."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "API-metode ikke funnet!"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Denne metoden krever en POST." msgstr "Denne metoden krever en POST."
@ -264,7 +264,7 @@ msgstr "Klarte ikke å lagre profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -324,20 +324,20 @@ msgstr "Direktemeldinger til %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Alle direktemeldinger sendt til %s" msgstr "Alle direktemeldinger sendt til %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Ingen meldingstekst!" msgstr "Ingen meldingstekst!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Dette er for langt. Meldingen kan bare være %d tegn lang." msgstr "Dette er for langt. Meldingen kan bare være %d tegn lang."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Fant ikke mottakeren." msgstr "Fant ikke mottakeren."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "Kan ikke sende direktemeldinger til brukere du ikke er venn med." msgstr "Kan ikke sende direktemeldinger til brukere du ikke er venn med."
@ -649,17 +649,17 @@ msgstr "Status slettet."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Ingen status med den ID-en funnet." msgstr "Ingen status med den ID-en funnet."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Det er for langt. Maks notisstørrelse er %d tegn." msgstr "Det er for langt. Maks notisstørrelse er %d tegn."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Ikke funnet." msgstr "Ikke funnet."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Maks notisstørrelse er %d tegn, inklusive vedleggs-URL." msgstr "Maks notisstørrelse er %d tegn, inklusive vedleggs-URL."
@ -770,7 +770,7 @@ msgid "Preview"
msgstr "Forhåndsvis" msgstr "Forhåndsvis"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Slett" msgstr "Slett"
@ -1051,7 +1051,7 @@ msgid "Do not delete this notice"
msgstr "Ikke slett denne notisen" msgstr "Ikke slett denne notisen"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Slett denne notisen" msgstr "Slett denne notisen"
@ -2531,8 +2531,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Bare %s-nettadresser over vanlig HTTP." msgstr "Bare %s-nettadresser over vanlig HTTP."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ikke et støttet dataformat." msgstr "Ikke et støttet dataformat."
@ -3418,7 +3418,7 @@ msgstr "Du kan ikke gjenta din egen notis."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du har allerede gjentatt den notisen." msgstr "Du har allerede gjentatt den notisen."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Gjentatt" msgstr "Gjentatt"
@ -4792,7 +4792,7 @@ msgstr "Problem ved lagring av gruppeinnboks."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5250,7 +5250,7 @@ msgid "Snapshots configuration"
msgstr "" msgstr ""
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6185,6 +6185,9 @@ msgid ""
"\n" "\n"
"\t%s" "\t%s"
msgstr "" msgstr ""
"Hele samtalen kan leses her:\n"
"\n"
"%s"
#: lib/mail.php:651 #: lib/mail.php:651
#, php-format #, php-format
@ -6255,7 +6258,7 @@ msgstr ""
"engasjere andre brukere i en samtale. Personer kan sende deg meldinger som " "engasjere andre brukere i en samtale. Personer kan sende deg meldinger som "
"bare du kan se." "bare du kan se."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "fra" msgstr "fra"
@ -6411,23 +6414,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "på" msgstr "på"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetert av" msgstr "Repetert av"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svar på denne notisen" msgstr "Svar på denne notisen"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Svar" msgstr "Svar"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notis repetert" msgstr "Notis repetert"

View File

@ -11,11 +11,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:47+0000\n" "PO-Revision-Date: 2010-05-13 20:52:27+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n" "X-Language-Code: nl\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -96,10 +96,10 @@ msgstr "Deze pagina bestaat niet."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -229,12 +229,12 @@ msgstr "De API-functie is niet aangetroffen."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Deze methode vereist een POST." msgstr "Deze methode vereist een POST."
@ -266,7 +266,7 @@ msgstr "Het was niet mogelijk het profiel op te slaan."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -325,20 +325,20 @@ msgstr "Privéberichten aan %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Alle privéberichten aan %s" msgstr "Alle privéberichten aan %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Het bericht is leeg!" msgstr "Het bericht is leeg!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Dat is te lang. De maximale berichtlengte is %d tekens." msgstr "Dat is te lang. De maximale berichtlengte is %d tekens."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "De ontvanger is niet aangetroffen." msgstr "De ontvanger is niet aangetroffen."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"U kunt geen privéberichten sturen aan gebruikers die niet op uw " "U kunt geen privéberichten sturen aan gebruikers die niet op uw "
@ -666,17 +666,17 @@ msgstr "De status is verwijderd."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Er is geen status gevonden met dit ID." msgstr "Er is geen status gevonden met dit ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "De mededeling is te lang. Gebruik maximaal %d tekens." msgstr "De mededeling is te lang. Gebruik maximaal %d tekens."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Niet aangetroffen." msgstr "Niet aangetroffen."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -790,7 +790,7 @@ msgid "Preview"
msgstr "Voorvertoning" msgstr "Voorvertoning"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Verwijderen" msgstr "Verwijderen"
@ -1072,7 +1072,7 @@ msgid "Do not delete this notice"
msgstr "Deze mededeling niet verwijderen" msgstr "Deze mededeling niet verwijderen"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Deze mededeling verwijderen" msgstr "Deze mededeling verwijderen"
@ -2587,8 +2587,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Alleen URL's voor %s via normale HTTP alstublieft." msgstr "Alleen URL's voor %s via normale HTTP alstublieft."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Geen ondersteund gegevensformaat." msgstr "Geen ondersteund gegevensformaat."
@ -3484,7 +3484,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "U hent die mededeling al herhaald." msgstr "U hent die mededeling al herhaald."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Herhaald" msgstr "Herhaald"
@ -4920,7 +4920,7 @@ msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5383,7 +5383,7 @@ msgid "Snapshots configuration"
msgstr "Snapshotinstellingen" msgstr "Snapshotinstellingen"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen " "Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen "
@ -6443,7 +6443,7 @@ msgstr ""
"U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere "
"gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "van" msgstr "van"
@ -6605,23 +6605,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "op" msgstr "op"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "in context" msgstr "in context"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Herhaald door" msgstr "Herhaald door"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Op deze mededeling antwoorden" msgstr "Op deze mededeling antwoorden"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Antwoorden" msgstr "Antwoorden"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Mededeling herhaald" msgstr "Mededeling herhaald"

View File

@ -9,11 +9,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:44+0000\n" "PO-Revision-Date: 2010-05-13 20:52:24+0000\n"
"Language-Team: Norwegian Nynorsk\n" "Language-Team: Norwegian Nynorsk\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nn\n" "X-Language-Code: nn\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -103,10 +103,10 @@ msgstr "Dette emneord finst ikkje."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -229,12 +229,12 @@ msgstr "Fann ikkje API-metode."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Dette krev ein POST." msgstr "Dette krev ein POST."
@ -266,7 +266,7 @@ msgstr "Kan ikkje lagra profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -326,20 +326,20 @@ msgstr "Direkte meldingar til %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Alle direkte meldingar sendt til %s" msgstr "Alle direkte meldingar sendt til %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Inga meldingstekst!" msgstr "Inga meldingstekst!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Det er for langt. Ein notis kan berre være 140 teikn." msgstr "Det er for langt. Ein notis kan berre være 140 teikn."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Kunne ikkje finne mottakar." msgstr "Kunne ikkje finne mottakar."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med." msgstr "Kan ikkje senda direktemeldingar til brukarar som du ikkje er ven med."
@ -665,17 +665,17 @@ msgstr "Lasta opp brukarbilete."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Fann ingen status med den ID-en." msgstr "Fann ingen status med den ID-en."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn." msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Finst ikkje." msgstr "Finst ikkje."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -789,7 +789,7 @@ msgid "Preview"
msgstr "Forhandsvis" msgstr "Forhandsvis"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Slett" msgstr "Slett"
@ -1082,7 +1082,7 @@ msgid "Do not delete this notice"
msgstr "Kan ikkje sletta notisen." msgstr "Kan ikkje sletta notisen."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Slett denne notisen" msgstr "Slett denne notisen"
@ -2625,8 +2625,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ikkje eit støtta dataformat." msgstr "Ikkje eit støtta dataformat."
@ -3527,7 +3527,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du har allereie blokkert denne brukaren." msgstr "Du har allereie blokkert denne brukaren."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Lag" msgstr "Lag"
@ -4938,7 +4938,7 @@ msgstr "Eit problem oppstod ved lagring av notis."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -5436,7 +5436,7 @@ msgid "Snapshots configuration"
msgstr "SMS bekreftelse" msgstr "SMS bekreftelse"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6371,7 +6371,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " frå " msgstr " frå "
@ -6531,25 +6531,25 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Ingen innhald." msgstr "Ingen innhald."
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Lag" msgstr "Lag"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svar på denne notisen" msgstr "Svar på denne notisen"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Svar" msgstr "Svar"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Melding lagra" msgstr "Melding lagra"

View File

@ -12,7 +12,7 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:50+0000\n" "PO-Revision-Date: 2010-05-13 20:52:30+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <pl@li.org>\n" "Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n" "|| n%100>=20) ? 1 : 2);\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n" "X-Language-Code: pl\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -100,10 +100,10 @@ msgstr "Nie ma takiej strony."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -233,12 +233,12 @@ msgstr "Nie odnaleziono metody API."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Ta metoda wymaga POST." msgstr "Ta metoda wymaga POST."
@ -269,7 +269,7 @@ msgstr "Nie można zapisać profilu."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -328,20 +328,20 @@ msgstr "Bezpośrednia wiadomość do użytkownika %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Brak tekstu wiadomości." msgstr "Brak tekstu wiadomości."
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków." msgstr "Wiadomość jest za długa. Maksymalna długość wynosi %d znaków."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Nie odnaleziono odbiorcy." msgstr "Nie odnaleziono odbiorcy."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są " "Nie można wysłać bezpośredniej wiadomości do użytkowników, którzy nie są "
@ -657,17 +657,17 @@ msgstr "Usunięto stan."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Nie odnaleziono stanów z tym identyfikatorem." msgstr "Nie odnaleziono stanów z tym identyfikatorem."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Wpis jest za długi. Maksymalna długość wynosi %d znaków." msgstr "Wpis jest za długi. Maksymalna długość wynosi %d znaków."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Nie odnaleziono." msgstr "Nie odnaleziono."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika." msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika."
@ -778,7 +778,7 @@ msgid "Preview"
msgstr "Podgląd" msgstr "Podgląd"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Usuń" msgstr "Usuń"
@ -1058,7 +1058,7 @@ msgid "Do not delete this notice"
msgstr "Nie usuwaj tego wpisu" msgstr "Nie usuwaj tego wpisu"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Usuń ten wpis" msgstr "Usuń ten wpis"
@ -2546,8 +2546,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP." msgstr "Dozwolone są tylko adresy URL %s przez zwykły protokół HTTP."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "To nie jest obsługiwany format danych." msgstr "To nie jest obsługiwany format danych."
@ -3434,7 +3434,7 @@ msgstr "Nie można powtórzyć własnego wpisu."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Już powtórzono ten wpis." msgstr "Już powtórzono ten wpis."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Powtórzono" msgstr "Powtórzono"
@ -4851,7 +4851,7 @@ msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5314,7 +5314,7 @@ msgid "Snapshots configuration"
msgstr "Konfiguracja migawek" msgstr "Konfiguracja migawek"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko " "Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko "
@ -6369,7 +6369,7 @@ msgstr ""
"rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla "
"twoich oczu." "twoich oczu."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "z" msgstr "z"
@ -6526,23 +6526,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "w" msgstr "w"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "w rozmowie" msgstr "w rozmowie"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Powtórzone przez" msgstr "Powtórzone przez"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Odpowiedz na ten wpis" msgstr "Odpowiedz na ten wpis"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Odpowiedz" msgstr "Odpowiedz"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Powtórzono wpis" msgstr "Powtórzono wpis"

View File

@ -11,11 +11,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:53+0000\n" "PO-Revision-Date: 2010-05-13 20:52:36+0000\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n" "X-Language-Code: pt\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -96,10 +96,10 @@ msgstr "Página não foi encontrada."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "Método da API não encontrado."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Este método requer um POST." msgstr "Este método requer um POST."
@ -263,7 +263,7 @@ msgstr "Não foi possível gravar o perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -322,20 +322,20 @@ msgstr "Mensagens directas para %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Todas as mensagens directas enviadas para %s" msgstr "Todas as mensagens directas enviadas para %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Mensagem não tem texto!" msgstr "Mensagem não tem texto!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Demasiado longo. Tamanho máx. das mensagens é %d caracteres." msgstr "Demasiado longo. Tamanho máx. das mensagens é %d caracteres."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Destinatário não encontrado." msgstr "Destinatário não encontrado."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Não pode enviar mensagens directas a utilizadores que não sejam amigos." "Não pode enviar mensagens directas a utilizadores que não sejam amigos."
@ -649,17 +649,17 @@ msgstr "Estado apagado."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Não foi encontrado um estado com esse ID." msgstr "Não foi encontrado um estado com esse ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Demasiado longo. Tamanho máx. das notas é %d caracteres." msgstr "Demasiado longo. Tamanho máx. das notas é %d caracteres."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Não encontrado." msgstr "Não encontrado."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo." msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo."
@ -770,7 +770,7 @@ msgid "Preview"
msgstr "Antevisão" msgstr "Antevisão"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Apagar" msgstr "Apagar"
@ -1051,7 +1051,7 @@ msgid "Do not delete this notice"
msgstr "Não apagar esta nota" msgstr "Não apagar esta nota"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Apagar esta nota" msgstr "Apagar esta nota"
@ -2546,8 +2546,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Só URLs %s sobre HTTP simples, por favor." msgstr "Só URLs %s sobre HTTP simples, por favor."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Formato de dados não suportado." msgstr "Formato de dados não suportado."
@ -3437,7 +3437,7 @@ msgstr "Não pode repetir a sua própria nota."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Já repetiu essa nota." msgstr "Já repetiu essa nota."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Repetida" msgstr "Repetida"
@ -4849,7 +4849,7 @@ msgstr "Problema na gravação da caixa de entrada do grupo."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5314,7 +5314,7 @@ msgid "Snapshots configuration"
msgstr "Configuração dos instântaneos" msgstr "Configuração dos instântaneos"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura." msgstr "API requer acesso de leitura e escrita, mas só tem acesso de leitura."
@ -6359,7 +6359,7 @@ msgstr ""
"conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que "
"só você terá acesso." "só você terá acesso."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -6519,23 +6519,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "coords." msgstr "coords."
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "no contexto" msgstr "no contexto"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetida por" msgstr "Repetida por"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a esta nota" msgstr "Responder a esta nota"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nota repetida" msgstr "Nota repetida"

View File

@ -12,12 +12,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-05-09 17:09+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:56+0000\n" "PO-Revision-Date: 2010-05-13 20:52:39+0000\n"
"Language-Team: Brazilian Portuguese\n" "Language-Team: Brazilian Portuguese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n" "X-Language-Code: pt-br\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -98,10 +98,10 @@ msgstr "Esta página não existe."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -231,12 +231,12 @@ msgstr "O método da API não foi encontrado!"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Este método requer um POST." msgstr "Este método requer um POST."
@ -268,7 +268,7 @@ msgstr "Não foi possível salvar o perfil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -327,20 +327,20 @@ msgstr "Mensagens diretas para %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Todas as mensagens diretas enviadas para %s" msgstr "Todas as mensagens diretas enviadas para %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Nenhuma mensagem de texto!" msgstr "Nenhuma mensagem de texto!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres." msgstr "Isso é muito extenso. O tamanho máximo das mensagens é %d caracteres."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "O usuário destinatário não foi encontrado." msgstr "O usuário destinatário não foi encontrado."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Não é possível enviar mensagens diretas para usuários que não sejam seus " "Não é possível enviar mensagens diretas para usuários que não sejam seus "
@ -662,17 +662,17 @@ msgstr "A mensagem foi excluída."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Não foi encontrada nenhuma mensagem com esse ID." msgstr "Não foi encontrada nenhuma mensagem com esse ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Está muito extenso. O tamanho máximo é de %s caracteres." msgstr "Está muito extenso. O tamanho máximo é de %s caracteres."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Não encontrado." msgstr "Não encontrado."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "O tamanho máximo da mensagem é de %s caracteres" msgstr "O tamanho máximo da mensagem é de %s caracteres"
@ -784,7 +784,7 @@ msgid "Preview"
msgstr "Visualização" msgstr "Visualização"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Excluir" msgstr "Excluir"
@ -1066,7 +1066,7 @@ msgid "Do not delete this notice"
msgstr "Não excluir esta mensagem." msgstr "Não excluir esta mensagem."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Excluir esta mensagem" msgstr "Excluir esta mensagem"
@ -2552,9 +2552,8 @@ msgstr ""
"aplicações " "aplicações "
#: actions/oembed.php:79 actions/shownotice.php:100 #: actions/oembed.php:79 actions/shownotice.php:100
#, fuzzy
msgid "Notice has no profile." msgid "Notice has no profile."
msgstr "A mensagem não está associada a nenhum perfil" msgstr "A mensagem não está associada a nenhum perfil."
#: actions/oembed.php:86 actions/shownotice.php:175 #: actions/oembed.php:86 actions/shownotice.php:175
#, php-format #, php-format
@ -2563,19 +2562,19 @@ msgstr "Mensagem de %1$s no %2$s"
#. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png') #. TRANS: Error message displaying attachments. %s is a raw MIME type (eg 'image/png')
#: actions/oembed.php:158 #: actions/oembed.php:158
#, fuzzy, php-format #, php-format
msgid "Content type %s not supported." msgid "Content type %s not supported."
msgstr "tipo de conteúdo " msgstr "O tipo de conteúdo %s não é suportado."
#. TRANS: Error message displaying attachments. %s is the site's base URL. #. TRANS: Error message displaying attachments. %s is the site's base URL.
#: actions/oembed.php:162 #: actions/oembed.php:162
#, php-format #, php-format
msgid "Only %s URLs over plain HTTP please." msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr "Por favor, somente URLs %s sobre HTTP puro."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Não é um formato de dados suportado." msgstr "Não é um formato de dados suportado."
@ -2726,24 +2725,24 @@ msgid "Path and server settings for this StatusNet site."
msgstr "Configurações dos caminhos e do servidor para este site StatusNet." msgstr "Configurações dos caminhos e do servidor para este site StatusNet."
#: actions/pathsadminpanel.php:157 #: actions/pathsadminpanel.php:157
#, fuzzy, php-format #, php-format
msgid "Theme directory not readable: %s." msgid "Theme directory not readable: %s."
msgstr "Sem permissão de leitura no diretório de temas: %s" msgstr "Sem permissão de leitura no diretório de temas: %s."
#: actions/pathsadminpanel.php:163 #: actions/pathsadminpanel.php:163
#, fuzzy, php-format #, php-format
msgid "Avatar directory not writable: %s." msgid "Avatar directory not writable: %s."
msgstr "Sem permissão de escrita no diretório de avatares: %s" msgstr "Sem permissão de escrita no diretório de avatares: %s."
#: actions/pathsadminpanel.php:169 #: actions/pathsadminpanel.php:169
#, fuzzy, php-format #, php-format
msgid "Background directory not writable: %s." msgid "Background directory not writable: %s."
msgstr "Sem permissão de escrita no diretório de imagens de fundo: %s" msgstr "Sem permissão de escrita no diretório de imagens de fundo: %s."
#: actions/pathsadminpanel.php:177 #: actions/pathsadminpanel.php:177
#, fuzzy, php-format #, php-format
msgid "Locales directory not readable: %s." msgid "Locales directory not readable: %s."
msgstr "Sem permissão de leitura no diretório de locales: %s" msgstr "Sem permissão de leitura no diretório de locales: %s."
#: actions/pathsadminpanel.php:183 #: actions/pathsadminpanel.php:183
msgid "Invalid SSL server. The maximum length is 255 characters." msgid "Invalid SSL server. The maximum length is 255 characters."
@ -2884,9 +2883,9 @@ msgid "People search"
msgstr "Procurar pessoas" msgstr "Procurar pessoas"
#: actions/peopletag.php:68 #: actions/peopletag.php:68
#, fuzzy, php-format #, php-format
msgid "Not a valid people tag: %s." msgid "Not a valid people tag: %s."
msgstr "Não é uma etiqueta de pessoa válida: %s" msgstr "Não é uma etiqueta de pessoa válida: %s."
#: actions/peopletag.php:142 #: actions/peopletag.php:142
#, php-format #, php-format
@ -2894,9 +2893,8 @@ msgid "Users self-tagged with %1$s - page %2$d"
msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d"
#: actions/postnotice.php:95 #: actions/postnotice.php:95
#, fuzzy
msgid "Invalid notice content." msgid "Invalid notice content."
msgstr "O conteúdo da mensagem é inválido" msgstr "O conteúdo da mensagem é inválido."
#: actions/postnotice.php:101 #: actions/postnotice.php:101
#, php-format #, php-format
@ -3042,9 +3040,9 @@ msgid "Settings saved."
msgstr "As configurações foram salvas." msgstr "As configurações foram salvas."
#: actions/public.php:83 #: actions/public.php:83
#, fuzzy, php-format #, php-format
msgid "Beyond the page limit (%s)." msgid "Beyond the page limit (%s)."
msgstr "Além do limite da página (%s)" msgstr "Além do limite da página (%s)."
#: actions/public.php:92 #: actions/public.php:92
msgid "Could not retrieve public stream." msgid "Could not retrieve public stream."
@ -3309,7 +3307,6 @@ msgid "Invalid username or password."
msgstr "Nome de usuário e/ou senha inválido(s)" msgstr "Nome de usuário e/ou senha inválido(s)"
#: actions/register.php:343 #: actions/register.php:343
#, fuzzy
msgid "" msgid ""
"With this form you can create a new account. You can then post notices and " "With this form you can create a new account. You can then post notices and "
"link up to friends and colleagues. " "link up to friends and colleagues. "
@ -3345,12 +3342,13 @@ msgid "Longer name, preferably your \"real\" name"
msgstr "Nome completo, de preferência seu nome \"real\"" msgstr "Nome completo, de preferência seu nome \"real\""
#: actions/register.php:494 #: actions/register.php:494
#, fuzzy, php-format #, php-format
msgid "" msgid ""
"My text and files are available under %s except this private data: password, " "My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number." "email address, IM address, and phone number."
msgstr "" msgstr ""
" exceto estes dados particulares: senha, endereço de e-mail, endereço de MI " "Meus textos e arquivos estão disponíveis sob a %s, exceto estes dados "
"particulares: senha, endereço de e-mail, endereço do mensageiro instantâneo "
"e número de telefone." "e número de telefone."
#: actions/register.php:542 #: actions/register.php:542
@ -3468,7 +3466,7 @@ msgstr "Você não pode repetir sua própria mensagem."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Você já repetiu essa mensagem." msgstr "Você já repetiu essa mensagem."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Repetida" msgstr "Repetida"
@ -3971,7 +3969,6 @@ msgid "Minimum text limit is 0 (unlimited)."
msgstr "O valor mínimo para o limite de texto é 0 (sem limites)." msgstr "O valor mínimo para o limite de texto é 0 (sem limites)."
#: actions/siteadminpanel.php:171 #: actions/siteadminpanel.php:171
#, fuzzy
msgid "Dupe limit must be one or more seconds." msgid "Dupe limit must be one or more seconds."
msgstr "O limite de duplicatas deve ser de um ou mais segundos." msgstr "O limite de duplicatas deve ser de um ou mais segundos."
@ -4064,7 +4061,6 @@ msgid "Unable to save site notice."
msgstr "Não foi possível salvar os avisos do site." msgstr "Não foi possível salvar os avisos do site."
#: actions/sitenoticeadminpanel.php:113 #: actions/sitenoticeadminpanel.php:113
#, fuzzy
msgid "Max length for the site-wide notice is 255 chars." msgid "Max length for the site-wide notice is 255 chars."
msgstr "O tamanho máximo para os avisos é de 255 caracteres." msgstr "O tamanho máximo para os avisos é de 255 caracteres."
@ -4099,9 +4095,8 @@ msgstr "SMS não está disponível."
#. TRANS: Form legend for SMS settings form. #. TRANS: Form legend for SMS settings form.
#: actions/smssettings.php:111 #: actions/smssettings.php:111
#, fuzzy
msgid "SMS address" msgid "SMS address"
msgstr "Endereço do MI" msgstr "Endereço de SMS"
#. TRANS: Form guide in SMS settings form. #. TRANS: Form guide in SMS settings form.
#: actions/smssettings.php:120 #: actions/smssettings.php:120
@ -4125,7 +4120,6 @@ msgstr "Informe o código que você recebeu no seu telefone."
#. TRANS: Button label to confirm SMS confirmation code in SMS settings. #. TRANS: Button label to confirm SMS confirmation code in SMS settings.
#: actions/smssettings.php:148 #: actions/smssettings.php:148
#, fuzzy
msgctxt "BUTTON" msgctxt "BUTTON"
msgid "Confirm" msgid "Confirm"
msgstr "Confirmar" msgstr "Confirmar"
@ -4142,9 +4136,8 @@ msgstr "Número de telefone, sem pontuação ou espaços, com código de área"
#. TRANS: Form legend for SMS preferences form. #. TRANS: Form legend for SMS preferences form.
#: actions/smssettings.php:195 #: actions/smssettings.php:195
#, fuzzy
msgid "SMS preferences" msgid "SMS preferences"
msgstr "Preferências" msgstr "Preferências do SMS"
#. TRANS: Checkbox label in SMS preferences form. #. TRANS: Checkbox label in SMS preferences form.
#: actions/smssettings.php:201 #: actions/smssettings.php:201
@ -4157,9 +4150,8 @@ msgstr ""
#. TRANS: Confirmation message for successful SMS preferences save. #. TRANS: Confirmation message for successful SMS preferences save.
#: actions/smssettings.php:315 #: actions/smssettings.php:315
#, fuzzy
msgid "SMS preferences saved." msgid "SMS preferences saved."
msgstr "As preferências foram salvas." msgstr "As preferências do SMS foram salvas."
#. TRANS: Message given saving SMS phone number without having provided one. #. TRANS: Message given saving SMS phone number without having provided one.
#: actions/smssettings.php:338 #: actions/smssettings.php:338
@ -4197,9 +4189,8 @@ msgstr "Isso é um número de confirmação errado."
#. TRANS: Message given after successfully canceling SMS phone number confirmation. #. TRANS: Message given after successfully canceling SMS phone number confirmation.
#: actions/smssettings.php:427 #: actions/smssettings.php:427
#, fuzzy
msgid "SMS confirmation cancelled." msgid "SMS confirmation cancelled."
msgstr "A confirmação foi cancelada." msgstr "A confirmação do SMS foi cancelada."
#. TRANS: Message given trying to remove an SMS phone number that is not #. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user. #. TRANS: registered for the active user.
@ -4209,9 +4200,8 @@ msgstr "Esse não é seu número de telefone."
#. TRANS: Message given after successfully removing a registered SMS phone number. #. TRANS: Message given after successfully removing a registered SMS phone number.
#: actions/smssettings.php:470 #: actions/smssettings.php:470
#, fuzzy
msgid "The SMS phone number was removed." msgid "The SMS phone number was removed."
msgstr "Telefone para SMS" msgstr "O número de telefone para SMS foi removido."
#. TRANS: Label for mobile carrier dropdown menu in SMS settings. #. TRANS: Label for mobile carrier dropdown menu in SMS settings.
#: actions/smssettings.php:511 #: actions/smssettings.php:511
@ -4262,9 +4252,8 @@ msgid "Invalid snapshot report URL."
msgstr "A URL para o envio das estatísticas é inválida." msgstr "A URL para o envio das estatísticas é inválida."
#: actions/snapshotadminpanel.php:200 #: actions/snapshotadminpanel.php:200
#, fuzzy
msgid "Randomly during web hit" msgid "Randomly during web hit"
msgstr "Aleatoriamente durante o funcionamento" msgstr "Aleatoriamente durante as visitas ao site"
#: actions/snapshotadminpanel.php:201 #: actions/snapshotadminpanel.php:201
msgid "In a scheduled job" msgid "In a scheduled job"
@ -4497,9 +4486,8 @@ msgid "User is not silenced."
msgstr "O usuário não está silenciado." msgstr "O usuário não está silenciado."
#: actions/unsubscribe.php:77 #: actions/unsubscribe.php:77
#, fuzzy
msgid "No profile ID in request." msgid "No profile ID in request."
msgstr "Nenhuma ID de perfil na requisição." msgstr "A requisição não possui nenhuma ID de perfil."
#: actions/unsubscribe.php:98 #: actions/unsubscribe.php:98
msgid "Unsubscribed" msgid "Unsubscribed"
@ -4852,7 +4840,7 @@ msgstr "Não foi possível atualizar a mensagem com a nova URI."
#. TRANS: Server exception. %s are the error details. #. TRANS: Server exception. %s are the error details.
#: classes/Notice.php:176 #: classes/Notice.php:176
#, fuzzy, php-format #, php-format
msgid "Database error inserting hashtag: %s" msgid "Database error inserting hashtag: %s"
msgstr "Erro no banco de dados durante a inserção da hashtag: %s" msgstr "Erro no banco de dados durante a inserção da hashtag: %s"
@ -4893,7 +4881,7 @@ msgstr "Problema no salvamento das mensagens recebidas do grupo."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5176,7 +5164,7 @@ msgstr "Licença do software StatusNet"
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set.
#: lib/action.php:817 #: lib/action.php:817
#, fuzzy, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%)." "broughtby%%](%%site.broughtbyurl%%)."
@ -5232,7 +5220,7 @@ msgstr ""
#: lib/action.php:871 #: lib/action.php:871
#, php-format #, php-format
msgid "All %1$s content and data are available under the %2$s license." msgid "All %1$s content and data are available under the %2$s license."
msgstr "" msgstr "Todo o conteúdo e dados de %1$s estão disponíveis sob a licença %2$s."
#. TRANS: DT element for pagination (previous/next, etc.). #. TRANS: DT element for pagination (previous/next, etc.).
#: lib/action.php:1182 #: lib/action.php:1182
@ -5354,7 +5342,7 @@ msgid "Snapshots configuration"
msgstr "Configurações das estatísticas" msgstr "Configurações das estatísticas"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"Os recursos de API exigem acesso de leitura e escrita, mas você possui " "Os recursos de API exigem acesso de leitura e escrita, mas você possui "
@ -5444,25 +5432,22 @@ msgstr "Cancelar"
#. TRANS: Application access type #. TRANS: Application access type
#: lib/applicationlist.php:136 #: lib/applicationlist.php:136
#, fuzzy
msgid "read-write" msgid "read-write"
msgstr "Leitura e escrita" msgstr "leitura e escrita"
#. TRANS: Application access type #. TRANS: Application access type
#: lib/applicationlist.php:138 #: lib/applicationlist.php:138
#, fuzzy
msgid "read-only" msgid "read-only"
msgstr "Somente leitura" msgstr "somente leitura"
#. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only) #. TRANS: Used in application list. %1$s is a modified date, %2$s is access type (read-write or read-only)
#: lib/applicationlist.php:144 #: lib/applicationlist.php:144
#, php-format #, php-format
msgid "Approved %1$s - \"%2$s\" access." msgid "Approved %1$s - \"%2$s\" access."
msgstr "" msgstr "Aprovado em %1$s - acesso \"%2$s\"."
#. TRANS: Button label #. TRANS: Button label
#: lib/applicationlist.php:159 #: lib/applicationlist.php:159
#, fuzzy
msgctxt "BUTTON" msgctxt "BUTTON"
msgid "Revoke" msgid "Revoke"
msgstr "Revogar" msgstr "Revogar"
@ -6382,7 +6367,7 @@ msgstr ""
"privadas para envolver outras pessoas em uma conversa. Você também pode " "privadas para envolver outras pessoas em uma conversa. Você também pode "
"receber mensagens privadas." "receber mensagens privadas."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -6544,23 +6529,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "em" msgstr "em"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "no contexto" msgstr "no contexto"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetida por" msgstr "Repetida por"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a esta mensagem" msgstr "Responder a esta mensagem"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Mensagem repetida" msgstr "Mensagem repetida"

View File

@ -13,11 +13,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:18:59+0000\n" "PO-Revision-Date: 2010-05-13 20:52:43+0000\n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n" "X-Language-Code: ru\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -100,10 +100,10 @@ msgstr "Нет такой страницы."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -231,12 +231,12 @@ msgstr "Метод API не найден."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Этот метод требует POST." msgstr "Этот метод требует POST."
@ -268,7 +268,7 @@ msgstr "Не удаётся сохранить профиль."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -327,20 +327,20 @@ msgstr "Прямые сообщения для %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Все прямые сообщения посланные для %s" msgstr "Все прямые сообщения посланные для %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Отсутствует текст сообщения!" msgstr "Отсутствует текст сообщения!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Слишком длинно. Максимальная длина сообщения — %d знаков." msgstr "Слишком длинно. Максимальная длина сообщения — %d знаков."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Получатель не найден." msgstr "Получатель не найден."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Не удаётся посылать прямые сообщения пользователям, которые не являются " "Не удаётся посылать прямые сообщения пользователям, которые не являются "
@ -661,17 +661,17 @@ msgstr "Статус удалён."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Не найдено статуса с таким ID." msgstr "Не найдено статуса с таким ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Слишком длинная запись. Максимальная длина — %d знаков." msgstr "Слишком длинная запись. Максимальная длина — %d знаков."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Не найдено." msgstr "Не найдено."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Максимальная длина записи — %d символов, включая URL вложения." msgstr "Максимальная длина записи — %d символов, включая URL вложения."
@ -783,7 +783,7 @@ msgid "Preview"
msgstr "Просмотр" msgstr "Просмотр"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Удалить" msgstr "Удалить"
@ -1064,7 +1064,7 @@ msgid "Do not delete this notice"
msgstr "Не удалять эту запись" msgstr "Не удалять эту запись"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Удалить эту запись" msgstr "Удалить эту запись"
@ -2567,8 +2567,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Только %s URL в простом HTTP, пожалуйста." msgstr "Только %s URL в простом HTTP, пожалуйста."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Неподдерживаемый формат данных." msgstr "Неподдерживаемый формат данных."
@ -3451,7 +3451,7 @@ msgstr "Вы не можете повторить собственную зап
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Вы уже повторили эту запись." msgstr "Вы уже повторили эту запись."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -4869,7 +4869,7 @@ msgstr "Проблемы с сохранением входящих сообще
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5330,7 +5330,7 @@ msgid "Snapshots configuration"
msgstr "Конфигурация снимков" msgstr "Конфигурация снимков"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API ресурса требует доступ для чтения и записи, но у вас есть только доступ " "API ресурса требует доступ для чтения и записи, но у вас есть только доступ "
@ -6381,7 +6381,7 @@ msgstr ""
"вовлечения других пользователей в разговор. Сообщения, получаемые от других " "вовлечения других пользователей в разговор. Сообщения, получаемые от других "
"людей, видите только вы." "людей, видите только вы."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "от " msgstr "от "
@ -6540,23 +6540,23 @@ msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s"
msgid "at" msgid "at"
msgstr "на" msgstr "на"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "в контексте" msgstr "в контексте"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено" msgstr "Повторено"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Ответить на эту запись" msgstr "Ответить на эту запись"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Ответить" msgstr "Ответить"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Запись повторена" msgstr "Запись повторена"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-05-05 22:18+0000\n" "POT-Creation-Date: 2010-05-13 20:50+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -92,10 +92,10 @@ msgstr ""
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -216,12 +216,12 @@ msgstr ""
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "" msgstr ""
@ -251,7 +251,7 @@ msgstr ""
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -308,20 +308,20 @@ msgstr ""
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -630,17 +630,17 @@ msgstr ""
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -751,7 +751,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -1024,7 +1024,7 @@ msgid "Do not delete this notice"
msgstr "" msgstr ""
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -2426,8 +2426,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3259,7 +3259,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "" msgstr ""
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "" msgstr ""
@ -4575,7 +4575,7 @@ msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5027,7 +5027,7 @@ msgid "Snapshots configuration"
msgstr "" msgstr ""
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -5923,7 +5923,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -6077,23 +6077,23 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "" msgstr ""
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "" msgstr ""

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:19:02+0000\n" "PO-Revision-Date: 2010-05-13 20:52:46+0000\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n" "X-Language-Code: sv\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -96,10 +96,10 @@ msgstr "Ingen sådan sida"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -227,12 +227,12 @@ msgstr "API-metod hittades inte."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Denna metod kräver en POST." msgstr "Denna metod kräver en POST."
@ -262,7 +262,7 @@ msgstr "Kunde inte spara profil."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -321,20 +321,20 @@ msgstr "Direktmeddelande till %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Alla direktmeddelanden skickade till %s" msgstr "Alla direktmeddelanden skickade till %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Ingen meddelandetext!" msgstr "Ingen meddelandetext!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Detta är för långt. Maximal meddelandestorlek är %d tecken." msgstr "Detta är för långt. Maximal meddelandestorlek är %d tecken."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Mottagare hittades inte." msgstr "Mottagare hittades inte."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän." msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän."
@ -647,17 +647,17 @@ msgstr "Status borttagen."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Ingen status med det ID:t hittades." msgstr "Ingen status med det ID:t hittades."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Det är för långt. Maximal notisstorlek är %d tecken." msgstr "Det är för långt. Maximal notisstorlek är %d tecken."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Hittades inte." msgstr "Hittades inte."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga." msgstr "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga."
@ -769,7 +769,7 @@ msgid "Preview"
msgstr "Förhandsgranska" msgstr "Förhandsgranska"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Ta bort" msgstr "Ta bort"
@ -1051,7 +1051,7 @@ msgid "Do not delete this notice"
msgstr "Ta inte bort denna notis" msgstr "Ta inte bort denna notis"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Ta bort denna notis" msgstr "Ta bort denna notis"
@ -2545,8 +2545,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "Endast %s-webbadresser över vanlig HTTP." msgstr "Endast %s-webbadresser över vanlig HTTP."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ett dataformat som inte stödjs" msgstr "Ett dataformat som inte stödjs"
@ -3435,7 +3435,7 @@ msgstr "Du kan inte upprepa din egna notis."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du har redan upprepat denna notis." msgstr "Du har redan upprepat denna notis."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Upprepad" msgstr "Upprepad"
@ -4846,7 +4846,7 @@ msgstr "Problem med att spara gruppinkorg."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5304,7 +5304,7 @@ msgid "Snapshots configuration"
msgstr "Konfiguration av ögonblicksbilder" msgstr "Konfiguration av ögonblicksbilder"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet." "API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet."
@ -6347,7 +6347,7 @@ msgstr ""
"engagera andra användare i konversationen. Folk kan skicka meddelanden till " "engagera andra användare i konversationen. Folk kan skicka meddelanden till "
"dig som bara du ser." "dig som bara du ser."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "från" msgstr "från"
@ -6507,23 +6507,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "på" msgstr "på"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "i sammanhang" msgstr "i sammanhang"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Upprepad av" msgstr "Upprepad av"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svara på denna notis" msgstr "Svara på denna notis"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Svara" msgstr "Svara"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notis upprepad" msgstr "Notis upprepad"

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-29 23:21+0000\n" "POT-Creation-Date: 2010-04-29 23:21+0000\n"
"PO-Revision-Date: 2010-05-03 19:19:06+0000\n" "PO-Revision-Date: 2010-05-13 20:52:55+0000\n"
"Language-Team: Telugu\n" "Language-Team: Telugu\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: te\n" "X-Language-Code: te\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -95,10 +95,10 @@ msgstr "అటువంటి పేజీ లేదు."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -220,12 +220,12 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "" msgstr ""
@ -257,7 +257,7 @@ msgstr "ప్రొఫైలుని భద్రపరచలేకున్
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -315,20 +315,20 @@ msgstr "%s కి నేరు సందేశాలు"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "%sకి పంపిన అన్ని నేరు సందేశాలు" msgstr "%sకి పంపిన అన్ని నేరు సందేశాలు"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "సందేశపు పాఠ్యం లేదు!" msgstr "సందేశపు పాఠ్యం లేదు!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు." msgstr "చాలా పొడవుంది. గరిష్ఠ సందేశ పరిమాణం %d అక్షరాలు."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు." msgstr "అందుకోవాల్సిన వాడుకరి కనబడలేదు."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "మీ స్నేహితులు కాని వాడుకరులకి నేరు సందేశాలు పంపించలేరు." msgstr "మీ స్నేహితులు కాని వాడుకరులకి నేరు సందేశాలు పంపించలేరు."
@ -642,17 +642,17 @@ msgstr "స్థితిని తొలగించాం."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "ఆ IDతో ఏ నోటీసు కనబడలేదు." msgstr "ఆ IDతో ఏ నోటీసు కనబడలేదు."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు." msgstr "అది చాలా పొడవుంది. గరిష్ఠ నోటీసు పరిమాణం %d అక్షరాలు."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "కనబడలేదు." msgstr "కనబడలేదు."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని." msgstr "గరిష్ఠ నోటీసు పొడవు %d అక్షరాలు, జోడింపు URLని కలుపుకుని."
@ -765,7 +765,7 @@ msgid "Preview"
msgstr "మునుజూపు" msgstr "మునుజూపు"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "తొలగించు" msgstr "తొలగించు"
@ -1044,7 +1044,7 @@ msgid "Do not delete this notice"
msgstr "ఈ నోటీసుని తొలగించకు" msgstr "ఈ నోటీసుని తొలగించకు"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "ఈ నోటీసుని తొలగించు" msgstr "ఈ నోటీసుని తొలగించు"
@ -2350,7 +2350,7 @@ msgstr "విషయం లేదు!"
#: actions/newmessage.php:158 #: actions/newmessage.php:158
msgid "No recipient specified." msgid "No recipient specified."
msgstr "" msgstr "ఎవరికి పంపించాలో పేర్కొనలేదు."
#: actions/newmessage.php:164 lib/command.php:484 #: actions/newmessage.php:164 lib/command.php:484
msgid "" msgid ""
@ -2460,7 +2460,7 @@ msgstr "సంధానిత ఉపకరణాలు"
#: actions/oauthconnectionssettings.php:83 #: actions/oauthconnectionssettings.php:83
msgid "You have allowed the following applications to access you account." msgid "You have allowed the following applications to access you account."
msgstr "" msgstr "మీ ఖాతాని ప్రాపించడానికి మీరు ఈ క్రింది ఉపకరణాలకి అనుమతినిచ్చారు."
#: actions/oauthconnectionssettings.php:175 #: actions/oauthconnectionssettings.php:175
msgid "You are not a user of that application." msgid "You are not a user of that application."
@ -2502,8 +2502,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3256,11 +3256,13 @@ msgid "Longer name, preferably your \"real\" name"
msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది" msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది"
#: actions/register.php:494 #: actions/register.php:494
#, fuzzy, php-format #, php-format
msgid "" msgid ""
"My text and files are available under %s except this private data: password, " "My text and files are available under %s except this private data: password, "
"email address, IM address, and phone number." "email address, IM address, and phone number."
msgstr " ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM చిరునామా, మరియు ఫోన్ నంబర్." msgstr ""
"నా పాఠ్యం మరియు దస్త్రాలు %s క్రింద లభ్యం, ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM "
"చిరునామా, మరియు ఫోన్ నంబర్."
#: actions/register.php:542 #: actions/register.php:542
#, php-format #, php-format
@ -3314,7 +3316,7 @@ msgstr ""
#: actions/remotesubscribe.php:112 #: actions/remotesubscribe.php:112
msgid "Remote subscribe" msgid "Remote subscribe"
msgstr "" msgstr "సుదూర చందా"
#: actions/remotesubscribe.php:124 #: actions/remotesubscribe.php:124
#, fuzzy #, fuzzy
@ -3327,7 +3329,7 @@ msgstr "వాడుకరి పేరు"
#: actions/remotesubscribe.php:130 #: actions/remotesubscribe.php:130
msgid "Nickname of the user you want to follow" msgid "Nickname of the user you want to follow"
msgstr "" msgstr "మీరు అనుసరించాలనుకుంటున్న వాడుకరి యొక్క ముద్దుపేరు"
#: actions/remotesubscribe.php:133 #: actions/remotesubscribe.php:133
msgid "Profile URL" msgid "Profile URL"
@ -3375,7 +3377,7 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు." msgstr "మీరు ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "సృష్టితం" msgstr "సృష్టితం"
@ -3594,9 +3596,9 @@ msgid "Feed for favorites of %s (RSS 1.0)"
msgstr "%s యొక్క మిత్రుల ఫీడు" msgstr "%s యొక్క మిత్రుల ఫీడు"
#: actions/showfavorites.php:178 #: actions/showfavorites.php:178
#, fuzzy, php-format #, php-format
msgid "Feed for favorites of %s (RSS 2.0)" msgid "Feed for favorites of %s (RSS 2.0)"
msgstr "%s యొక్క మిత్రుల ఫీడు" msgstr "%s యొక్క ఇష్టాంశాల ఫీడు (RSS 2.0)"
#: actions/showfavorites.php:185 #: actions/showfavorites.php:185
#, php-format #, php-format
@ -4698,19 +4700,17 @@ msgid "Database error inserting hashtag: %s"
msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు" msgstr "అవతారాన్ని పెట్టడంలో పొరపాటు"
#: classes/Notice.php:245 #: classes/Notice.php:245
#, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. చాలా పొడవుగా ఉంది."
#: classes/Notice.php:249 #: classes/Notice.php:249
#, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." msgstr "నోటీసుని భద్రపరచడంలో పొరపాటు. గుర్తుతెలియని వాడుకరి."
#: classes/Notice.php:254 #: classes/Notice.php:254
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr "చాలా ఎక్కువ నోటీసులు అంత వేగంగా; కాస్త ఊపిరి తీసుకుని మళ్ళీ కొన్ని నిమిషాల తర్వాత వ్రాయండి."
#: classes/Notice.php:260 #: classes/Notice.php:260
msgid "" msgid ""
@ -4733,7 +4733,7 @@ msgstr "సందేశాన్ని భద్రపరచడంలో పొ
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4842,7 +4842,7 @@ msgstr "శీర్షికలేని పేజీ"
#. TRANS: DT element for primary navigation menu. String is hidden in default CSS. #. TRANS: DT element for primary navigation menu. String is hidden in default CSS.
#: lib/action.php:426 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr "ప్రాధమిక సైటు మార్గదర్శిని"
#. TRANS: Tooltip for main menu option "Personal" #. TRANS: Tooltip for main menu option "Personal"
#: lib/action.php:432 #: lib/action.php:432
@ -4858,7 +4858,6 @@ msgstr "వ్యక్తిగత"
#. TRANS: Tooltip for main menu option "Account" #. TRANS: Tooltip for main menu option "Account"
#: lib/action.php:437 #: lib/action.php:437
#, fuzzy
msgctxt "TOOLTIP" msgctxt "TOOLTIP"
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి" msgstr "మీ ఈమెయిలు, అవతారం, సంకేతపదం మరియు ప్రౌఫైళ్ళను మార్చుకోండి"
@ -4975,9 +4974,8 @@ msgstr "పేజీ గమనిక"
#. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS.
#: lib/action.php:752 #: lib/action.php:752
#, fuzzy
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "చందాలు" msgstr "ద్వితీయ సైటు మార్గదర్శిని"
#. TRANS: Secondary navigation menu option leading to help on StatusNet. #. TRANS: Secondary navigation menu option leading to help on StatusNet.
#: lib/action.php:758 #: lib/action.php:758
@ -5025,13 +5023,13 @@ msgstr "స్టేటస్‌నెట్ మృదూపకరణ లైస
#. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set.
#: lib/action.php:817 #: lib/action.php:817
#, fuzzy, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%)." "broughtby%%](%%site.broughtbyurl%%)."
msgstr "" 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. #. TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set.
#: lib/action.php:820 #: lib/action.php:820
@ -5205,7 +5203,7 @@ msgid "Snapshots configuration"
msgstr "SMS నిర్ధారణ" msgstr "SMS నిర్ధారణ"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -5362,9 +5360,8 @@ msgid "Command failed"
msgstr "ఆదేశం విఫలమైంది" msgstr "ఆదేశం విఫలమైంది"
#: lib/command.php:83 lib/command.php:105 #: lib/command.php:83 lib/command.php:105
#, fuzzy
msgid "Notice with that id does not exist" msgid "Notice with that id does not exist"
msgstr "ఆ ఈమెయిలు చిరునామా లేదా వాడుకరిపేరుతో వాడుకరులెవరూ లేరు." msgstr "ఆ గుర్తింపుతో ఏ నోటీసు లేదు"
#: lib/command.php:99 lib/command.php:596 #: lib/command.php:99 lib/command.php:596
#, fuzzy #, fuzzy
@ -5413,7 +5410,7 @@ msgstr ""
#: lib/command.php:302 #: lib/command.php:302
msgid "Notice marked as fave." msgid "Notice marked as fave."
msgstr "" msgstr "నోటీసుని ఇష్టాంశంగా గుర్తించాం."
#: lib/command.php:323 #: lib/command.php:323
msgid "You are already a member of that group" msgid "You are already a member of that group"
@ -5429,9 +5426,9 @@ msgstr "వాడుకరి %1$sని %2$s గుంపులో చేర్
#. TRANS: Message given having failed to remove a user from a group. #. TRANS: Message given having failed to remove a user from a group.
#. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group. #. TRANS: %1$s is the nickname of the user, %2$s is the nickname of the group.
#: lib/command.php:385 #: lib/command.php:385
#, fuzzy, php-format #, php-format
msgid "Could not remove user %1$s from group %2$s" msgid "Could not remove user %1$s from group %2$s"
msgstr "వాడుకరి %1$sని %2$s గుంపు నుండి తొలగించలేకపోయాం." msgstr "వాడుకరి %1$sని %2$s గుంపు నుండి తొలగించలేకపోయాం"
#. TRANS: Whois output. %s is the full name of the queried user. #. TRANS: Whois output. %s is the full name of the queried user.
#: lib/command.php:418 #: lib/command.php:418
@ -6205,7 +6202,7 @@ msgstr ""
"మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు " "మీకు అంతరంగిక సందేశాలు లేవు. ఇతర వాడుకరులతో సంభాషణకై మీరు వారికి అంతరంగిక సందేశాలు "
"పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు." "పంపించవచ్చు. మీ కంటికి మాత్రమే కనబడేలా వారు మీకు సందేశాలు పంపవచ్చు."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "నుండి" msgstr "నుండి"
@ -6363,27 +6360,26 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "సందర్భంలో" msgstr "సందర్భంలో"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "సృష్టితం" msgstr "సృష్టితం"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "ఈ నోటీసుపై స్పందించండి" msgstr "ఈ నోటీసుపై స్పందించండి"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "స్పందించండి" msgstr "స్పందించండి"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "నోటీసుని తొలగించాం." msgstr "నోటీసుని పునరావృతించారు"
#: lib/nudgeform.php:116 #: lib/nudgeform.php:116
msgid "Nudge this user" msgid "Nudge this user"

View File

@ -10,11 +10,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:19:10+0000\n" "PO-Revision-Date: 2010-05-13 20:53:01+0000\n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tr\n" "X-Language-Code: tr\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -103,10 +103,10 @@ msgstr "Böyle bir durum mesajı yok."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -229,12 +229,12 @@ msgstr "Onay kodu bulunamadı."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "" msgstr ""
@ -266,7 +266,7 @@ msgstr "Profil kaydedilemedi."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -325,21 +325,21 @@ msgstr ""
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -666,19 +666,19 @@ msgstr "Avatar güncellendi."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" "Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
#, fuzzy #, fuzzy
msgid "Not found." msgid "Not found."
msgstr "İstek bulunamadı!" msgstr "İstek bulunamadı!"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -793,7 +793,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -1085,7 +1085,7 @@ msgid "Do not delete this notice"
msgstr "Böyle bir durum mesajı yok." msgstr "Böyle bir durum mesajı yok."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -2587,8 +2587,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3466,7 +3466,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Zaten giriş yapmış durumdasıznız!" msgstr "Zaten giriş yapmış durumdasıznız!"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Yarat" msgstr "Yarat"
@ -4852,7 +4852,7 @@ msgstr "Durum mesajını kaydederken hata oluştu."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5347,7 +5347,7 @@ msgid "Snapshots configuration"
msgstr "Eposta adresi onayı" msgstr "Eposta adresi onayı"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6284,7 +6284,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -6444,26 +6444,26 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "İçerik yok!" msgstr "İçerik yok!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Yarat" msgstr "Yarat"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:630 #: lib/noticelist.php:622
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "cevapla" msgstr "cevapla"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Durum mesajları" msgstr "Durum mesajları"

View File

@ -12,11 +12,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:19:13+0000\n" "PO-Revision-Date: 2010-05-13 20:53:07+0000\n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n" "X-Language-Code: uk\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -100,10 +100,10 @@ msgstr "Немає такої сторінки."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -230,12 +230,12 @@ msgstr "API метод не знайдено."
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Цей метод потребує POST." msgstr "Цей метод потребує POST."
@ -266,7 +266,7 @@ msgstr "Не вдалося зберегти профіль."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -325,20 +325,20 @@ msgstr "Пряме повідомлення до %s"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "Всі прямі повідомлення надіслані до %s" msgstr "Всі прямі повідомлення надіслані до %s"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "Повідомлення без тексту!" msgstr "Повідомлення без тексту!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Надто довго. Максимальний розмір %d знаків." msgstr "Надто довго. Максимальний розмір %d знаків."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Отримувача не знайдено." msgstr "Отримувача не знайдено."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
"Не можна надіслати пряме повідомлення користувачеві, який не є Вашим другом." "Не можна надіслати пряме повідомлення користувачеві, який не є Вашим другом."
@ -657,17 +657,17 @@ msgstr "Статус видалено."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Не знайдено жодних статусів з таким ID." msgstr "Не знайдено жодних статусів з таким ID."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Надто довго. Максимальний розмір допису — %d знаків." msgstr "Надто довго. Максимальний розмір допису — %d знаків."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
msgid "Not found." msgid "Not found."
msgstr "Не знайдено." msgstr "Не знайдено."
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -780,7 +780,7 @@ msgid "Preview"
msgstr "Перегляд" msgstr "Перегляд"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "Видалити" msgstr "Видалити"
@ -1059,7 +1059,7 @@ msgid "Do not delete this notice"
msgstr "Не видаляти цей допис" msgstr "Не видаляти цей допис"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Видалити допис" msgstr "Видалити допис"
@ -2555,8 +2555,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "URL-адреса %s лише в простому HTTP, будь ласка." msgstr "URL-адреса %s лише в простому HTTP, будь ласка."
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Такий формат даних не підтримується." msgstr "Такий формат даних не підтримується."
@ -3443,7 +3443,7 @@ msgstr "Ви не можете повторювати свої власні до
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Ви вже повторили цей допис." msgstr "Ви вже повторили цей допис."
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -4854,7 +4854,7 @@ msgstr "Проблема при збереженні вхідних дописі
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -5313,7 +5313,7 @@ msgid "Snapshots configuration"
msgstr "Конфігурація знімків" msgstr "Конфігурація знімків"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для " "API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для "
@ -6363,7 +6363,7 @@ msgstr ""
"повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите "
"лише Ви." "лише Ви."
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "від" msgstr "від"
@ -6522,23 +6522,23 @@ msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgid "at" msgid "at"
msgstr "в" msgstr "в"
#: lib/noticelist.php:567 #: lib/noticelist.php:559
msgid "in context" msgid "in context"
msgstr "в контексті" msgstr "в контексті"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено" msgstr "Повторено"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Відповісти на цей допис" msgstr "Відповісти на цей допис"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Відповісти" msgstr "Відповісти"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Допис повторили" msgstr "Допис повторили"

View File

@ -8,11 +8,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:19:17+0000\n" "PO-Revision-Date: 2010-05-13 20:53:11+0000\n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: vi\n" "X-Language-Code: vi\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -102,10 +102,10 @@ msgstr "Không có tin nhắn nào."
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -228,12 +228,12 @@ msgstr "Phương thức API không tìm thấy!"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "Phương thức này yêu cầu là POST." msgstr "Phương thức này yêu cầu là POST."
@ -265,7 +265,7 @@ msgstr "Không thể lưu hồ sơ cá nhân."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -325,22 +325,22 @@ msgstr "Tin nhắn riêng"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
#, fuzzy #, fuzzy
msgid "No message text!" msgid "No message text!"
msgstr "Không có tin nhắn nào." msgstr "Không có tin nhắn nào."
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "Quá dài. Tối đa là 140 ký tự." msgstr "Quá dài. Tối đa là 140 ký tự."
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
#, fuzzy #, fuzzy
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "Không tìm thấy user." msgstr "Không tìm thấy user."
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -668,18 +668,18 @@ msgstr "Hình đại diện đã được cập nhật."
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó." msgstr "Không tìm thấy trạng thái nào tương ứng với ID đó."
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "Quá dài. Tối đa là 140 ký tự." msgstr "Quá dài. Tối đa là 140 ký tự."
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
#, fuzzy #, fuzzy
msgid "Not found." msgid "Not found."
msgstr "Không tìm thấy" msgstr "Không tìm thấy"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -795,7 +795,7 @@ msgid "Preview"
msgstr "Xem trước" msgstr "Xem trước"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "Xóa tin nhắn" msgstr "Xóa tin nhắn"
@ -1091,7 +1091,7 @@ msgid "Do not delete this notice"
msgstr "Không thể xóa tin nhắn này." msgstr "Không thể xóa tin nhắn này."
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
#, fuzzy #, fuzzy
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Xóa tin nhắn" msgstr "Xóa tin nhắn"
@ -2677,8 +2677,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Không hỗ trợ định dạng dữ liệu này." msgstr "Không hỗ trợ định dạng dữ liệu này."
@ -3586,7 +3586,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Bạn đã theo những người này:" msgstr "Bạn đã theo những người này:"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Tạo" msgstr "Tạo"
@ -5006,7 +5006,7 @@ msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%s (%s)" msgstr "%s (%s)"
@ -5508,7 +5508,7 @@ msgid "Snapshots configuration"
msgstr "Xác nhận SMS" msgstr "Xác nhận SMS"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6507,7 +6507,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " từ " msgstr " từ "
@ -6671,26 +6671,26 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Không có nội dung!" msgstr "Không có nội dung!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Tạo" msgstr "Tạo"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
#, fuzzy #, fuzzy
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Trả lời tin nhắn này" msgstr "Trả lời tin nhắn này"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "Trả lời" msgstr "Trả lời"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Tin đã gửi" msgstr "Tin đã gửi"

View File

@ -11,11 +11,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:19:20+0000\n" "PO-Revision-Date: 2010-05-13 20:53:21+0000\n"
"Language-Team: Simplified Chinese\n" "Language-Team: Simplified Chinese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n" "X-Language-Code: zh-hans\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -105,10 +105,10 @@ msgstr "没有该页面"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -230,12 +230,12 @@ msgstr "API 方法未实现!"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "此方法接受POST请求。" msgstr "此方法接受POST请求。"
@ -267,7 +267,7 @@ msgstr "无法保存个人信息。"
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -327,20 +327,20 @@ msgstr "发给 %s 的直接消息"
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "发给 %s 的直接消息" msgstr "发给 %s 的直接消息"
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "消息没有正文!" msgstr "消息没有正文!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "超出长度限制。不能超过 140 个字符。" msgstr "超出长度限制。不能超过 140 个字符。"
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "未找到收件人。" msgstr "未找到收件人。"
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "无法向并非好友的用户发送直接消息。" msgstr "无法向并非好友的用户发送直接消息。"
@ -666,18 +666,18 @@ msgstr "头像已更新。"
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "没有找到此ID的信息。" msgstr "没有找到此ID的信息。"
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, fuzzy, php-format #, fuzzy, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "超出长度限制。不能超过 140 个字符。" msgstr "超出长度限制。不能超过 140 个字符。"
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
#, fuzzy #, fuzzy
msgid "Not found." msgid "Not found."
msgstr "未找到" msgstr "未找到"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -791,7 +791,7 @@ msgid "Preview"
msgstr "预览" msgstr "预览"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "删除" msgstr "删除"
@ -1089,7 +1089,7 @@ msgid "Do not delete this notice"
msgstr "无法删除通告。" msgstr "无法删除通告。"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
#, fuzzy #, fuzzy
msgid "Delete this notice" msgid "Delete this notice"
msgstr "删除通告" msgstr "删除通告"
@ -2629,8 +2629,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "不支持的数据格式。" msgstr "不支持的数据格式。"
@ -3522,7 +3522,7 @@ msgstr "您必须同意此授权方可注册。"
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "您已成功阻止该用户:" msgstr "您已成功阻止该用户:"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "创建" msgstr "创建"
@ -4935,7 +4935,7 @@ msgstr "保存通告时出错。"
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -5440,7 +5440,7 @@ msgid "Snapshots configuration"
msgstr "SMS短信确认" msgstr "SMS短信确认"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6384,7 +6384,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " 从 " msgstr " 从 "
@ -6547,27 +6547,27 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "没有内容!" msgstr "没有内容!"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "创建" msgstr "创建"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
#, fuzzy #, fuzzy
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "无法删除通告。" msgstr "无法删除通告。"
#: lib/noticelist.php:630 #: lib/noticelist.php:622
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "回复" msgstr "回复"
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "消息已发布。" msgstr "消息已发布。"

View File

@ -8,11 +8,11 @@ msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-24 14:16+0000\n" "POT-Creation-Date: 2010-04-24 14:16+0000\n"
"PO-Revision-Date: 2010-05-03 19:19:23+0000\n" "PO-Revision-Date: 2010-05-13 20:53:34+0000\n"
"Language-Team: Traditional Chinese\n" "Language-Team: Traditional Chinese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.17alpha (r65870); Translate extension (2010-05-01)\n" "X-Generator: MediaWiki 1.17alpha (r66391); Translate extension (2010-05-01)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hant\n" "X-Language-Code: zh-hant\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -99,10 +99,10 @@ msgstr "無此通知"
#: actions/apiaccountupdateprofilebackgroundimage.php:116 #: actions/apiaccountupdateprofilebackgroundimage.php:116
#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 #: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97
#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 #: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77
#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 #: actions/apidirectmessagenew.php:74 actions/apigroupcreate.php:112
#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 #: actions/apigroupismember.php:90 actions/apigroupjoin.php:99
#: actions/apigroupleave.php:99 actions/apigrouplist.php:72 #: actions/apigroupleave.php:99 actions/apigrouplist.php:72
#: actions/apistatusesupdate.php:239 actions/apisubscriptions.php:87 #: actions/apistatusesupdate.php:227 actions/apisubscriptions.php:87
#: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173 #: actions/apitimelinefavorites.php:71 actions/apitimelinefriends.php:173
#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 #: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79
#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 #: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75
@ -225,12 +225,12 @@ msgstr "確認碼遺失"
#: actions/apiaccountupdateprofilebackgroundimage.php:86 #: actions/apiaccountupdateprofilebackgroundimage.php:86
#: actions/apiaccountupdateprofilecolors.php:110 #: actions/apiaccountupdateprofilecolors.php:110
#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 #: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89
#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 #: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:109
#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 #: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91
#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 #: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91
#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 #: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91
#: actions/apigroupleave.php:91 actions/apimediaupload.php:67 #: actions/apigroupleave.php:91 actions/apimediaupload.php:67
#: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:209 #: actions/apistatusesretweet.php:65 actions/apistatusesupdate.php:197
msgid "This method requires a POST." msgid "This method requires a POST."
msgstr "" msgstr ""
@ -262,7 +262,7 @@ msgstr "無法儲存個人資料"
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80 #: actions/apiaccountupdateprofileimage.php:97 actions/apimediaupload.php:80
#: actions/apistatusesupdate.php:222 actions/avatarsettings.php:257 #: actions/apistatusesupdate.php:210 actions/avatarsettings.php:257
#: actions/designadminpanel.php:123 actions/editapplication.php:118 #: actions/designadminpanel.php:123 actions/editapplication.php:118
#: actions/newapplication.php:101 actions/newnotice.php:94 #: actions/newapplication.php:101 actions/newnotice.php:94
#: lib/designsettings.php:283 #: lib/designsettings.php:283
@ -321,20 +321,20 @@ msgstr ""
msgid "All the direct messages sent to %s" msgid "All the direct messages sent to %s"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:126 #: actions/apidirectmessagenew.php:118
msgid "No message text!" msgid "No message text!"
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 #: actions/apidirectmessagenew.php:127 actions/newmessage.php:150
#, php-format #, php-format
msgid "That's too long. Max message size is %d chars." msgid "That's too long. Max message size is %d chars."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:146 #: actions/apidirectmessagenew.php:138
msgid "Recipient user not found." msgid "Recipient user not found."
msgstr "" msgstr ""
#: actions/apidirectmessagenew.php:150 #: actions/apidirectmessagenew.php:142
msgid "Can't send direct messages to users who aren't your friend." msgid "Can't send direct messages to users who aren't your friend."
msgstr "" msgstr ""
@ -657,18 +657,18 @@ msgstr "更新個人圖像"
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:252 actions/newnotice.php:155 #: actions/apistatusesupdate.php:240 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
#, php-format #, php-format
msgid "That's too long. Max notice size is %d chars." msgid "That's too long. Max notice size is %d chars."
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:293 actions/apiusershow.php:96 #: actions/apistatusesupdate.php:281 actions/apiusershow.php:96
#, fuzzy #, fuzzy
msgid "Not found." msgid "Not found."
msgstr "目前無請求" msgstr "目前無請求"
#: actions/apistatusesupdate.php:316 actions/newnotice.php:178 #: actions/apistatusesupdate.php:304 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -781,7 +781,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:656 #: lib/deleteuserform.php:66 lib/noticelist.php:648
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -1071,7 +1071,7 @@ msgid "Do not delete this notice"
msgstr "無此通知" msgstr "無此通知"
#. TRANS: Submit button title for 'Yes' when deleting a notice. #. TRANS: Submit button title for 'Yes' when deleting a notice.
#: actions/deletenotice.php:158 lib/noticelist.php:656 #: actions/deletenotice.php:158 lib/noticelist.php:648
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -2537,8 +2537,8 @@ msgid "Only %s URLs over plain HTTP please."
msgstr "" msgstr ""
#. TRANS: Client error on an API request with an unsupported data format. #. TRANS: Client error on an API request with an unsupported data format.
#: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1131 #: actions/oembed.php:183 actions/oembed.php:202 lib/apiaction.php:1156
#: lib/apiaction.php:1160 lib/apiaction.php:1277 #: lib/apiaction.php:1185 lib/apiaction.php:1302
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -3393,7 +3393,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "無此使用者" msgstr "無此使用者"
#: actions/repeat.php:114 lib/noticelist.php:675 #: actions/repeat.php:114 lib/noticelist.php:667
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "新增" msgstr "新增"
@ -4760,7 +4760,7 @@ msgstr "儲存使用者發生錯誤"
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. 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. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1533 #: classes/Notice.php:1552
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -5248,7 +5248,7 @@ msgid "Snapshots configuration"
msgstr "確認信箱" msgstr "確認信箱"
#. TRANS: Client error 401. #. TRANS: Client error 401.
#: lib/apiauth.php:113 #: lib/apiauth.php:112
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
@ -6168,7 +6168,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:494 #: lib/mailbox.php:227 lib/noticelist.php:497
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -6327,25 +6327,25 @@ msgstr ""
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:567 #: lib/noticelist.php:559
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "無內容" msgstr "無內容"
#: lib/noticelist.php:602 #: lib/noticelist.php:594
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "新增" msgstr "新增"
#: lib/noticelist.php:629 #: lib/noticelist.php:621
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:630 #: lib/noticelist.php:622
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:674 #: lib/noticelist.php:666
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "更新個人圖像" msgstr "更新個人圖像"

View File

@ -1,5 +1,4 @@
<?php <?php
/** /**
* DirectionDetector plugin, detects notices with RTL content & sets RTL * DirectionDetector plugin, detects notices with RTL content & sets RTL
* style for them. * style for them.
@ -29,7 +28,7 @@ if (!defined('STATUSNET')) {
exit(1); exit(1);
} }
define('DIRECTIONDETECTORPLUGIN_VERSION', '0.1.1'); define('DIRECTIONDETECTORPLUGIN_VERSION', '0.1.2');
class DirectionDetectorPlugin extends Plugin { class DirectionDetectorPlugin extends Plugin {
/** /**
@ -46,7 +45,7 @@ class DirectionDetectorPlugin extends Plugin {
/** /**
* SN plugin API, here we will add css needed for modifiyed rendered * SN plugin API, here we will add css needed for modifiyed rendered
* *
* @param * @param
*/ */
public function onEndShowStatusNetStyles($xml){ public function onEndShowStatusNetStyles($xml){
$xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;width:490px;} .notice .author {float:left}'); $xml->element('style', array('type' => 'text/css'), 'span.rtl {display:block;direction:rtl;text-align:right;float:right;width:490px;} .notice .author {float:left}');
@ -54,7 +53,7 @@ class DirectionDetectorPlugin extends Plugin {
/** /**
* checks that passed string is a RTL language or not * checks that passed string is a RTL language or not
* *
* @param string $str string to be checked * @param string $str String to be checked
*/ */
public static function isRTL($str){ public static function isRTL($str){
self::getClearText($str); self::getClearText($str);
@ -62,15 +61,15 @@ class DirectionDetectorPlugin extends Plugin {
$cc = $cc[0]; $cc = $cc[0];
else else
return false; return false;
if($cc>=1536 && $cc<=1791) // arabic, persian, urdu, kurdish, ... if($cc>=1536 && $cc<=1791) // Arabic, Persian, Urdu, Kurdish, ...
return true; return true;
if($cc>=65136 && $cc<=65279) // arabic peresent 2 if($cc>=65136 && $cc<=65279) // Arabic peresent 2
return true; return true;
if($cc>=64336 && $cc<=65023) // arabic peresent 1 if($cc>=64336 && $cc<=65023) // Arabic peresent 1
return true; return true;
if($cc>=1424 && $cc<=1535) // hebrew if($cc>=1424 && $cc<=1535) // Hebrew
return true; return true;
if($cc>=64256 && $cc<=64335) // hebrew peresent if($cc>=64256 && $cc<=64335) // Hebrew peresent
return true; return true;
if($cc>=1792 && $cc<=1871) // Syriac if($cc>=1792 && $cc<=1871) // Syriac
return true; return true;
@ -84,7 +83,7 @@ class DirectionDetectorPlugin extends Plugin {
} }
/** /**
* clears text from replys, tags, groups, reteets & whitespaces * clears text from replies, tags, groups, repeats & whitespaces
* *
* @param string &$str string to be cleared * @param string &$str string to be cleared
*/ */
@ -95,9 +94,9 @@ class DirectionDetectorPlugin extends Plugin {
} }
/** /**
* Takes an UTF-8 string and returns an array of ints representing the * Takes a UTF-8 string and returns an array of ints representing the
* Unicode characters. Astral planes are supported ie. the ints in the * Unicode characters. Astral planes are supported i.e. the ints in the
* output can be > 0xFFFF. O$ccurrances of the BOM are ignored. Surrogates * output can be > 0xFFFF. Occurrances of the BOM are ignored. Surrogates
* are not allowed. ### modified ### returns first character code * are not allowed. ### modified ### returns first character code
* *
* Returns false if the input string isn't a valid UTF-8 octet sequence. * Returns false if the input string isn't a valid UTF-8 octet sequence.
@ -200,7 +199,7 @@ class DirectionDetectorPlugin extends Plugin {
} }
} else { } else {
/* ((0xC0 & (*in) != 0x80) && (mState != 0)) /* ((0xC0 & (*in) != 0x80) && (mState != 0))
* *
* Incomplete multi-octet sequence. * Incomplete multi-octet sequence.
*/ */
return false; return false;
@ -217,8 +216,9 @@ class DirectionDetectorPlugin extends Plugin {
$versions[] = array( $versions[] = array(
'name' => 'Direction detector', 'name' => 'Direction detector',
'version' => DIRECTIONDETECTORPLUGIN_VERSION, 'version' => DIRECTIONDETECTORPLUGIN_VERSION,
'author' => 'behrooz shabani', 'author' => 'Behrooz Shabani',
'rawdescription' => _m('shows notices with right-to-left content in correct direction.') // TRANS: Direction detector plugin description.
'rawdescription' => _m('Shows notices with right-to-left content in correct direction.')
); );
return true; return true;
} }

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-29 23:39+0000\n" "POT-Creation-Date: 2010-05-08 22:32+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -16,6 +16,6 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n" "Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: DirectionDetectorPlugin.php:221 #: DirectionDetectorPlugin.php:222
msgid "shows notices with right-to-left content in correct direction." msgid "Shows notices with right-to-left content in correct direction."
msgstr "" msgstr ""

View File

@ -0,0 +1,22 @@
# Translation of StatusNet plugin DirectionDetector to Dutch
#
# Author@translatewiki.net: Siebrand
# --
# This file is distributed under the same license as the StatusNet package.
#
msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-05-08 22:32+0000\n"
"PO-Revision-Date: 2010-05-08 23:32+0100\n"
"Last-Translator: Siebrand Mazeland <s.mazeland@xs4all.nl>\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"
#: DirectionDetectorPlugin.php:222
msgid "Geeft mededelingen met rechts-naar-linksinhoud weer in de juiste richting."
msgstr ""

View File

@ -94,29 +94,34 @@ class User_greeting_count extends Memcached_DataObject
/** /**
* return key definitions for DB_DataObject * return key definitions for DB_DataObject
* *
* DB_DataObject needs to know about keys that the table has; this function * DB_DataObject needs to know about keys that the table has, since it
* defines them. * won't appear in StatusNet's own keys list. In most cases, this will
* simply reference your keyTypes() function.
* *
* @return array key definitions * @return array list of key field names
*/ */
function keys() function keys()
{ {
return array('user_id' => 'K'); return array_keys($this->keyTypes());
} }
/** /**
* return key definitions for Memcached_DataObject * return key definitions for Memcached_DataObject
* *
* Our caching system uses the same key definitions, but uses a different * Our caching system uses the same key definitions, but uses a different
* method to get them. * 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 key definitions * @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() function keyTypes()
{ {
return $this->keys(); return array('user_id' => 'K');
} }
/** /**