forked from GNUsocial/gnu-social
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
This commit is contained in:
commit
af5b2fff12
10
EVENTS.txt
10
EVENTS.txt
@ -479,3 +479,13 @@ CheckPassword: Check a username/password
|
||||
- $nickname: The nickname to check
|
||||
- $password: The password to check
|
||||
- &$authenticated: set to true to indicate authentication succeeded.
|
||||
|
||||
AutoRegister: Register a new user with the given nickname. Should insert a new User and Profile into the database.
|
||||
- $nickname: The nickname to register
|
||||
|
||||
ChangePassword: Handle a password change request
|
||||
- $nickname: user's nickname
|
||||
- $oldpassword: the user's old password
|
||||
- $newpassword: the desired new password
|
||||
- &$errormsg: set this to an error message if the password could not be changed. If the password was changed, leave this as false
|
||||
|
||||
|
@ -87,16 +87,22 @@ class ApiAccountUpdateProfileImageAction extends ApiAuthAction
|
||||
return;
|
||||
}
|
||||
|
||||
if (empty($this->user)) {
|
||||
$this->clientError(_('No such user!'), 404, $this->format);
|
||||
// Workaround for PHP returning empty $_POST and $_FILES when POST
|
||||
// length > post_max_size in php.ini
|
||||
|
||||
if (empty($_FILES)
|
||||
&& empty($_POST)
|
||||
&& ($_SERVER['CONTENT_LENGTH'] > 0)
|
||||
) {
|
||||
$msg = _('The server was unable to handle that much POST ' .
|
||||
'data (%s bytes) due to its current configuration.');
|
||||
|
||||
$this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
|
||||
return;
|
||||
}
|
||||
|
||||
// Workaround for PHP returning empty $_FILES when POST length > PHP settings
|
||||
|
||||
if (empty($_FILES) && ($_SERVER['CONTENT_LENGTH'] > 0)) {
|
||||
common_debug('content-length = ' . $_SERVER['CONTENT_LENGTH']);
|
||||
$this->clientError(_('Unable to handle that much POST data!'));
|
||||
if (empty($this->user)) {
|
||||
$this->clientError(_('No such user!'), 404, $this->format);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -112,6 +112,20 @@ class ApiStatusesUpdateAction extends ApiAuthAction
|
||||
return;
|
||||
}
|
||||
|
||||
// Workaround for PHP returning empty $_POST and $_FILES when POST
|
||||
// length > post_max_size in php.ini
|
||||
|
||||
if (empty($_FILES)
|
||||
&& empty($_POST)
|
||||
&& ($_SERVER['CONTENT_LENGTH'] > 0)
|
||||
) {
|
||||
$msg = _('The server was unable to handle that much POST ' .
|
||||
'data (%s bytes) due to its current configuration.');
|
||||
|
||||
$this->clientError(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
|
||||
return;
|
||||
}
|
||||
|
||||
if (empty($this->status)) {
|
||||
$this->clientError(
|
||||
'Client must provide a \'status\' parameter with a value.',
|
||||
@ -126,13 +140,6 @@ class ApiStatusesUpdateAction extends ApiAuthAction
|
||||
return;
|
||||
}
|
||||
|
||||
// Workaround for PHP returning empty $_FILES when POST length > PHP settings
|
||||
|
||||
if (empty($_FILES) && ($_SERVER['CONTENT_LENGTH'] > 0)) {
|
||||
$this->clientError(_('Unable to handle that much POST data!'));
|
||||
return;
|
||||
}
|
||||
|
||||
$status_shortened = common_shorten_links($this->status);
|
||||
|
||||
if (Notice::contentTooLong($status_shortened)) {
|
||||
|
@ -244,11 +244,25 @@ class AvatarsettingsAction extends AccountSettingsAction
|
||||
|
||||
function handlePost()
|
||||
{
|
||||
// Workaround for PHP returning empty $_POST and $_FILES when POST
|
||||
// length > post_max_size in php.ini
|
||||
|
||||
if (empty($_FILES)
|
||||
&& empty($_POST)
|
||||
&& ($_SERVER['CONTENT_LENGTH'] > 0)
|
||||
) {
|
||||
$msg = _('The server was unable to handle that much POST ' .
|
||||
'data (%s bytes) due to its current configuration.');
|
||||
|
||||
$this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
|
||||
return;
|
||||
}
|
||||
|
||||
// CSRF protection
|
||||
|
||||
$token = $this->trimmed('token');
|
||||
if (!$token || $token != common_session_token()) {
|
||||
$this->show_form(_('There was a problem with your session token. '.
|
||||
$this->showForm(_('There was a problem with your session token. '.
|
||||
'Try again, please.'));
|
||||
return;
|
||||
}
|
||||
|
@ -164,23 +164,32 @@ class PasswordsettingsAction extends AccountSettingsAction
|
||||
$this->showForm(_('Incorrect old password'));
|
||||
return;
|
||||
}
|
||||
}else{
|
||||
$oldpassword = null;
|
||||
}
|
||||
|
||||
$original = clone($user);
|
||||
$errormsg = false;
|
||||
if(! Event::handle('ChangePassword', array($user->nickname, $oldpassword, $newpassword, &$errormsg))){
|
||||
//no handler changed the password, so change the password internally
|
||||
$original = clone($user);
|
||||
|
||||
$user->password = common_munge_password($newpassword, $user->id);
|
||||
$user->password = common_munge_password($newpassword, $user->id);
|
||||
|
||||
$val = $user->validate();
|
||||
if ($val !== true) {
|
||||
$this->showForm(_('Error saving user; invalid.'));
|
||||
return;
|
||||
$val = $user->validate();
|
||||
if ($val !== true) {
|
||||
$this->showForm(_('Error saving user; invalid.'));
|
||||
return;
|
||||
}
|
||||
|
||||
if (!$user->update($original)) {
|
||||
$this->serverError(_('Can\'t save new password.'));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$user->update($original)) {
|
||||
$this->serverError(_('Can\'t save new password.'));
|
||||
return;
|
||||
}
|
||||
|
||||
$this->showForm(_('Password saved.'), true);
|
||||
if($errormsg === false)
|
||||
$this->showForm(_('Password saved.'), true);
|
||||
else
|
||||
$this->showForm($errormsg);
|
||||
}
|
||||
}
|
||||
|
@ -2,4 +2,4 @@ A bookmarklet is a small piece of javascript code used as a bookmark. This one w
|
||||
|
||||
Drag-and-drop the following link to your bookmarks bar or right-click it and add it to your browser favorites to keep it handy.
|
||||
|
||||
<a href="javascript:(function(){var%20d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='http://%%site.server%%/%%site.path%%/index.php?action=bookmarklet',l=d.location,e=encodeURIComponent,g=f+'&status_textarea=%22'+((e(s))?e(s):e(document.title))+'%22%20%E2%80%94%20'+l.href;function%20a(){if(!w.open(g,'t','toolbar=0,resizable=0,scrollbars=1,status=1,width=450,height=200')){l.href=g;}}a();})()">Post to %%site.name%%</a>
|
||||
<a href="javascript:(function(){var%20d=document,w=window,e=w.getSelection,k=d.getSelection,x=d.selection,s=(e?e():(k)?k():(x?x.createRange().text:0)),f='http://%%site.server%%/%%site.path%%/index.php?action=bookmarklet',l=d.location,e=encodeURIComponent,g=f+'&status_textarea=%E2%80%9C'+((e(s))?e(s):e(document.title))+'%E2%80%9D%20%E2%80%94%20'+l.href;function%20a(){if(!w.open(g,'t','toolbar=0,resizable=0,scrollbars=1,status=1,width=450,height=200')){l.href=g;}}a();})()">Post to %%site.name%%</a>
|
||||
|
@ -68,6 +68,7 @@ function getPath($req)
|
||||
*/
|
||||
function handleError($error)
|
||||
{
|
||||
//error_log(print_r($error,1));
|
||||
if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
|
||||
return;
|
||||
}
|
||||
|
@ -271,17 +271,20 @@ class DesignSettingsAction extends AccountSettingsAction
|
||||
|
||||
function handlePost()
|
||||
{
|
||||
// XXX: Robin's workaround for a bug in PHP where $_POST
|
||||
// and $_FILE are empty in the case that the uploaded
|
||||
// file is bigger than PHP is configured to handle.
|
||||
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
if (empty($_POST) && $_SERVER['CONTENT_LENGTH']) {
|
||||
|
||||
// Workaround for PHP returning empty $_POST and $_FILES when POST
|
||||
// length > post_max_size in php.ini
|
||||
|
||||
if (empty($_FILES)
|
||||
&& empty($_POST)
|
||||
&& ($_SERVER['CONTENT_LENGTH'] > 0)
|
||||
) {
|
||||
$msg = _('The server was unable to handle that much POST ' .
|
||||
'data (%s bytes) due to its current configuration.');
|
||||
|
||||
$this->showForm(sprintf($msg, $_SERVER['CONTENT_LENGTH']));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ class GroupList extends Widget
|
||||
|
||||
$this->out->elementStart('a', array('href' => $this->group->homeUrl(),
|
||||
'class' => 'url',
|
||||
'rel' => 'group'));
|
||||
'rel' => 'contact group'));
|
||||
$this->out->element('img', array('src' => $logo,
|
||||
'class' => 'photo avatar',
|
||||
'width' => AVATAR_STREAM_SIZE,
|
||||
@ -105,48 +105,32 @@ class GroupList extends Widget
|
||||
'alt' =>
|
||||
($this->group->fullname) ? $this->group->fullname :
|
||||
$this->group->nickname));
|
||||
$hasFN = ($this->group->fullname) ? 'nickname url uid' : 'fn org nickname url uid';
|
||||
$hasFN = ($this->group->fullname) ? 'nickname' : 'fn org nickname';
|
||||
$this->out->elementStart('span', $hasFN);
|
||||
$this->out->raw($this->highlight($this->group->nickname));
|
||||
$this->out->elementEnd('span');
|
||||
$this->out->elementEnd('a');
|
||||
|
||||
if ($this->group->fullname) {
|
||||
$this->out->elementStart('dl', 'entity_fn');
|
||||
$this->out->element('dt', null, 'Full name');
|
||||
$this->out->elementStart('dd');
|
||||
$this->out->elementStart('span', 'fn org');
|
||||
$this->out->raw($this->highlight($this->group->fullname));
|
||||
$this->out->elementEnd('span');
|
||||
$this->out->elementEnd('dd');
|
||||
$this->out->elementEnd('dl');
|
||||
}
|
||||
if ($this->group->location) {
|
||||
$this->out->elementStart('dl', 'entity_location');
|
||||
$this->out->element('dt', null, _('Location'));
|
||||
$this->out->elementStart('dd', 'label');
|
||||
$this->out->elementStart('span', 'label');
|
||||
$this->out->raw($this->highlight($this->group->location));
|
||||
$this->out->elementEnd('dd');
|
||||
$this->out->elementEnd('dl');
|
||||
$this->out->elementEnd('span');
|
||||
}
|
||||
if ($this->group->homepage) {
|
||||
$this->out->elementStart('dl', 'entity_url');
|
||||
$this->out->element('dt', null, _('URL'));
|
||||
$this->out->elementStart('dd');
|
||||
$this->out->elementStart('a', array('href' => $this->group->homepage,
|
||||
'class' => 'url'));
|
||||
$this->out->raw($this->highlight($this->group->homepage));
|
||||
$this->out->elementEnd('a');
|
||||
$this->out->elementEnd('dd');
|
||||
$this->out->elementEnd('dl');
|
||||
}
|
||||
if ($this->group->description) {
|
||||
$this->out->elementStart('dl', 'entity_note');
|
||||
$this->out->element('dt', null, _('Note'));
|
||||
$this->out->elementStart('dd', 'note');
|
||||
$this->out->elementStart('p', 'note');
|
||||
$this->out->raw($this->highlight($this->group->description));
|
||||
$this->out->elementEnd('dd');
|
||||
$this->out->elementEnd('dl');
|
||||
$this->out->elementEnd('p');
|
||||
}
|
||||
|
||||
# If we're on a list with an owner (subscriptions or subscribers)...
|
||||
|
@ -100,38 +100,39 @@ function get_nice_language_list()
|
||||
* @return array mapping of language codes to language info
|
||||
*/
|
||||
function get_all_languages() {
|
||||
return array(
|
||||
'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'),
|
||||
'ca' => array('q' => 0.5, 'lang' => 'ca', 'name' => 'Catalan', 'direction' => 'ltr'),
|
||||
'cs' => array('q' => 0.5, 'lang' => 'cs', 'name' => 'Czech', 'direction' => 'ltr'),
|
||||
'de' => array('q' => 0.8, 'lang' => 'de', 'name' => 'German', 'direction' => 'ltr'),
|
||||
'el' => array('q' => 0.1, 'lang' => 'el', 'name' => 'Greek', 'direction' => 'ltr'),
|
||||
'en-us' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'),
|
||||
'en-gb' => array('q' => 1, 'lang' => 'en_GB', 'name' => 'English (British)', 'direction' => 'ltr'),
|
||||
'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'),
|
||||
'es' => array('q' => 1, 'lang' => 'es', 'name' => 'Spanish', 'direction' => 'ltr'),
|
||||
'fi' => array('q' => 1, 'lang' => 'fi', 'name' => 'Finnish', 'direction' => 'ltr'),
|
||||
'fr-fr' => array('q' => 1, 'lang' => 'fr', 'name' => 'French', 'direction' => 'ltr'),
|
||||
'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Galician', 'direction' => 'ltr'),
|
||||
'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'),
|
||||
'it' => array('q' => 1, 'lang' => 'it', 'name' => 'Italian', 'direction' => 'ltr'),
|
||||
'jp' => array('q' => 0.5, 'lang' => 'ja', 'name' => 'Japanese', 'direction' => 'ltr'),
|
||||
'ko' => array('q' => 0.9, 'lang' => 'ko', 'name' => 'Korean', 'direction' => 'ltr'),
|
||||
'mk' => array('q' => 0.5, 'lang' => 'mk', 'name' => 'Macedonian', 'direction' => 'ltr'),
|
||||
'nb' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'),
|
||||
'no' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'),
|
||||
'nn' => array('q' => 1, 'lang' => 'nn', 'name' => 'Norwegian (Nynorsk)', 'direction' => 'ltr'),
|
||||
'nl' => array('q' => 0.5, 'lang' => 'nl', 'name' => 'Dutch', 'direction' => 'ltr'),
|
||||
'pl' => array('q' => 0.5, 'lang' => 'pl', 'name' => 'Polish', 'direction' => 'ltr'),
|
||||
'pt' => array('q' => 0.1, 'lang' => 'pt', 'name' => 'Portuguese', 'direction' => 'ltr'),
|
||||
'pt-br' => array('q' => 0.9, 'lang' => 'pt_BR', 'name' => 'Portuguese Brazil', 'direction' => 'ltr'),
|
||||
'ru' => array('q' => 0.9, 'lang' => 'ru', 'name' => 'Russian', 'direction' => 'ltr'),
|
||||
'sv' => array('q' => 0.8, 'lang' => 'sv', 'name' => 'Swedish', 'direction' => 'ltr'),
|
||||
'te' => array('q' => 0.3, 'lang' => 'te', 'name' => 'Telugu', 'direction' => 'ltr'),
|
||||
'tr' => array('q' => 0.5, 'lang' => 'tr', 'name' => 'Turkish', 'direction' => 'ltr'),
|
||||
'uk' => array('q' => 1, 'lang' => 'uk', 'name' => 'Ukrainian', 'direction' => 'ltr'),
|
||||
'vi' => array('q' => 0.8, 'lang' => 'vi', 'name' => 'Vietnamese', 'direction' => 'ltr'),
|
||||
'zh-cn' => array('q' => 0.9, 'lang' => 'zh_CN', 'name' => 'Chinese (Simplified)', 'direction' => 'ltr'),
|
||||
'zh-hant' => array('q' => 0.2, 'lang' => 'zh_TW', 'name' => 'Chinese (Taiwanese)', 'direction' => 'ltr'),
|
||||
);
|
||||
return array(
|
||||
'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'),
|
||||
'ca' => array('q' => 0.5, 'lang' => 'ca', 'name' => 'Catalan', 'direction' => 'ltr'),
|
||||
'cs' => array('q' => 0.5, 'lang' => 'cs', 'name' => 'Czech', 'direction' => 'ltr'),
|
||||
'de' => array('q' => 0.8, 'lang' => 'de', 'name' => 'German', 'direction' => 'ltr'),
|
||||
'el' => array('q' => 0.1, 'lang' => 'el', 'name' => 'Greek', 'direction' => 'ltr'),
|
||||
'en-us' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'),
|
||||
'en-gb' => array('q' => 1, 'lang' => 'en_GB', 'name' => 'English (British)', 'direction' => 'ltr'),
|
||||
'en' => array('q' => 1, 'lang' => 'en', 'name' => 'English (US)', 'direction' => 'ltr'),
|
||||
'es' => array('q' => 1, 'lang' => 'es', 'name' => 'Spanish', 'direction' => 'ltr'),
|
||||
'fi' => array('q' => 1, 'lang' => 'fi', 'name' => 'Finnish', 'direction' => 'ltr'),
|
||||
'fr-fr' => array('q' => 1, 'lang' => 'fr', 'name' => 'French', 'direction' => 'ltr'),
|
||||
'ga' => array('q' => 0.5, 'lang' => 'ga', 'name' => 'Galician', 'direction' => 'ltr'),
|
||||
'he' => array('q' => 0.5, 'lang' => 'he', 'name' => 'Hebrew', 'direction' => 'rtl'),
|
||||
'is' => array('q' => 0.1, 'lang' => 'is', 'name' => 'Icelandic', 'direction' => 'ltr'),
|
||||
'it' => array('q' => 1, 'lang' => 'it', 'name' => 'Italian', 'direction' => 'ltr'),
|
||||
'jp' => array('q' => 0.5, 'lang' => 'ja', 'name' => 'Japanese', 'direction' => 'ltr'),
|
||||
'ko' => array('q' => 0.9, 'lang' => 'ko', 'name' => 'Korean', 'direction' => 'ltr'),
|
||||
'mk' => array('q' => 0.5, 'lang' => 'mk', 'name' => 'Macedonian', 'direction' => 'ltr'),
|
||||
'nb' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'),
|
||||
'no' => array('q' => 0.1, 'lang' => 'nb', 'name' => 'Norwegian (Bokmål)', 'direction' => 'ltr'),
|
||||
'nn' => array('q' => 1, 'lang' => 'nn', 'name' => 'Norwegian (Nynorsk)', 'direction' => 'ltr'),
|
||||
'nl' => array('q' => 0.5, 'lang' => 'nl', 'name' => 'Dutch', 'direction' => 'ltr'),
|
||||
'pl' => array('q' => 0.5, 'lang' => 'pl', 'name' => 'Polish', 'direction' => 'ltr'),
|
||||
'pt' => array('q' => 0.1, 'lang' => 'pt', 'name' => 'Portuguese', 'direction' => 'ltr'),
|
||||
'pt-br' => array('q' => 0.9, 'lang' => 'pt_BR', 'name' => 'Portuguese Brazil', 'direction' => 'ltr'),
|
||||
'ru' => array('q' => 0.9, 'lang' => 'ru', 'name' => 'Russian', 'direction' => 'ltr'),
|
||||
'sv' => array('q' => 0.8, 'lang' => 'sv', 'name' => 'Swedish', 'direction' => 'ltr'),
|
||||
'te' => array('q' => 0.3, 'lang' => 'te', 'name' => 'Telugu', 'direction' => 'ltr'),
|
||||
'tr' => array('q' => 0.5, 'lang' => 'tr', 'name' => 'Turkish', 'direction' => 'ltr'),
|
||||
'uk' => array('q' => 1, 'lang' => 'uk', 'name' => 'Ukrainian', 'direction' => 'ltr'),
|
||||
'vi' => array('q' => 0.8, 'lang' => 'vi', 'name' => 'Vietnamese', 'direction' => 'ltr'),
|
||||
'zh-cn' => array('q' => 0.9, 'lang' => 'zh_CN', 'name' => 'Chinese (Simplified)', 'direction' => 'ltr'),
|
||||
'zh-hant' => array('q' => 0.2, 'lang' => 'zh_TW', 'name' => 'Chinese (Taiwanese)', 'direction' => 'ltr'),
|
||||
);
|
||||
}
|
||||
|
@ -182,7 +182,8 @@ class ProfileListItem extends Widget
|
||||
{
|
||||
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
|
||||
$this->out->elementStart('a', array('href' => $this->profile->profileurl,
|
||||
'class' => 'url'));
|
||||
'class' => 'url',
|
||||
'rel' => 'contact'));
|
||||
$this->out->element('img', array('src' => ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_STREAM_SIZE),
|
||||
'class' => 'photo avatar',
|
||||
'width' => AVATAR_STREAM_SIZE,
|
||||
@ -190,7 +191,7 @@ class ProfileListItem extends Widget
|
||||
'alt' =>
|
||||
($this->profile->fullname) ? $this->profile->fullname :
|
||||
$this->profile->nickname));
|
||||
$hasFN = ($this->profile->fullname !== '') ? 'nickname' : 'fn nickname';
|
||||
$hasFN = (!empty($this->profile->fullname)) ? 'nickname' : 'fn nickname';
|
||||
$this->out->elementStart('span', $hasFN);
|
||||
$this->out->raw($this->highlight($this->profile->nickname));
|
||||
$this->out->elementEnd('span');
|
||||
|
@ -122,7 +122,7 @@ class Router
|
||||
// exceptional
|
||||
|
||||
$m->connect('main/remote', array('action' => 'remotesubscribe'));
|
||||
$m->connect('main/remote?nickname=:nickname', array('action' => 'remotesubscribe'), array('nickname' => '[A-Za-z0-9_-]+'));
|
||||
$m->connect('main/remote?nickname=:nickname', array('action' => 'remotesubscribe'), array('nickname' => '['.NICKNAME_FMT.']+'));
|
||||
|
||||
foreach (Router::$bare as $action) {
|
||||
$m->connect('index.php?action=' . $action, array('action' => $action));
|
||||
@ -166,10 +166,10 @@ class Router
|
||||
$m->connect('notice/new', array('action' => 'newnotice'));
|
||||
$m->connect('notice/new?replyto=:replyto',
|
||||
array('action' => 'newnotice'),
|
||||
array('replyto' => '[A-Za-z0-9_-]+'));
|
||||
array('replyto' => '['.NICKNAME_FMT.']+'));
|
||||
$m->connect('notice/new?replyto=:replyto&inreplyto=:inreplyto',
|
||||
array('action' => 'newnotice'),
|
||||
array('replyto' => '[A-Za-z0-9_-]+'),
|
||||
array('replyto' => '['.NICKNAME_FMT.']+'),
|
||||
array('inreplyto' => '[0-9]+'));
|
||||
|
||||
$m->connect('notice/:notice/file',
|
||||
@ -193,7 +193,7 @@ class Router
|
||||
array('id' => '[0-9]+'));
|
||||
|
||||
$m->connect('message/new', array('action' => 'newmessage'));
|
||||
$m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '[A-Za-z0-9_-]+'));
|
||||
$m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '['.NICKNAME_FMT.']+'));
|
||||
$m->connect('message/:message',
|
||||
array('action' => 'showmessage'),
|
||||
array('message' => '[0-9]+'));
|
||||
@ -277,7 +277,7 @@ class Router
|
||||
|
||||
$m->connect('api/statuses/friends_timeline/:id.:format',
|
||||
array('action' => 'ApiTimelineFriends',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
$m->connect('api/statuses/home_timeline.:format',
|
||||
array('action' => 'ApiTimelineFriends',
|
||||
@ -285,7 +285,7 @@ class Router
|
||||
|
||||
$m->connect('api/statuses/home_timeline/:id.:format',
|
||||
array('action' => 'ApiTimelineFriends',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/user_timeline.:format',
|
||||
@ -294,7 +294,7 @@ class Router
|
||||
|
||||
$m->connect('api/statuses/user_timeline/:id.:format',
|
||||
array('action' => 'ApiTimelineUser',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/mentions.:format',
|
||||
@ -303,7 +303,7 @@ class Router
|
||||
|
||||
$m->connect('api/statuses/mentions/:id.:format',
|
||||
array('action' => 'ApiTimelineMentions',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/replies.:format',
|
||||
@ -312,7 +312,7 @@ class Router
|
||||
|
||||
$m->connect('api/statuses/replies/:id.:format',
|
||||
array('action' => 'ApiTimelineMentions',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json|rss|atom)'));
|
||||
|
||||
$m->connect('api/statuses/friends.:format',
|
||||
@ -321,7 +321,7 @@ class Router
|
||||
|
||||
$m->connect('api/statuses/friends/:id.:format',
|
||||
array('action' => 'ApiUserFriends',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/statuses/followers.:format',
|
||||
@ -330,7 +330,7 @@ class Router
|
||||
|
||||
$m->connect('api/statuses/followers/:id.:format',
|
||||
array('action' => 'ApiUserFollowers',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/statuses/show.:format',
|
||||
@ -359,7 +359,7 @@ class Router
|
||||
|
||||
$m->connect('api/users/show/:id.:format',
|
||||
array('action' => 'ApiUserShow',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
// direct messages
|
||||
@ -397,12 +397,12 @@ class Router
|
||||
|
||||
$m->connect('api/friendships/create/:id.:format',
|
||||
array('action' => 'ApiFriendshipsCreate',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/friendships/destroy/:id.:format',
|
||||
array('action' => 'ApiFriendshipsDestroy',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
// Social graph
|
||||
@ -447,28 +447,28 @@ class Router
|
||||
|
||||
$m->connect('api/favorites/:id.:format',
|
||||
array('action' => 'ApiTimelineFavorites',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xmljson|rss|atom)'));
|
||||
|
||||
$m->connect('api/favorites/create/:id.:format',
|
||||
array('action' => 'ApiFavoriteCreate',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/favorites/destroy/:id.:format',
|
||||
array('action' => 'ApiFavoriteDestroy',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
// blocks
|
||||
|
||||
$m->connect('api/blocks/create/:id.:format',
|
||||
array('action' => 'ApiBlockCreate',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
|
||||
$m->connect('api/blocks/destroy/:id.:format',
|
||||
array('action' => 'ApiBlockDestroy',
|
||||
'id' => '[a-zA-Z0-9]+',
|
||||
'id' => '['.NICKNAME_FMT.']+',
|
||||
'format' => '(xml|json)'));
|
||||
// help
|
||||
|
||||
@ -584,14 +584,14 @@ class Router
|
||||
'replies', 'inbox', 'outbox', 'microsummary') as $a) {
|
||||
$m->connect(':nickname/'.$a,
|
||||
array('action' => $a),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
array('nickname' => '['.NICKNAME_FMT.']{1,64}'));
|
||||
}
|
||||
|
||||
foreach (array('subscriptions', 'subscribers') as $a) {
|
||||
$m->connect(':nickname/'.$a.'/:tag',
|
||||
array('action' => $a),
|
||||
array('tag' => '[a-zA-Z0-9]+',
|
||||
'nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
'nickname' => '['.NICKNAME_FMT.']{1,64}'));
|
||||
}
|
||||
|
||||
foreach (array('rss', 'groups') as $a) {
|
||||
@ -603,31 +603,31 @@ class Router
|
||||
foreach (array('all', 'replies', 'favorites') as $a) {
|
||||
$m->connect(':nickname/'.$a.'/rss',
|
||||
array('action' => $a.'rss'),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
array('nickname' => '['.NICKNAME_FMT.']{1,64}'));
|
||||
}
|
||||
|
||||
$m->connect(':nickname/favorites',
|
||||
array('action' => 'showfavorites'),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
array('nickname' => '['.NICKNAME_FMT.']{1,64}'));
|
||||
|
||||
$m->connect(':nickname/avatar/:size',
|
||||
array('action' => 'avatarbynickname'),
|
||||
array('size' => '(original|96|48|24)',
|
||||
'nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
'nickname' => '['.NICKNAME_FMT.']{1,64}'));
|
||||
|
||||
$m->connect(':nickname/tag/:tag/rss',
|
||||
array('action' => 'userrss'),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'),
|
||||
array('nickname' => '['.NICKNAME_FMT.']{1,64}'),
|
||||
array('tag' => '[a-zA-Z0-9]+'));
|
||||
|
||||
$m->connect(':nickname/tag/:tag',
|
||||
array('action' => 'showstream'),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'),
|
||||
array('nickname' => '['.NICKNAME_FMT.']{1,64}'),
|
||||
array('tag' => '[a-zA-Z0-9]+'));
|
||||
|
||||
$m->connect(':nickname',
|
||||
array('action' => 'showstream'),
|
||||
array('nickname' => '[a-zA-Z0-9]{1,64}'));
|
||||
array('nickname' => '['.NICKNAME_FMT.']{1,64}'));
|
||||
|
||||
Event::handle('RouterInitialized', array($m));
|
||||
}
|
||||
|
45
lib/util.php
45
lib/util.php
@ -119,22 +119,41 @@ function common_munge_password($password, $id)
|
||||
// check if a username exists and has matching password
|
||||
function common_check_user($nickname, $password)
|
||||
{
|
||||
// NEVER allow blank passwords, even if they match the DB
|
||||
if (mb_strlen($password) == 0) {
|
||||
return false;
|
||||
}
|
||||
$authenticated = false;
|
||||
$eventResult = Event::handle('CheckPassword', array($nickname, $password, &$authenticated));
|
||||
$user = User::staticGet('nickname', $nickname);
|
||||
if (is_null($user) || $user === false) {
|
||||
return false;
|
||||
//user does not exist
|
||||
if($authenticated){
|
||||
//a handler said these are valid credentials, so see if a plugin wants to auto register the user
|
||||
if(Event::handle('AutoRegister', array($nickname))){
|
||||
//no handler registered the user
|
||||
return false;
|
||||
}else{
|
||||
$user = User::staticGet('nickname', $nickname);
|
||||
if (is_null($user) || $user === false) {
|
||||
common_log(LOG_WARNING, "A plugin handled the AutoRegister event, but did not actually register the user, nickname: $nickname");
|
||||
return false;
|
||||
}else{
|
||||
return $user;
|
||||
}
|
||||
}
|
||||
}else{
|
||||
//no handler indicated the credentials were valid, and we know their not valid because the user isn't in the database
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
$authenticated = false;
|
||||
Event::handle('CheckPassword', array($nickname, $password, &$authenticated));
|
||||
if(! $authenticated){
|
||||
//no handler asserted the user, so check ourselves
|
||||
if (0 == strcmp(common_munge_password($password, $user->id),
|
||||
$user->password)) {
|
||||
//internal checking passed
|
||||
$authenticated = true;
|
||||
if($eventResult && ! $authenticated){
|
||||
//no handler was authoritative
|
||||
if (mb_strlen($password) == 0) {
|
||||
// NEVER allow blank passwords, even if they match the DB
|
||||
return false;
|
||||
}else{
|
||||
if (0 == strcmp(common_munge_password($password, $user->id),
|
||||
$user->password)) {
|
||||
//internal checking passed
|
||||
$authenticated = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if($authenticated){
|
||||
|
Binary file not shown.
@ -1,23 +1,16 @@
|
||||
# Translation of StatusNet to Bulgarian
|
||||
#
|
||||
# --
|
||||
# #-#-#-#-# statusnet.pot (StatusNet 0.6.4) #-#-#-#-#
|
||||
# StatusNet Bulgarian translation.
|
||||
# Copyright (C) 2008
|
||||
# This file is distributed under the same license as the StatusNet package.
|
||||
# Yasen Pramatarov <yasen@lindeas.com>, 2008
|
||||
# Stoyan Zhekov <statusnet@zh.otherinbox.com>, 2008
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:57:20+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:42:55+0000\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: bg\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6867,7 +6860,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Проблем при записване на бележката."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Съобщение до %1$s в %2$s"
|
||||
@ -7183,8 +7176,9 @@ msgid "groups on %s"
|
||||
msgstr "Търсене на групи в сайта"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Аватарът е обновен."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7271,9 +7265,9 @@ msgstr ""
|
||||
"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Бележки от %1$s в %2$s."
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7281,8 +7275,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Всички бележки, намерени с \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Свързване"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7330,14 +7325,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Не е получен token за одобрение."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Емисия с бележки на %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Емисия с бележки на %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7352,17 +7347,17 @@ msgstr "Съобщение до %1$s в %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Емисия с любимите бележки на %s"
|
||||
msgstr "Емисия с приятелите на %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Емисия с любимите бележки на %s"
|
||||
msgstr "Емисия с приятелите на %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Емисия с любимите бележки на %s"
|
||||
msgstr "Емисия с приятелите на %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7375,7 +7370,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "Емисия с бележки на %s"
|
||||
msgstr "Изходяща кутия за %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7583,7 +7578,7 @@ msgstr "Опишете групата или темата й в до 140 бук
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Емисия с бележки на %s"
|
||||
msgstr "Нова бележка"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7643,7 +7638,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Грешка при изтриване на любима бележка."
|
||||
msgstr "Грешка при изтегляне на общия поток"
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,21 +1,16 @@
|
||||
# Translation of StatusNet to Catalan
|
||||
#
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:57:25+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:42:59+0000\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ca\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6886,7 +6881,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Problema en guardar l'avís."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Missatge per a %1$s a %2$s"
|
||||
@ -7202,8 +7197,9 @@ msgid "groups on %s"
|
||||
msgstr "Accions del grup"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar actualitzat."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7291,9 +7287,9 @@ msgstr ""
|
||||
"[OpenID] (%%action.openidlogin%%)."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Actualitzacions de %1$s a %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7301,8 +7297,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Totes les actualitzacions que corresponen a la frase a cercar \"%s\" "
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Connectar-se"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7351,19 +7348,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "No s'ha pogut obtenir un senyal de petició."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed d'avisos de %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed d'avisos de %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Feed d'avisos del grup %s"
|
||||
msgstr "Feed d'avisos de %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7373,17 +7370,17 @@ msgstr "Missatge per a %1$s a %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Feed per favorits de %s"
|
||||
msgstr "Feed per a amics de %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Feed per favorits de %s"
|
||||
msgstr "Feed per a amics de %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Feed per favorits de %s"
|
||||
msgstr "Feed per a amics de %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7396,7 +7393,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "%s grup"
|
||||
msgstr "Safata de sortida per %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7604,7 +7601,7 @@ msgstr "Descriu el grup amb 140 caràcters"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Feed d'avisos de %s"
|
||||
msgstr "Nou avís"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7664,7 +7661,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "No pots eliminar favorits."
|
||||
msgstr "No s'ha pogut recuperar la conversa pública."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,21 +1,16 @@
|
||||
# Translation of StatusNet to Czech
|
||||
#
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:57:31+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:04+0000\n"
|
||||
"Language-Team: Czech\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: cs\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6803,7 +6798,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Problém při ukládání sdělení"
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7103,14 +7098,14 @@ msgid "Could not remove user %s to group %s."
|
||||
msgstr "Nelze vytvořit OpenID z: %s"
|
||||
|
||||
#: actions/apigrouplist.php:95
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
msgstr "Profil"
|
||||
|
||||
#: actions/apigrouplist.php:103
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr ""
|
||||
msgstr "Neodeslal jste nám profil"
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, php-format
|
||||
@ -7118,8 +7113,9 @@ msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Obrázek nahrán"
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7151,9 +7147,9 @@ msgid "description is too long (max %d chars)."
|
||||
msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "Mikroblog od %s"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
#, fuzzy
|
||||
@ -7186,9 +7182,9 @@ msgid "Cannot read file."
|
||||
msgstr "Žádné takové oznámení."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "Mikroblog od %s"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7206,9 +7202,9 @@ msgstr ""
|
||||
"action.openidlogin%%)."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Mikroblog od %s"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7216,8 +7212,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Všechny položky obsahující \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Připojit"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7265,14 +7262,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Nelze získat řetězec požadavku."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed sdělení pro %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed sdělení pro %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7412,7 +7409,7 @@ msgstr "Nové sdělení"
|
||||
#: lib/command.php:88
|
||||
#, fuzzy, php-format
|
||||
msgid "Could not find a user with nickname %s"
|
||||
msgstr "Nelze přesměrovat na server: %s"
|
||||
msgstr "Nelze aktualizovat uživatele"
|
||||
|
||||
#: lib/command.php:92
|
||||
msgid "It does not make a lot of sense to nudge yourself!"
|
||||
@ -7516,7 +7513,7 @@ msgstr "Popiš sebe a své zájmy ve 140 znacích"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Feed sdělení pro %s"
|
||||
msgstr "Nové sdělení"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7574,8 +7571,9 @@ msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "Nelze aktualizovat uživatele"
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -2,21 +2,16 @@
|
||||
#
|
||||
# Author@translatewiki.net: Umherirrender
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:57:37+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:08+0000\n"
|
||||
"Language-Team: German\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: de\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -671,7 +666,7 @@ msgstr ""
|
||||
"\n"
|
||||
"Danke für deine Anmeldung, wir hoffen das dir der Service gefällt.\n"
|
||||
"\n"
|
||||
"Als nächstes möchtest du eventuell ...\n"
|
||||
"Als nächstes möchtest du eventuell …\n"
|
||||
"\n"
|
||||
"* zu [deinem Profil gehen](%s) und deine erste Nachricht schreiben\n"
|
||||
"* deine [Jabber/GTalk Adresse](%%%%action.imsettings%%%%) eintragen damit du "
|
||||
@ -3330,12 +3325,10 @@ msgstr "Früher"
|
||||
#: actions/register.php:159 actions/remotesubscribe.php:77
|
||||
#: actions/smssettings.php:228 actions/unsubscribe.php:69
|
||||
#: actions/userauthorization.php:52
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token. Try again, please."
|
||||
msgstr "Es gab ein Problem mit deinem Sitzungstoken. Bitte versuche es erneut."
|
||||
|
||||
#: actions/disfavor.php:55 actions/disfavor.php:81
|
||||
#, fuzzy
|
||||
msgid "This notice is not a favorite!"
|
||||
msgstr "Diese Nachricht ist kein Favorit!"
|
||||
|
||||
@ -3345,20 +3338,17 @@ msgid "Could not delete favorite."
|
||||
msgstr "Konnte Favoriten nicht löschen."
|
||||
|
||||
#: actions/disfavor.php:72 lib/favorform.php:140
|
||||
#, fuzzy
|
||||
msgid "Favor"
|
||||
msgstr "Zu Favoriten hinzufügen"
|
||||
|
||||
#: actions/emailsettings.php:92 actions/emailsettings.php:157
|
||||
#: actions/emailsettings.php:163
|
||||
#, fuzzy
|
||||
msgid "Send me email when someone adds my notice as a favorite."
|
||||
msgstr ""
|
||||
"Mir eine E-Mail schicken, wenn jemand meine Nachricht als Favorit speichert."
|
||||
|
||||
#: actions/emailsettings.php:95 actions/emailsettings.php:163
|
||||
#: actions/emailsettings.php:169
|
||||
#, fuzzy
|
||||
msgid "Send me email when someone sends me a private message."
|
||||
msgstr ""
|
||||
"Mir eine E-Mail schicken, wenn mir jemand eine private Nachricht schickt."
|
||||
@ -3366,7 +3356,6 @@ msgstr ""
|
||||
#: actions/favor.php:53 actions/twitapifavorites.php:142 actions/favor.php:81
|
||||
#: actions/twitapifavorites.php:118 actions/twitapifavorites.php:124
|
||||
#: actions/favor.php:79
|
||||
#, fuzzy
|
||||
msgid "This notice is already a favorite!"
|
||||
msgstr "Diese Nachricht ist bereits ein Favorit!"
|
||||
|
||||
@ -3387,23 +3376,23 @@ msgstr "Aus Favoriten entfernen"
|
||||
#: actions/favoritesrss.php:60 actions/showfavorites.php:47
|
||||
#: actions/favoritesrss.php:100 actions/showfavorites.php:77
|
||||
#: actions/favoritesrss.php:110
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s favorite notices"
|
||||
msgstr "%ss Favoriten"
|
||||
|
||||
#: actions/favoritesrss.php:64 actions/favoritesrss.php:104
|
||||
#: actions/favoritesrss.php:114
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Feed of favorite notices of %s"
|
||||
msgstr "Feed von %ss Favoriten"
|
||||
|
||||
#: actions/inbox.php:28 actions/inbox.php:59
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Inbox for %s - page %d"
|
||||
msgstr "Posteingang von %s - Seite %d"
|
||||
|
||||
#: actions/inbox.php:30 actions/inbox.php:62
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Inbox for %s"
|
||||
msgstr "Posteingang von %s"
|
||||
|
||||
@ -3415,7 +3404,7 @@ msgstr ""
|
||||
"enthält."
|
||||
|
||||
#: actions/invite.php:178 actions/invite.php:213
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$s has invited you to join them on %2$s (%3$s).\n"
|
||||
"\n"
|
||||
@ -3425,17 +3414,14 @@ msgstr ""
|
||||
|
||||
#: actions/login.php:104 actions/login.php:235 actions/openidlogin.php:108
|
||||
#: actions/register.php:416
|
||||
#, fuzzy
|
||||
msgid "Automatically login in the future; "
|
||||
msgstr "In Zukunft automatisch anmelden; "
|
||||
|
||||
#: actions/login.php:122 actions/login.php:264
|
||||
#, fuzzy
|
||||
msgid "For security reasons, please re-enter your "
|
||||
msgstr "Aus Sicherheitsgründen, bitte erneutes Eingeben des "
|
||||
msgstr "Aus Sicherheitsgründen, bitte erneut eingeben "
|
||||
|
||||
#: actions/login.php:126 actions/login.php:268
|
||||
#, fuzzy
|
||||
msgid "Login with your username and password. "
|
||||
msgstr "Anmelden mit deinem Benutzernamen und Passwort. "
|
||||
|
||||
@ -3443,9 +3429,9 @@ msgstr "Anmelden mit deinem Benutzernamen und Passwort. "
|
||||
#: actions/twitapidirect_messages.php:141 actions/newmessage.php:148
|
||||
#: actions/twitapidirect_messages.php:150
|
||||
#: actions/twitapidirect_messages.php:145
|
||||
#, fuzzy
|
||||
msgid "That's too long. Max message size is 140 chars."
|
||||
msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
|
||||
msgstr ""
|
||||
"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
|
||||
|
||||
#: actions/newmessage.php:65 actions/newmessage.php:128
|
||||
#: actions/newmessage.php:155 actions/newmessage.php:158
|
||||
@ -3467,7 +3453,6 @@ msgstr "Du kannst diesem Benutzer keine Nachricht schicken."
|
||||
#: actions/twitapidirect_messages.php:167 lib/command.php:240
|
||||
#: actions/twitapidirect_messages.php:163 lib/command.php:233
|
||||
#: actions/newmessage.php:164 lib/command.php:370
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Don't send a message to yourself; just say it to yourself quietly instead."
|
||||
msgstr ""
|
||||
@ -3485,12 +3470,11 @@ msgid "New message"
|
||||
msgstr "Neue Nachricht"
|
||||
|
||||
#: actions/noticesearch.php:95 actions/noticesearch.php:146
|
||||
#, fuzzy
|
||||
msgid "Notice without matching profile"
|
||||
msgstr "Nachricht ohne entsprechendes Profil"
|
||||
|
||||
#: actions/openidsettings.php:28 actions/openidsettings.php:70
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "[OpenID](%%doc.openid%%) lets you log into many sites "
|
||||
msgstr ""
|
||||
"Mit [OpenID](%%doc.openid%%) kannst du dich auf mehreren Seiten anmelden "
|
||||
@ -3500,40 +3484,36 @@ msgid "If you want to add an OpenID to your account, "
|
||||
msgstr "Wenn du deinem Konto eine OpenID hinzufügen möchtest, "
|
||||
|
||||
#: actions/openidsettings.php:74
|
||||
#, fuzzy
|
||||
msgid "Removing your only OpenID would make it impossible to log in! "
|
||||
msgstr ""
|
||||
"Das Entfernen deiner einzigen OpenID würde die Anmeldung unmöglich machen!"
|
||||
|
||||
#: actions/openidsettings.php:87 actions/openidsettings.php:143
|
||||
#, fuzzy
|
||||
msgid "You can remove an OpenID from your account "
|
||||
msgstr "Du kannst eine OpenID von deinem Konto entfernen "
|
||||
|
||||
#: actions/outbox.php:28 actions/outbox.php:58
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Outbox for %s - page %d"
|
||||
msgstr "Postausgang von %s - Seite %d"
|
||||
|
||||
#: actions/outbox.php:30 actions/outbox.php:61
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Outbox for %s"
|
||||
msgstr "Postausgang von %s"
|
||||
|
||||
#: actions/outbox.php:53 actions/outbox.php:116
|
||||
#, fuzzy
|
||||
msgid "This is your outbox, which lists private messages you have sent."
|
||||
msgstr ""
|
||||
"Das hier ist dein Postausgang, er beinhaltet deine gesendeten Nachrichten."
|
||||
|
||||
#: actions/peoplesearch.php:28 actions/peoplesearch.php:52
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Search for people on %%site.name%% by their name, location, or interests. "
|
||||
msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen."
|
||||
msgstr "Suche nach Leuten auf %%site.name%% nach Name, Ort oder Interessen. "
|
||||
|
||||
#: actions/profilesettings.php:27 actions/profilesettings.php:69
|
||||
#, fuzzy
|
||||
msgid "You can update your personal profile info here "
|
||||
msgstr "Du kannst dein persönliches Profil hier aktualisieren "
|
||||
|
||||
@ -3547,7 +3527,6 @@ msgstr "Du kannst dein persönliches Profil hier aktualisieren "
|
||||
#: actions/remotesubscribe.php:364 actions/userauthorization.php:215
|
||||
#: actions/userrss.php:103 actions/grouplogo.php:178
|
||||
#: actions/remotesubscribe.php:191 actions/userauthorization.php:72
|
||||
#, fuzzy
|
||||
msgid "User without matching profile"
|
||||
msgstr "Benutzer ohne passendes Profil"
|
||||
|
||||
@ -3556,22 +3535,18 @@ msgid "This confirmation code is too old. "
|
||||
msgstr "Dieser Bestätigungscode ist zu alt. "
|
||||
|
||||
#: actions/recoverpassword.php:141 actions/recoverpassword.php:152
|
||||
#, fuzzy
|
||||
msgid "If you've forgotten or lost your"
|
||||
msgstr "Keine Erinnerung mehr an dein"
|
||||
|
||||
#: actions/recoverpassword.php:154 actions/recoverpassword.php:158
|
||||
#, fuzzy
|
||||
msgid "You've been identified. Enter a "
|
||||
msgstr "Du wurdest identifiziert. Eingabe eines "
|
||||
|
||||
#: actions/recoverpassword.php:169 actions/recoverpassword.php:188
|
||||
#, fuzzy
|
||||
msgid "Your nickname on this server, "
|
||||
msgstr "Dein Benutzername auf diesem Server, "
|
||||
|
||||
#: actions/recoverpassword.php:271 actions/recoverpassword.php:304
|
||||
#, fuzzy
|
||||
msgid "Instructions for recovering your password "
|
||||
msgstr "Anweisungen zur Passwort-Wiederherstellung "
|
||||
|
||||
@ -3592,21 +3567,20 @@ msgid ""
|
||||
"want to..."
|
||||
msgstr ""
|
||||
"Gratuliere, %s! Und willkommen auf %%%%site.name%%%%. Jetzt möchtest du "
|
||||
"vielleicht..."
|
||||
"vielleicht …"
|
||||
|
||||
#: actions/register.php:227
|
||||
#, fuzzy
|
||||
msgid "(You should receive a message by email momentarily, with "
|
||||
msgstr "(Du solltest jeden Moment eine E-Mail erhalten mit "
|
||||
|
||||
#: actions/remotesubscribe.php:51 actions/remotesubscribe.php:74
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "To subscribe, you can [login](%%action.login%%),"
|
||||
msgstr "Zum Abonnieren bitte [anmelden](%%action.login%%),"
|
||||
|
||||
#: actions/showfavorites.php:61 actions/showfavorites.php:145
|
||||
#: actions/showfavorites.php:147
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Feed for favorites of %s"
|
||||
msgstr "Feed der Favoriten von %s"
|
||||
|
||||
@ -3614,37 +3588,33 @@ msgstr "Feed der Favoriten von %s"
|
||||
#: actions/showfavorites.php:202 actions/twitapifavorites.php:59
|
||||
#: actions/showfavorites.php:179 actions/showfavorites.php:209
|
||||
#: actions/showfavorites.php:132
|
||||
#, fuzzy
|
||||
msgid "Could not retrieve favorite notices."
|
||||
msgstr "Konnte Favoriten nicht abrufen."
|
||||
|
||||
#: actions/showmessage.php:33 actions/showmessage.php:81
|
||||
#, fuzzy
|
||||
msgid "No such message."
|
||||
msgstr "Keine derartige Nachricht."
|
||||
|
||||
#: actions/showmessage.php:42 actions/showmessage.php:98
|
||||
#, fuzzy
|
||||
msgid "Only the sender and recipient may read this message."
|
||||
msgstr "Nur der Absender und Empfänger können diese Nachricht lesen."
|
||||
msgstr "Nur der Absender und der Empfänger können diese Nachricht lesen."
|
||||
|
||||
#: actions/showmessage.php:61 actions/showmessage.php:108
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Message to %1$s on %2$s"
|
||||
msgstr "Nachricht an %1$s auf %2$s"
|
||||
|
||||
#: actions/showmessage.php:66 actions/showmessage.php:113
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Message from %1$s on %2$s"
|
||||
msgstr "Nachricht von %1$s auf %2$s"
|
||||
|
||||
#: actions/showstream.php:154
|
||||
#, fuzzy
|
||||
msgid "Send a message"
|
||||
msgstr "Eine Nachricht verschicken"
|
||||
|
||||
#: actions/smssettings.php:312 actions/smssettings.php:464
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Mobile carrier for your phone. "
|
||||
msgstr "Mobilfunkanbieter deines Telefons. "
|
||||
|
||||
@ -3692,7 +3662,6 @@ msgstr "Empfänger nicht gefunden."
|
||||
#: actions/twitapidirect_messages.php:153
|
||||
#: actions/twitapidirect_messages.php:162
|
||||
#: actions/twitapidirect_messages.php:158 actions/apidirectmessagenew.php:150
|
||||
#, fuzzy
|
||||
msgid "Can't send direct messages to users who aren't your friend."
|
||||
msgstr ""
|
||||
"Es können keine direkten Nachrichten an Benutzer geschickt werden mit denen "
|
||||
@ -3701,16 +3670,16 @@ msgstr ""
|
||||
#: actions/twitapifavorites.php:92 actions/twitapifavorites.php:66
|
||||
#: actions/twitapifavorites.php:64 actions/twitapifavorites.php:49
|
||||
#: actions/apitimelinefavorites.php:107
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s / Favorites from %s"
|
||||
msgstr "%s / Favoriten von %s"
|
||||
|
||||
#: actions/twitapifavorites.php:95 actions/twitapifavorites.php:69
|
||||
#: actions/twitapifavorites.php:68 actions/twitapifavorites.php:55
|
||||
#: actions/apitimelinefavorites.php:119
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s updates favorited by %s / %s."
|
||||
msgstr "%s Updates in den Favoriten von %s / %s."
|
||||
msgstr "%s Aktualisieurng in den Favoriten von %s / %s."
|
||||
|
||||
#: actions/twitapifavorites.php:187 lib/mail.php:275
|
||||
#: actions/twitapifavorites.php:164 lib/mail.php:553
|
||||
@ -3722,7 +3691,7 @@ msgstr "%s hat deine Nachricht als Favorit gespeichert"
|
||||
|
||||
#: actions/twitapifavorites.php:188 lib/mail.php:276
|
||||
#: actions/twitapifavorites.php:165
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%1$s just added your notice from %2$s as one of their favorites.\n"
|
||||
"\n"
|
||||
@ -3731,7 +3700,6 @@ msgstr ""
|
||||
"\n"
|
||||
|
||||
#: actions/twittersettings.php:27
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Add your Twitter account to automatically send your notices to Twitter, "
|
||||
msgstr ""
|
||||
@ -3741,21 +3709,21 @@ msgstr ""
|
||||
#: actions/twittersettings.php:41 actions/twittersettings.php:60
|
||||
#: actions/twittersettings.php:61
|
||||
msgid "Twitter settings"
|
||||
msgstr "Twitter Einstellungen"
|
||||
msgstr "Twitter-Einstellungen"
|
||||
|
||||
#: actions/twittersettings.php:48 actions/twittersettings.php:105
|
||||
#: actions/twittersettings.php:106
|
||||
msgid "Twitter Account"
|
||||
msgstr "Twitter Konto"
|
||||
msgstr "Twitter-Konto"
|
||||
|
||||
#: actions/twittersettings.php:56 actions/twittersettings.php:113
|
||||
#: actions/twittersettings.php:114
|
||||
msgid "Current verified Twitter account."
|
||||
msgstr "Derzeit bestätigter Twitter Account."
|
||||
msgstr "Derzeit bestätigtes Twitter-Konto."
|
||||
|
||||
#: actions/twittersettings.php:63
|
||||
msgid "Twitter Username"
|
||||
msgstr "Twitter Benutzername"
|
||||
msgstr "Twitter-Benutzername"
|
||||
|
||||
#: actions/twittersettings.php:65 actions/twittersettings.php:123
|
||||
#: actions/twittersettings.php:126
|
||||
@ -3764,7 +3732,7 @@ msgstr "Keine Leerzeichen, bitte."
|
||||
|
||||
#: actions/twittersettings.php:67
|
||||
msgid "Twitter Password"
|
||||
msgstr "Twitter Passwort"
|
||||
msgstr "Twitter-Passwort"
|
||||
|
||||
#: actions/twittersettings.php:72 actions/twittersettings.php:139
|
||||
#: actions/twittersettings.php:142
|
||||
@ -3773,18 +3741,16 @@ msgstr "Sende meine Nachrichten automatisch an Twitter."
|
||||
|
||||
#: actions/twittersettings.php:75 actions/twittersettings.php:146
|
||||
#: actions/twittersettings.php:149
|
||||
#, fuzzy
|
||||
msgid "Send local \"@\" replies to Twitter."
|
||||
msgstr "Sende lokale \"@\" Antworten an Twitter."
|
||||
msgstr "Sende lokale „@“-Antworten an Twitter."
|
||||
|
||||
#: actions/twittersettings.php:78 actions/twittersettings.php:153
|
||||
#: actions/twittersettings.php:156
|
||||
msgid "Subscribe to my Twitter friends here."
|
||||
msgstr "Hier meine Twitter Freunde abonnieren."
|
||||
msgstr "Hier meine Twitter-Freunde abonnieren."
|
||||
|
||||
#: actions/twittersettings.php:122 actions/twittersettings.php:331
|
||||
#: actions/twittersettings.php:348
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Username must have only numbers, upper- and lowercase letters, and "
|
||||
"underscore (_). 15 chars max."
|
||||
@ -3794,43 +3760,42 @@ msgstr ""
|
||||
|
||||
#: actions/twittersettings.php:128 actions/twittersettings.php:334
|
||||
#: actions/twittersettings.php:338 actions/twittersettings.php:355
|
||||
#, fuzzy
|
||||
msgid "Could not verify your Twitter credentials!"
|
||||
msgstr "Das Überprüfen deiner Twitter Berechtigungen war nicht erfolgreich!"
|
||||
msgstr "Das Überprüfen deiner Twitter-Berechtigungen war nicht erfolgreich!"
|
||||
|
||||
#: actions/twittersettings.php:137
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Unable to retrieve account information for \"%s\" from Twitter."
|
||||
msgstr ""
|
||||
"Es konnten keine Kontoinformationen zu \"%s\" von Twitter empfangen werden."
|
||||
"Es konnten keine Kontoinformationen zu „%s“ von Twitter empfangen werden."
|
||||
|
||||
#: actions/twittersettings.php:151 actions/twittersettings.php:170
|
||||
#: actions/twittersettings.php:348 actions/twittersettings.php:368
|
||||
#: actions/twittersettings.php:352 actions/twittersettings.php:372
|
||||
#: actions/twittersettings.php:369 actions/twittersettings.php:389
|
||||
msgid "Unable to save your Twitter settings!"
|
||||
msgstr "Konnte Twitter Einstellungen nicht speichern!"
|
||||
msgstr "Konnte Twitter-Einstellungen nicht speichern!"
|
||||
|
||||
#: actions/twittersettings.php:174 actions/twittersettings.php:376
|
||||
#: actions/twittersettings.php:380 actions/twittersettings.php:399
|
||||
msgid "Twitter settings saved."
|
||||
msgstr "Twitter Einstellungen gespeichert."
|
||||
msgstr "Twitter-Einstellungen gespeichert."
|
||||
|
||||
#: actions/twittersettings.php:192 actions/twittersettings.php:395
|
||||
#: actions/twittersettings.php:399 actions/twittersettings.php:418
|
||||
msgid "That is not your Twitter account."
|
||||
msgstr "Das ist nicht dein Twitter Konto."
|
||||
msgstr "Das ist nicht dein Twitter-Konto."
|
||||
|
||||
#: actions/twittersettings.php:200 actions/twittersettings.php:208
|
||||
#: actions/twittersettings.php:403 actions/twittersettings.php:407
|
||||
#: actions/twittersettings.php:426
|
||||
msgid "Couldn't remove Twitter user."
|
||||
msgstr "Konnte Twitter Benutzer nicht entfernen."
|
||||
msgstr "Konnte Twitter-Benutzer nicht entfernen."
|
||||
|
||||
#: actions/twittersettings.php:212 actions/twittersettings.php:407
|
||||
#: actions/twittersettings.php:411 actions/twittersettings.php:430
|
||||
msgid "Twitter account removed."
|
||||
msgstr "Twitter Account entfernt."
|
||||
msgstr "Twitter-Konto entfernt."
|
||||
|
||||
#: actions/twittersettings.php:225 actions/twittersettings.php:239
|
||||
#: actions/twittersettings.php:428 actions/twittersettings.php:439
|
||||
@ -3839,46 +3804,39 @@ msgstr "Twitter Account entfernt."
|
||||
#: actions/twittersettings.php:452 actions/twittersettings.php:463
|
||||
#: actions/twittersettings.php:477
|
||||
msgid "Couldn't save Twitter preferences."
|
||||
msgstr "Konnte Twitter Einstellungen nicht speichern."
|
||||
msgstr "Konnte Twitter-Einstellungen nicht speichern."
|
||||
|
||||
#: actions/twittersettings.php:245 actions/twittersettings.php:461
|
||||
#: actions/twittersettings.php:465 actions/twittersettings.php:485
|
||||
msgid "Twitter preferences saved."
|
||||
msgstr "Twitter Einstellungen gespeichert."
|
||||
msgstr "Twitter-Einstellungen gespeichert."
|
||||
|
||||
#: actions/userauthorization.php:84 actions/userauthorization.php:86
|
||||
#, fuzzy
|
||||
msgid "Please check these details to make sure "
|
||||
msgstr "Bitte überprüfe die Details um sicherzustellen, dass "
|
||||
|
||||
#: actions/userauthorization.php:324 actions/userauthorization.php:340
|
||||
#, fuzzy
|
||||
msgid "The subscription has been authorized, but no "
|
||||
msgstr "Das Abonnement wurde genehmigt, aber kein "
|
||||
|
||||
#: actions/userauthorization.php:334 actions/userauthorization.php:351
|
||||
#, fuzzy
|
||||
msgid "The subscription has been rejected, but no "
|
||||
msgstr "Das Abonnement wurde abgelehnt, aber kein "
|
||||
|
||||
#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
|
||||
#: lib/channel.php:138 lib/channel.php:158
|
||||
#, fuzzy
|
||||
msgid "Command results"
|
||||
msgstr "Befehl Ausgabe"
|
||||
msgstr "Befehl-Ergebnisse"
|
||||
|
||||
#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
|
||||
#, fuzzy
|
||||
msgid "Command complete"
|
||||
msgstr "Befehl ausgeführt"
|
||||
|
||||
#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
|
||||
#, fuzzy
|
||||
msgid "Command failed"
|
||||
msgstr "Befehl fehlgeschlagen"
|
||||
|
||||
#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
|
||||
#, fuzzy
|
||||
msgid "Sorry, this command is not yet implemented."
|
||||
msgstr "Leider ist dieser Befehl noch nicht implementiert."
|
||||
|
||||
@ -3891,13 +3849,11 @@ msgstr "Abonnements: %1$s\n"
|
||||
#: classes/Command.php:276 lib/command.php:145 lib/command.php:276
|
||||
#: lib/command.php:138 lib/command.php:269 lib/command.php:168
|
||||
#: lib/command.php:416 lib/command.php:471
|
||||
#, fuzzy
|
||||
msgid "User has no last notice"
|
||||
msgstr "Benutzer hat keine letzte Nachricht"
|
||||
|
||||
#: classes/Command.php:146 classes/Command.php:166 lib/command.php:166
|
||||
#: lib/command.php:159 lib/command.php:190
|
||||
#, fuzzy
|
||||
msgid "Notice marked as fave."
|
||||
msgstr "Nachricht als Favorit markiert."
|
||||
|
||||
@ -3915,7 +3871,7 @@ msgstr "Vollständiger Name: %s"
|
||||
|
||||
#: classes/Command.php:172 classes/Command.php:195 lib/command.php:195
|
||||
#: lib/command.php:188 lib/command.php:321
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Location: %s"
|
||||
msgstr "Standort: %s"
|
||||
|
||||
@ -3951,9 +3907,8 @@ msgstr "Fehler beim Senden der Nachricht"
|
||||
|
||||
#: classes/Command.php:263 classes/Command.php:300 lib/command.php:300
|
||||
#: lib/command.php:293 lib/command.php:495
|
||||
#, fuzzy
|
||||
msgid "Specify the name of the user to subscribe to"
|
||||
msgstr "Gib den Namen des Benutzers den du abonnieren möchtest an"
|
||||
msgstr "Gib den Namen des Benutzers an, den du abonnieren möchtest"
|
||||
|
||||
#: classes/Command.php:270 classes/Command.php:307 lib/command.php:307
|
||||
#: lib/command.php:300 lib/command.php:502
|
||||
@ -3963,13 +3918,12 @@ msgstr "%s abonniert"
|
||||
|
||||
#: classes/Command.php:288 classes/Command.php:328 lib/command.php:328
|
||||
#: lib/command.php:321 lib/command.php:523
|
||||
#, fuzzy
|
||||
msgid "Specify the name of the user to unsubscribe from"
|
||||
msgstr "Gib den Namen des Benutzers ein, den du nicht mehr abonnieren möchtest"
|
||||
|
||||
#: classes/Command.php:295 classes/Command.php:335 lib/command.php:335
|
||||
#: lib/command.php:328 lib/command.php:530
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Unsubscribed from %s"
|
||||
msgstr "%s nicht mehr abonniert"
|
||||
|
||||
@ -3977,7 +3931,6 @@ msgstr "%s nicht mehr abonniert"
|
||||
#: classes/Command.php:376 lib/command.php:353 lib/command.php:376
|
||||
#: lib/command.php:346 lib/command.php:369 lib/command.php:548
|
||||
#: lib/command.php:571
|
||||
#, fuzzy
|
||||
msgid "Command not yet implemented."
|
||||
msgstr "Befehl noch nicht implementiert."
|
||||
|
||||
@ -4096,7 +4049,7 @@ msgstr "Twitter"
|
||||
|
||||
#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
|
||||
msgid "Twitter integration options"
|
||||
msgstr "Twitter Integrationseinstellungen"
|
||||
msgstr "Twitter-Integrationseinstellungen"
|
||||
|
||||
#: lib/util.php:1718 lib/messageform.php:139 lib/noticelist.php:422
|
||||
#: lib/messageform.php:137 lib/noticelist.php:425 lib/messageform.php:135
|
||||
@ -4126,7 +4079,7 @@ msgstr "Du kannst dein persönliches Avatar hochladen."
|
||||
#: actions/avatarsettings.php:194 actions/grouplogo.php:256
|
||||
#: actions/grouplogo.php:251
|
||||
msgid "Avatar settings"
|
||||
msgstr "Avatar Einstellungen"
|
||||
msgstr "Avatar-Einstellungen"
|
||||
|
||||
#: actions/avatarsettings.php:124 actions/avatarsettings.php:199
|
||||
#: actions/grouplogo.php:198 actions/grouplogo.php:258
|
||||
@ -4222,9 +4175,9 @@ msgid "Failed to save block information."
|
||||
msgstr "Konnte Blockierungsdaten nicht speichern."
|
||||
|
||||
#: actions/confirmaddress.php:159
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "The address \"%s\" has been "
|
||||
msgstr "Die Adresse \"%s\" wurde "
|
||||
msgstr "Die Adresse „%s“ wurde "
|
||||
|
||||
#: actions/deletenotice.php:73
|
||||
#, fuzzy
|
||||
@ -4317,9 +4270,8 @@ msgid "Awaiting confirmation on this address. "
|
||||
msgstr "Warte auf die Bestätigung dieser Adresse. "
|
||||
|
||||
#: actions/emailsettings.php:139 actions/smssettings.php:150
|
||||
#, fuzzy
|
||||
msgid "Make a new email address for posting to; "
|
||||
msgstr "Neue E-Mailadresse um Nachrichten auf %s hinzuzufügen; "
|
||||
msgstr "Neue E-Mail-Adresse um Nachrichten auf %s hinzuzufügen; "
|
||||
|
||||
#: actions/emailsettings.php:157
|
||||
msgid "Send me email when someone "
|
||||
@ -4331,15 +4283,14 @@ msgid "Allow friends to nudge me and send me an email."
|
||||
msgstr "Erlaube Freunden mich zu stupsen und mir E-Mails zu senden."
|
||||
|
||||
#: actions/emailsettings.php:321
|
||||
#, fuzzy
|
||||
msgid "That email address already belongs "
|
||||
msgstr "Diese E-Mailadresse gehört "
|
||||
msgstr "Diese E-Mail-Adresse gehört "
|
||||
|
||||
#: actions/emailsettings.php:343
|
||||
msgid "A confirmation code was sent to the email address you added. "
|
||||
msgstr ""
|
||||
"Ein Bestätigungscode wurde an die E-Mailadresse geschickt, die du "
|
||||
"hinzugefügt hast."
|
||||
"Ein Bestätigungscode wurde an die E-Mail-Adresse geschickt, die du "
|
||||
"hinzugefügt hast. "
|
||||
|
||||
#: actions/facebookhome.php:110 actions/facebookhome.php:109
|
||||
#, fuzzy
|
||||
@ -4354,7 +4305,7 @@ msgstr "Wenn du automatische Aktualisierungen der Anwendung %s möchtest "
|
||||
#: actions/facebookhome.php:213 actions/facebooksettings.php:137
|
||||
#, php-format
|
||||
msgid "Allow %s to update my Facebook status"
|
||||
msgstr "Erlaube %s meinen Facebook Status zu aktualisieren"
|
||||
msgstr "Erlaube %s meinen Facebook-Status zu aktualisieren"
|
||||
|
||||
#: actions/facebookhome.php:218 actions/facebookhome.php:223
|
||||
#: actions/facebookhome.php:217
|
||||
@ -4426,7 +4377,7 @@ msgstr "Einladungen versenden"
|
||||
|
||||
#: actions/facebookremove.php:56
|
||||
msgid "Couldn't remove Facebook user."
|
||||
msgstr "Konnte Facebook Benutzer nicht entfernen."
|
||||
msgstr "Konnte Facebook-Benutzer nicht entfernen."
|
||||
|
||||
#: actions/facebooksettings.php:65
|
||||
#, fuzzy
|
||||
@ -4440,20 +4391,17 @@ msgid "Sync preferences saved."
|
||||
msgstr "Synchronisationseinstellungen gespeichert."
|
||||
|
||||
#: actions/facebooksettings.php:90
|
||||
#, fuzzy
|
||||
msgid "Automatically update my Facebook status with my notices."
|
||||
msgstr ""
|
||||
"Meinen Facebook Status automatisch über meine Nachrichten aktualisieren."
|
||||
"Meinen Facebook-Status automatisch über meine Nachrichten aktualisieren."
|
||||
|
||||
#: actions/facebooksettings.php:97
|
||||
#, fuzzy
|
||||
msgid "Send \"@\" replies to Facebook."
|
||||
msgstr "Schicke \"@\" Antworten an Facebook."
|
||||
msgstr "Schicke „@“-Antworten an Facebook."
|
||||
|
||||
#: actions/facebooksettings.php:106
|
||||
#, fuzzy
|
||||
msgid "Prefix"
|
||||
msgstr "Prefix"
|
||||
msgstr "Präfix"
|
||||
|
||||
#: actions/facebooksettings.php:108
|
||||
#, fuzzy
|
||||
@ -4594,7 +4542,7 @@ msgstr "Du kannst Nachrichten senden und empfangen über "
|
||||
#: actions/imsettings.php:120
|
||||
#, php-format
|
||||
msgid "Jabber or GTalk address, "
|
||||
msgstr "Jabber oder GTalk Adressen, "
|
||||
msgstr "Jabber- oder GTalk-Adressen, "
|
||||
|
||||
#: actions/imsettings.php:147
|
||||
#, fuzzy
|
||||
@ -4721,13 +4669,13 @@ msgstr "Nachricht hinzugefügt"
|
||||
#: lib/channel.php:170 actions/newmessage.php:207 actions/newnotice.php:387
|
||||
#: actions/newmessage.php:210 actions/newnotice.php:233
|
||||
msgid "Ajax Error"
|
||||
msgstr "Ajax Fehler"
|
||||
msgstr "Ajax-Fehler"
|
||||
|
||||
#: actions/nudge.php:85
|
||||
msgid ""
|
||||
"This user doesn't allow nudges or hasn't confirmed or set his email yet."
|
||||
msgstr ""
|
||||
"Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mailadresse noch "
|
||||
"Dieser Benutzer erlaubt keine Stupser oder hat seine E-Mail-Adresse noch "
|
||||
"nicht bestätigt."
|
||||
|
||||
#: actions/nudge.php:94
|
||||
@ -4739,9 +4687,8 @@ msgid "Nudge sent!"
|
||||
msgstr "Stups gesendet!"
|
||||
|
||||
#: actions/openidlogin.php:97 actions/openidlogin.php:106
|
||||
#, fuzzy
|
||||
msgid "OpenID login"
|
||||
msgstr "OpenID Anmeldung"
|
||||
msgstr "OpenID-Anmeldung"
|
||||
|
||||
#: actions/openidsettings.php:128
|
||||
#, fuzzy
|
||||
@ -4759,7 +4706,7 @@ msgstr "Verwalte zahlreiche andere Einstellungen."
|
||||
|
||||
#: actions/othersettings.php:93
|
||||
msgid "URL Auto-shortening"
|
||||
msgstr "URL Auto-Verkürzung"
|
||||
msgstr "URL-Auto-Verkürzung"
|
||||
|
||||
#: actions/othersettings.php:112
|
||||
msgid "Service"
|
||||
@ -4768,12 +4715,12 @@ msgstr "Dienst"
|
||||
#: actions/othersettings.php:113 actions/othersettings.php:111
|
||||
#: actions/othersettings.php:118
|
||||
msgid "Automatic shortening service to use."
|
||||
msgstr "URL Auto-Kürzungs Dienst."
|
||||
msgstr "URL-Auto-Kürzungs-Dienst."
|
||||
|
||||
#: actions/othersettings.php:144 actions/othersettings.php:146
|
||||
#: actions/othersettings.php:153
|
||||
msgid "URL shortening service is too long (max 50 chars)."
|
||||
msgstr "URL Auto-Kürzungs Dienst ist zu lange (max. 50 Zeichen)"
|
||||
msgstr "URL-Auto-Kürzungs-Dienst ist zu lange (max. 50 Zeichen)"
|
||||
|
||||
#: actions/passwordsettings.php:69
|
||||
#, fuzzy
|
||||
@ -4799,7 +4746,7 @@ msgstr "Benutzer die sich selbst mit %s getagged haben - Seite %d"
|
||||
#: actions/peopletag.php:91
|
||||
#, php-format
|
||||
msgid "These are users who have tagged themselves \"%s\" "
|
||||
msgstr "Benutzer die sich selbst mit \"%s\" getagged haben "
|
||||
msgstr "Benutzer die sich selbst mit „%s“ getagged haben "
|
||||
|
||||
#: actions/profilesettings.php:91 actions/profilesettings.php:99
|
||||
#, fuzzy
|
||||
@ -4824,7 +4771,7 @@ msgstr "Abonniere automatisch alle Kontakte, die mich abonnieren "
|
||||
#: actions/profilesettings.php:246
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Ungültiger Tag: \"%s\""
|
||||
msgstr "Ungültiger Tag: „%s“"
|
||||
|
||||
#: actions/profilesettings.php:311 actions/profilesettings.php:310
|
||||
#: actions/profilesettings.php:336
|
||||
@ -4877,9 +4824,8 @@ msgid "You can't register if you don't "
|
||||
msgstr "Du kannst dich nicht registrieren, wenn du nicht "
|
||||
|
||||
#: actions/register.php:286
|
||||
#, fuzzy
|
||||
msgid "With this form you can create "
|
||||
msgstr "Dieses Formular hilft die beim Erstellen von "
|
||||
msgstr "Dieses Formular hilft dir beim Erstellen von "
|
||||
|
||||
#: actions/register.php:368
|
||||
#, fuzzy
|
||||
@ -4887,9 +4833,8 @@ msgid "1-64 lowercase letters or numbers, "
|
||||
msgstr "1-64 Kleinbuchstaben oder Ziffern, "
|
||||
|
||||
#: actions/register.php:382 actions/register.php:386
|
||||
#, fuzzy
|
||||
msgid "Used only for updates, announcements, "
|
||||
msgstr "Verwendet nur für Updates und wichtige Mitteilungen, "
|
||||
msgstr "Verwendet nur für Aktualisierungen und wichtige Mitteilungen, "
|
||||
|
||||
#: actions/register.php:398
|
||||
#, fuzzy
|
||||
@ -5011,13 +4956,13 @@ msgid "All members"
|
||||
msgstr "Alle Mitglieder"
|
||||
|
||||
#: actions/showgroup.php:378
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
"wikipedia.org/wiki/Micro-blogging) service "
|
||||
msgstr ""
|
||||
"**%s** ist eine Benutzergruppe auf %%site.name%%, einem [mikro-blogging] "
|
||||
"(http://de.wikipedia.org/wiki/Mikro-blogging) Dienst "
|
||||
"**%s** ist eine Benutzergruppe auf %%%%site.name%%%%, einem [mikro-blogging-"
|
||||
"Dienst](http://de.wikipedia.org/wiki/Mikro-blogging) "
|
||||
|
||||
#: actions/showmessage.php:98
|
||||
msgid "Only the sender and recipient "
|
||||
@ -5074,13 +5019,13 @@ msgid "All groups"
|
||||
msgstr "Alle Gruppen"
|
||||
|
||||
#: actions/showstream.php:542
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en."
|
||||
"wikipedia.org/wiki/Micro-blogging) service "
|
||||
msgstr ""
|
||||
"**%s** hat ein Konto auf %%site.name%%, einem [mikro-blogging] (http://de."
|
||||
"wikipedia.org/wiki/Mikro-blogging) Dienst "
|
||||
"**%s** hat ein Konto auf %%%%site.name%%%%, einem [mikro-blogging-Dienst]"
|
||||
"(http://de.wikipedia.org/wiki/Mikro-blogging) "
|
||||
|
||||
#: actions/smssettings.php:128
|
||||
#, fuzzy
|
||||
@ -5174,9 +5119,9 @@ msgid "Notices tagged with %s, page %d"
|
||||
msgstr "Nachrichten, die mit %s getagt sind, Seite %d"
|
||||
|
||||
#: actions/tag.php:66 actions/tag.php:73
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Messages tagged \"%s\", most recent first"
|
||||
msgstr "Nachrichten getagt mit \"%s\", neueste zuerst"
|
||||
msgstr "Nachrichten getagt mit „%s“, neueste zuerst"
|
||||
|
||||
#: actions/tagother.php:33
|
||||
#, fuzzy
|
||||
@ -5256,22 +5201,21 @@ msgid "Not found."
|
||||
msgstr "Nicht gefunden."
|
||||
|
||||
#: actions/twittersettings.php:71
|
||||
#, fuzzy
|
||||
msgid "Add your Twitter account to automatically send "
|
||||
msgstr "Füge dein Twitter Konto hinzu zum automatischen Versenden von "
|
||||
msgstr "Füge dein Twitter-Konto hinzu zum automatischen Versenden von "
|
||||
|
||||
#: actions/twittersettings.php:119 actions/twittersettings.php:122
|
||||
msgid "Twitter user name"
|
||||
msgstr "Twitter Benutzername"
|
||||
msgstr "Twitter-Benutzername"
|
||||
|
||||
#: actions/twittersettings.php:126 actions/twittersettings.php:129
|
||||
msgid "Twitter password"
|
||||
msgstr "Twitter Passwort"
|
||||
msgstr "Twitter-Passwort"
|
||||
|
||||
#: actions/twittersettings.php:228 actions/twittersettings.php:232
|
||||
#: actions/twittersettings.php:248
|
||||
msgid "Twitter Friends"
|
||||
msgstr "Twitter Freunde"
|
||||
msgstr "Twitter-Freunde"
|
||||
|
||||
#: actions/twittersettings.php:327
|
||||
#, fuzzy
|
||||
@ -5434,9 +5378,8 @@ msgstr "Unternavigation"
|
||||
|
||||
#: lib/action.php:602 lib/action.php:623 lib/action.php:699 lib/action.php:720
|
||||
#: lib/action.php:749 lib/action.php:770 lib/action.php:764
|
||||
#, fuzzy
|
||||
msgid "StatusNet software license"
|
||||
msgstr "StatusNet Software Lizenz"
|
||||
msgstr "StatusNet-Software-Lizenz"
|
||||
|
||||
#: lib/action.php:630 lib/action.php:727 lib/action.php:779 lib/action.php:794
|
||||
#, fuzzy
|
||||
@ -7097,7 +7040,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Problem bei Speichern der Nachricht."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Nachricht an %1$s auf %2$s"
|
||||
@ -7362,7 +7305,8 @@ msgstr "Direkte Nachricht an %s"
|
||||
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
|
||||
#, fuzzy, php-format
|
||||
msgid "That's too long. Max message size is %d chars."
|
||||
msgstr "Das ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
|
||||
msgstr ""
|
||||
"Die Nachricht ist zu lang. Die maximale Nachrichtenlänge ist 140 Zeichen."
|
||||
|
||||
#: actions/apifriendshipsdestroy.php:109
|
||||
#, fuzzy
|
||||
@ -7414,8 +7358,9 @@ msgid "groups on %s"
|
||||
msgstr "Gruppenaktionen"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar aktualisiert."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7451,7 +7396,7 @@ msgstr "Die Beschreibung ist zu lang (max. 140 Zeichen)."
|
||||
#: actions/favoritesrss.php:115
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr "Updates von %1$s auf %2$s!"
|
||||
msgstr "Aktualisierungen von %1$s auf %2$s!"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
#, fuzzy
|
||||
@ -7486,7 +7431,7 @@ msgstr "Daten verloren."
|
||||
#: actions/grouprss.php:133
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr "Updates von %1$s auf %2$s!"
|
||||
msgstr "Aktualisierungen von %1$s auf %2$s!"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7504,18 +7449,19 @@ msgstr ""
|
||||
"[OpenID](%%action.openidlogin%%)."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Updates von %1$s auf %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Alle Aktualisierungen, die den Suchbegriff \"%s\" enthalten"
|
||||
msgstr "Alle Aktualisierungen, die den Suchbegriff „%s“ enthalten"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Verbinden"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7564,19 +7510,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Konnte keinen Anfrage-Token bekommen."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed der Nachrichten von %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed der Nachrichten von %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Nachrichtenfeed der Gruppe %s"
|
||||
msgstr "Feed der Nachrichten von %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7586,17 +7532,17 @@ msgstr "Nachricht an %1$s auf %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Feed der Favoriten von %s"
|
||||
msgstr "Feed der Freunde von %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Feed der Favoriten von %s"
|
||||
msgstr "Feed der Freunde von %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Feed der Favoriten von %s"
|
||||
msgstr "Feed der Freunde von %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7609,7 +7555,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "%s Gruppe"
|
||||
msgstr "Postausgang von %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7692,12 +7638,12 @@ msgstr ""
|
||||
#: actions/userauthorization.php:343
|
||||
#, fuzzy, php-format
|
||||
msgid "Can’t read avatar URL ‘%s’."
|
||||
msgstr "Konnte Avatar-URL nicht öffnen '%s'"
|
||||
msgstr "Konnte Avatar-URL nicht öffnen „%s“"
|
||||
|
||||
#: actions/userauthorization.php:348
|
||||
#, fuzzy, php-format
|
||||
msgid "Wrong image type for avatar URL ‘%s’."
|
||||
msgstr "Falscher Bildtyp für '%s'"
|
||||
msgstr "Falscher Bildtyp für „%s“"
|
||||
|
||||
#: lib/action.php:435
|
||||
#, fuzzy
|
||||
@ -7707,12 +7653,12 @@ msgstr "Konnte nicht zum Server umleiten: %s"
|
||||
#: lib/action.php:785
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "StatusNet Software Lizenz"
|
||||
msgstr "StatusNet-Software-Lizenz"
|
||||
|
||||
#: lib/command.php:88
|
||||
#, fuzzy, php-format
|
||||
msgid "Could not find a user with nickname %s"
|
||||
msgstr "Die bestätigte Emailadresse konnte nicht gespeichert werden."
|
||||
msgstr "Die bestätigte E-Mail-Adresse konnte nicht gespeichert werden."
|
||||
|
||||
#: lib/command.php:92
|
||||
msgid "It does not make a lot of sense to nudge yourself!"
|
||||
@ -7818,7 +7764,7 @@ msgstr "Beschreibe die Gruppe oder das Thema in 140 Zeichen"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Feed der Nachrichten von %s"
|
||||
msgstr "Neue Nachricht"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7878,7 +7824,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Konnte Favoriten nicht löschen."
|
||||
msgstr "Konnte öffentlichen Stream nicht abrufen."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,21 +1,16 @@
|
||||
# Translation of StatusNet to Greek
|
||||
#
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:57:42+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:14+0000\n"
|
||||
"Language-Team: Greek\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: el\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6695,7 +6690,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7003,8 +6998,9 @@ msgid "groups on %s"
|
||||
msgstr "Βρες ομάδες στο site"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Ρυθμίσεις OpenID"
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7097,8 +7093,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Όλες οι ενημερώσεις που ταιριάζουν με τον όρο αναζήτησης \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Σύνδεση"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7145,19 +7142,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Απέτυχε η μετατροπή αιτούμενων tokens σε tokens πρόσβασης."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Ροή φίλων του/της %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Ροή φίλων του/της %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr ""
|
||||
msgstr "Ροή φίλων του/της %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, php-format
|
||||
@ -7193,8 +7190,9 @@ msgid "FOAF for %s group"
|
||||
msgstr "Αδύνατη η αποθήκευση του προφίλ."
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
msgid "Notice deleted."
|
||||
msgstr ""
|
||||
msgstr "Ρυθμίσεις OpenID"
|
||||
|
||||
#: actions/smssettings.php:91
|
||||
#, fuzzy
|
||||
@ -7202,9 +7200,9 @@ msgid "SMS is not available."
|
||||
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
|
||||
|
||||
#: actions/tag.php:92
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Notice feed for tag %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Ροή φίλων του/της %s"
|
||||
|
||||
#: actions/updateprofile.php:62 actions/userauthorization.php:330
|
||||
#, php-format
|
||||
@ -7380,9 +7378,9 @@ msgid "Describe the group or topic in %d characters"
|
||||
msgstr "Περιγράψτε την ομάδα ή το θέμα μέχρι 140 χαρακτήρες"
|
||||
|
||||
#: lib/jabber.php:192
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr ""
|
||||
msgstr "Μήνυμα"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, php-format
|
||||
@ -7440,8 +7438,9 @@ msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "Απέτυχε η ενημέρωση του χρήστη."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -11,12 +11,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:57:52+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:22+0000\n"
|
||||
"Language-Team: British English\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: en-gb\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6835,7 +6835,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Problem saving notice."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Message to %1$s on %2$s"
|
||||
@ -7151,8 +7151,9 @@ msgid "groups on %s"
|
||||
msgstr "Group actions"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar updated."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7240,9 +7241,9 @@ msgstr ""
|
||||
"%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Updates from %1$s on %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7250,8 +7251,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "All updates matching search term \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Connect"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7300,19 +7302,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Couldn't get a request token."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Notice feed for %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Notice feed for %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Notice feed for %s group"
|
||||
msgstr "Notice feed for %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7322,17 +7324,17 @@ msgstr "Message to %1$s on %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Feed for favourites of %s"
|
||||
msgstr "Feed for friends of %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Feed for favourites of %s"
|
||||
msgstr "Feed for friends of %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Feed for favourites of %s"
|
||||
msgstr "Feed for friends of %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7345,7 +7347,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "%s group"
|
||||
msgstr "Outbox for %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7554,7 +7556,7 @@ msgstr "Describe the group or topic in 140 chars"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Notice feed for %s"
|
||||
msgstr "New notice"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7614,7 +7616,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Could not delete favourite."
|
||||
msgstr "Could not retrieve public stream."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:01+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:30+0000\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: es\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6976,7 +6976,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Hubo un problema al guardar el aviso."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Mensaje a %1$s en %2$s"
|
||||
@ -7292,8 +7292,9 @@ msgid "groups on %s"
|
||||
msgstr "Acciones del grupo"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar actualizado"
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7381,9 +7382,9 @@ msgstr ""
|
||||
"openidlogin%%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "¡Actualizaciones de %1$s en %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7391,8 +7392,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Todas las actualizaciones que corresponden a la frase a buscar \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Conectarse"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7441,19 +7443,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "No se pudo obtener la señal de petición."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed de avisos de %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed de avisos de %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Feed de avisos de grupo %s"
|
||||
msgstr "Feed de avisos de %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7463,17 +7465,17 @@ msgstr "Mensaje a %1$s en %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Feed para favoritos de %s"
|
||||
msgstr "Feed de los amigos de %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Feed para favoritos de %s"
|
||||
msgstr "Feed de los amigos de %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Feed para favoritos de %s"
|
||||
msgstr "Feed de los amigos de %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7486,7 +7488,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "Grupo %s"
|
||||
msgstr "Bandeja de salida para %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7696,7 +7698,7 @@ msgstr "Describir al grupo o tema en 140 caracteres"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Feed de avisos de %s"
|
||||
msgstr "Nuevo aviso"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7756,7 +7758,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "No se pudo borrar favorito."
|
||||
msgstr "No se pudo acceder a corriente pública."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,5 +1,8 @@
|
||||
# Translation of StatusNet to Finnish
|
||||
#
|
||||
# Author@translatewiki.net: Crt
|
||||
# Author@translatewiki.net: Jaakko
|
||||
# Author@translatewiki.net: Nike
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
@ -10,12 +13,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:07+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:34+0000\n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: fi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -5613,34 +5616,32 @@ msgid "Unsubscribe from this user"
|
||||
msgstr "Peruuta tämän käyttäjän tilaus"
|
||||
|
||||
#: actions/all.php:77 actions/all.php:59 actions/all.php:99
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Feed for friends of %s (RSS 1.0)"
|
||||
msgstr "Syöte käyttäjän %s kavereille"
|
||||
msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)"
|
||||
|
||||
#: actions/all.php:82 actions/all.php:64 actions/all.php:107
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Feed for friends of %s (RSS 2.0)"
|
||||
msgstr "Syöte käyttäjän %s kavereille"
|
||||
msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)"
|
||||
|
||||
#: actions/all.php:87 actions/all.php:69 actions/all.php:115
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Feed for friends of %s (Atom)"
|
||||
msgstr "Syöte käyttäjän %s kavereille"
|
||||
msgstr "Käyttäjän %s kavereiden syöte (Atom)"
|
||||
|
||||
#: actions/all.php:112 actions/all.php:125 actions/all.php:165
|
||||
#, fuzzy
|
||||
msgid "You and friends"
|
||||
msgstr "%s ja kaverit"
|
||||
msgstr "Sinä ja kaverit"
|
||||
|
||||
#: actions/avatarsettings.php:78
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "You can upload your personal avatar. The maximum file size is %s."
|
||||
msgstr "Voit ladata oman profiilikuvasi."
|
||||
msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s."
|
||||
|
||||
#: actions/avatarsettings.php:373
|
||||
#, fuzzy
|
||||
msgid "Avatar deleted."
|
||||
msgstr "Kuva päivitetty."
|
||||
msgstr "Kuva poistettu."
|
||||
|
||||
#: actions/block.php:129 actions/block.php:136
|
||||
msgid ""
|
||||
@ -5701,7 +5702,7 @@ msgid "Pick a square area of the image to be the logo."
|
||||
msgstr "Valitse neliön muotoinen alue kuvasta profiilikuvaksi"
|
||||
|
||||
#: actions/grouprss.php:136 actions/grouprss.php:137
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Microblog by %s group"
|
||||
msgstr "Käyttäjän %s mikroblogi"
|
||||
|
||||
@ -6887,7 +6888,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Ongelma päivityksen tallentamisessa."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Viesti käyttäjälle %1$s, %2$s"
|
||||
@ -7203,8 +7204,9 @@ msgid "groups on %s"
|
||||
msgstr "Ryhmän toiminnot"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Kuva poistettu."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7292,9 +7294,9 @@ msgstr ""
|
||||
"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7302,8 +7304,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Kaikki päivitykset hakuehdolla \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Yhdistä"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7355,19 +7358,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Ei saatu request tokenia."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Päivityksien syöte käyttäjälle %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Päivityksien syöte käyttäjälle %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Päivityssyöte ryhmälle %s"
|
||||
msgstr "Päivityksien syöte käyttäjälle %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7377,17 +7380,17 @@ msgstr "Viesti käyttäjälle %1$s, %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Käyttäjän %s suosikkien syöte"
|
||||
msgstr "Käyttäjän %s kavereiden syöte (RSS 1.0)"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Käyttäjän %s suosikkien syöte"
|
||||
msgstr "Käyttäjän %s kavereiden syöte (RSS 2.0)"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Käyttäjän %s suosikkien syöte"
|
||||
msgstr "Käyttäjän %s kavereiden syöte (Atom)"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7400,7 +7403,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "Ryhmä %s"
|
||||
msgstr "Käyttäjän %s lähetetyt viestit"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7608,7 +7611,7 @@ msgstr "Kuvaile ryhmää tai aihetta 140 merkillä"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Päivityksien syöte käyttäjälle %s"
|
||||
msgstr "Uusi päivitys"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7668,7 +7671,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Ei voitu poistaa suosikkia."
|
||||
msgstr "Julkista päivitysvirtaa ei saatu."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -3,36 +3,19 @@
|
||||
# Author@translatewiki.net: IAlex
|
||||
# Author@translatewiki.net: Jean-Frédéric
|
||||
# --
|
||||
# #-#-#-#-# statusnet-no-duplicates.po (0.43) #-#-#-#-#
|
||||
# French translations for StatusNet package
|
||||
# Traductions françaises du paquet StatusNet.
|
||||
# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the StatusNet package.
|
||||
# Florian Birée <florian@biree.name>, 2008.
|
||||
# For translation choices and other informations, please read
|
||||
# <http://dev.filyb.info/statusnet/wiki/french-translation>
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:13+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:37+0000\n"
|
||||
"Language-Team: French\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: fr\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
|
||||
#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
|
||||
@ -5892,15 +5875,13 @@ msgstr "Boîte d'envoi de %s"
|
||||
|
||||
#: actions/showstream.php:237 actions/showstream.php:202
|
||||
#: actions/showstream.php:234
|
||||
#, fuzzy
|
||||
msgid "Edit Avatar"
|
||||
msgstr "Avatar"
|
||||
msgstr "Modifier l'avatar"
|
||||
|
||||
#: actions/showstream.php:316 actions/showstream.php:281
|
||||
#: actions/showstream.php:366
|
||||
#, fuzzy
|
||||
msgid "Edit profile settings"
|
||||
msgstr "Paramètres du profil"
|
||||
msgstr "Modifier les paramètres du profil"
|
||||
|
||||
#: actions/showstream.php:317 actions/showstream.php:282
|
||||
#: actions/showstream.php:367
|
||||
@ -6216,7 +6197,7 @@ msgstr "Rechercher sur le site"
|
||||
|
||||
#: lib/section.php:106
|
||||
msgid "More..."
|
||||
msgstr ""
|
||||
msgstr "Plus..."
|
||||
|
||||
#: actions/all.php:80 actions/all.php:127
|
||||
#, php-format
|
||||
@ -6286,9 +6267,8 @@ msgid "Conversation"
|
||||
msgstr "Code de confirmation"
|
||||
|
||||
#: actions/deletenotice.php:115 actions/deletenotice.php:145
|
||||
#, fuzzy
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "Impossible de supprimer ce statut."
|
||||
msgstr "Ne pas supprimer cet avis"
|
||||
|
||||
#: actions/editgroup.php:214 actions/newgroup.php:164
|
||||
#: actions/apigroupcreate.php:291 actions/editgroup.php:215
|
||||
@ -6358,15 +6338,13 @@ msgid "No uploaded attachments"
|
||||
msgstr ""
|
||||
|
||||
#: actions/finishopenidlogin.php:211
|
||||
#, fuzzy
|
||||
msgid "Not a valid invitation code."
|
||||
msgstr "Pseudo invalide."
|
||||
msgstr "Code d'invitation invalide."
|
||||
|
||||
#: actions/groupblock.php:81 actions/groupunblock.php:81
|
||||
#: actions/makeadmin.php:81
|
||||
#, fuzzy
|
||||
msgid "No group specified."
|
||||
msgstr "Aucun profil n'a été spécifié."
|
||||
msgstr "Aucun groupe n'a été spécifié."
|
||||
|
||||
#: actions/groupblock.php:91
|
||||
msgid "Only an admin can block group members."
|
||||
@ -6378,15 +6356,13 @@ msgid "User is already blocked from group."
|
||||
msgstr "Cet utilisateur vous a bloqué."
|
||||
|
||||
#: actions/groupblock.php:100
|
||||
#, fuzzy
|
||||
msgid "User is not a member of group."
|
||||
msgstr "Vous n'êtes pas membre de ce groupe."
|
||||
msgstr "L'utilisateur n'est pas membre du groupe."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:311
|
||||
#: actions/groupmembers.php:314
|
||||
#, fuzzy
|
||||
msgid "Block user from group"
|
||||
msgstr "Bloquer cet utilisateur"
|
||||
msgstr "Bloquer cet utilisateur du groupe"
|
||||
|
||||
#: actions/groupblock.php:155
|
||||
#, php-format
|
||||
@ -6401,9 +6377,8 @@ msgid "Database error blocking user from group."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupdesignsettings.php:73 actions/groupdesignsettings.php:68
|
||||
#, fuzzy
|
||||
msgid "You must be logged in to edit a group."
|
||||
msgstr "Vous devez ouvrir une session pour créer un groupe."
|
||||
msgstr "Vous devez ouvrir une session pour modifier un groupe."
|
||||
|
||||
#: actions/groupdesignsettings.php:146 actions/groupdesignsettings.php:141
|
||||
#, fuzzy
|
||||
@ -6439,9 +6414,8 @@ msgid "Design preferences saved."
|
||||
msgstr "Préférences de synchronisation enregistrées."
|
||||
|
||||
#: actions/groupmembers.php:438 actions/groupmembers.php:441
|
||||
#, fuzzy
|
||||
msgid "Make user an admin of the group"
|
||||
msgstr "Seuls les administrateurs d'un groupe peuvent le modifier."
|
||||
msgstr "Faire de cet utilisateur un administrateur du groupe"
|
||||
|
||||
#: actions/groupmembers.php:470 actions/groupmembers.php:473
|
||||
#, fuzzy
|
||||
@ -6454,9 +6428,8 @@ msgstr ""
|
||||
|
||||
#: actions/groupsearch.php:79 actions/noticesearch.php:117
|
||||
#: actions/peoplesearch.php:83
|
||||
#, fuzzy
|
||||
msgid "No results."
|
||||
msgstr "Aucun résultat "
|
||||
msgstr "Aucun résultat."
|
||||
|
||||
#: actions/groupsearch.php:82
|
||||
#, php-format
|
||||
@ -6510,9 +6483,8 @@ msgid "Can't make %s an admin for group %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/newmessage.php:178 actions/newmessage.php:181
|
||||
#, fuzzy
|
||||
msgid "Message sent"
|
||||
msgstr "Message "
|
||||
msgstr "Message envoyé"
|
||||
|
||||
#: actions/newnotice.php:93 lib/designsettings.php:281
|
||||
#: actions/newnotice.php:94
|
||||
@ -6559,9 +6531,8 @@ msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: actions/newnotice.php:230 scripts/maildaemon.php:85
|
||||
#, fuzzy
|
||||
msgid "Couldn't save file."
|
||||
msgstr "Impossible d'enregistrer le profil."
|
||||
msgstr "Impossible d'enregistrer le fichier."
|
||||
|
||||
#: actions/newnotice.php:246 scripts/maildaemon.php:101
|
||||
msgid "Max notice size is 140 chars, including attachment URL."
|
||||
@ -6683,9 +6654,8 @@ msgstr ""
|
||||
"passe ci-dessous."
|
||||
|
||||
#: actions/recoverpassword.php:188
|
||||
#, fuzzy
|
||||
msgid "Password recover"
|
||||
msgstr "Récupération de mot de passe demandée"
|
||||
msgstr "Récupération de mot de passe"
|
||||
|
||||
#: actions/register.php:86
|
||||
#, fuzzy
|
||||
@ -6780,9 +6750,8 @@ msgstr ""
|
||||
"wikipedia.org/wiki/Microblog) %%%%site.name%%%%"
|
||||
|
||||
#: actions/showgroup.php:474 actions/showgroup.php:482
|
||||
#, fuzzy
|
||||
msgid "Admins"
|
||||
msgstr "Administrer"
|
||||
msgstr "Administrateurs"
|
||||
|
||||
#: actions/shownotice.php:101
|
||||
#, fuzzy
|
||||
@ -6857,9 +6826,9 @@ msgstr ""
|
||||
|
||||
#: actions/subscriptions.php:117 actions/subscriptions.php:121
|
||||
#: actions/subscriptions.php:123 actions/subscriptions.php:127
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s is not listening to anyone."
|
||||
msgstr "%1$s suit actuellement "
|
||||
msgstr "%s ne suit actuellement personne."
|
||||
|
||||
#: actions/tag.php:77 actions/tag.php:86
|
||||
#, fuzzy, php-format
|
||||
@ -6872,12 +6841,10 @@ msgid "Notice feed for tag %s (Atom)"
|
||||
msgstr "Flux des statuts de %s"
|
||||
|
||||
#: actions/twitapifavorites.php:125 actions/apifavoritecreate.php:119
|
||||
#, fuzzy
|
||||
msgid "This status is already a favorite!"
|
||||
msgstr "Ce statut a déjà été ajouté à vos favoris !"
|
||||
|
||||
#: actions/twitapifavorites.php:179 actions/apifavoritedestroy.php:122
|
||||
#, fuzzy
|
||||
msgid "That status is not a favorite!"
|
||||
msgstr "Ce statut n'est pas un favori !"
|
||||
|
||||
@ -6893,9 +6860,8 @@ msgid "Target user not specified."
|
||||
msgstr "Aucun destinataire n'a été spécifié."
|
||||
|
||||
#: actions/twitapifriendships.php:221 actions/apifriendshipsshow.php:143
|
||||
#, fuzzy
|
||||
msgid "Could not find target user."
|
||||
msgstr "Aucun statut n'a été trouvé."
|
||||
msgstr "Impossible de trouver l'utilisateur cible."
|
||||
|
||||
#: actions/twitapistatuses.php:322 actions/apitimelinementions.php:116
|
||||
#, fuzzy, php-format
|
||||
@ -6913,19 +6879,16 @@ msgid "Import my Friends Timeline."
|
||||
msgstr ""
|
||||
|
||||
#: actions/userauthorization.php:158 actions/userauthorization.php:188
|
||||
#, fuzzy
|
||||
msgid "License"
|
||||
msgstr "licence."
|
||||
msgstr "Licence"
|
||||
|
||||
#: actions/userauthorization.php:179 actions/userauthorization.php:212
|
||||
#, fuzzy
|
||||
msgid "Reject this subscription"
|
||||
msgstr "Abonnements de %s"
|
||||
msgstr "Rejeter cet souscription"
|
||||
|
||||
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
|
||||
#, fuzzy
|
||||
msgid "Profile design"
|
||||
msgstr "Paramètres du profil"
|
||||
msgstr "Conception de profile"
|
||||
|
||||
#: actions/userdesignsettings.php:87 lib/designsettings.php:76
|
||||
msgid ""
|
||||
@ -6938,9 +6901,9 @@ msgid "Enjoy your hotdog!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/usergroups.php:153
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s is not a member of any group."
|
||||
msgstr "Vous n'êtes pas membre de ce groupe."
|
||||
msgstr "%s n'est pas membre d'aucun groupe."
|
||||
|
||||
#: actions/usergroups.php:158
|
||||
#, php-format
|
||||
@ -6969,7 +6932,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Problème lors de l'enregistrement du statut."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Message adressé à %1$s le %2$s"
|
||||
@ -6977,12 +6940,11 @@ msgstr "Message adressé à %1$s le %2$s"
|
||||
#: lib/accountsettingsaction.php:119 lib/groupnav.php:118
|
||||
#: lib/accountsettingsaction.php:120
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
msgstr "Conception"
|
||||
|
||||
#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:121
|
||||
#, fuzzy
|
||||
msgid "Design your profile"
|
||||
msgstr "Profil de l'utilisateur"
|
||||
msgstr "Concevez votre profile"
|
||||
|
||||
#: lib/action.php:712 lib/action.php:727
|
||||
msgid "TOS"
|
||||
@ -6990,16 +6952,15 @@ msgstr ""
|
||||
|
||||
#: lib/attachmentlist.php:87
|
||||
msgid "Attachments"
|
||||
msgstr ""
|
||||
msgstr "Pièces jointes"
|
||||
|
||||
#: lib/attachmentlist.php:265
|
||||
msgid "Author"
|
||||
msgstr ""
|
||||
msgstr "Auteur"
|
||||
|
||||
#: lib/attachmentlist.php:278
|
||||
#, fuzzy
|
||||
msgid "Provider"
|
||||
msgstr "Profil"
|
||||
msgstr "Fournisseur"
|
||||
|
||||
#: lib/attachmentnoticesection.php:67
|
||||
msgid "Notices where this attachment appears"
|
||||
@ -7040,28 +7001,24 @@ msgid "Tile background image"
|
||||
msgstr ""
|
||||
|
||||
#: lib/designsettings.php:170
|
||||
#, fuzzy
|
||||
msgid "Change colours"
|
||||
msgstr "Modifier votre mot de passe"
|
||||
msgstr "Modifier les couleurs"
|
||||
|
||||
#: lib/designsettings.php:178
|
||||
msgid "Background"
|
||||
msgstr ""
|
||||
|
||||
#: lib/designsettings.php:191
|
||||
#, fuzzy
|
||||
msgid "Content"
|
||||
msgstr "Connecter"
|
||||
msgstr "Contenu"
|
||||
|
||||
#: lib/designsettings.php:204
|
||||
#, fuzzy
|
||||
msgid "Sidebar"
|
||||
msgstr "Rechercher"
|
||||
msgstr "Barre latérale"
|
||||
|
||||
#: lib/designsettings.php:230
|
||||
#, fuzzy
|
||||
msgid "Links"
|
||||
msgstr "Ouvrir une session"
|
||||
msgstr "Liens"
|
||||
|
||||
#: lib/designsettings.php:247
|
||||
msgid "Use defaults"
|
||||
@ -7093,19 +7050,18 @@ msgid "Extra nicknames for the group, comma- or space- separated, max %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/groupnav.php:100
|
||||
#, fuzzy
|
||||
msgid "Blocked"
|
||||
msgstr "Bloquer"
|
||||
msgstr "Bloqué"
|
||||
|
||||
#: lib/groupnav.php:101
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s blocked users"
|
||||
msgstr "Bloquer cet utilisateur"
|
||||
msgstr "%s utilisateurs bloqués"
|
||||
|
||||
#: lib/groupnav.php:119
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Add or edit %s design"
|
||||
msgstr "Ajouter ou modifier le logo de %s"
|
||||
msgstr "Ajouter ou modifier la conception de %s"
|
||||
|
||||
#: lib/mail.php:556
|
||||
#, php-format
|
||||
@ -7185,19 +7141,16 @@ msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:436 lib/noticelist.php:478
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Aucun contenu !"
|
||||
msgstr "dans le contexte"
|
||||
|
||||
#: lib/profileaction.php:177
|
||||
#, fuzzy
|
||||
msgid "User ID"
|
||||
msgstr "Utilisateur"
|
||||
msgstr "ID de l'utilisateur"
|
||||
|
||||
#: lib/searchaction.php:156 lib/searchaction.php:162
|
||||
#, fuzzy
|
||||
msgid "Search help"
|
||||
msgstr "Rechercher"
|
||||
msgstr "Aide sur la recherche"
|
||||
|
||||
#: lib/subscriberspeopleselftagcloudsection.php:48
|
||||
#: lib/subscriptionspeopleselftagcloudsection.php:48
|
||||
@ -7210,9 +7163,9 @@ msgid "People Tagcloud as tagged"
|
||||
msgstr ""
|
||||
|
||||
#: lib/webcolor.php:82
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s is not a valid color!"
|
||||
msgstr "L'adresse du site personnel n'est pas un URL valide. "
|
||||
msgstr "&s n'est pas une couleur valide !"
|
||||
|
||||
#: lib/webcolor.php:123
|
||||
#, php-format
|
||||
@ -7285,8 +7238,9 @@ msgid "groups on %s"
|
||||
msgstr "Actions du groupe"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar supprimé."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7374,9 +7328,9 @@ msgstr ""
|
||||
"action.openidlogin%%)."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Statuts de %1$s dans %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7384,8 +7338,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Statuts correspondant au(x) terme(s) \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Contenu"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7434,19 +7389,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Impossible d'obtenir le jeton de requête."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Flux des statuts de %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Flux des statuts de %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Fil des statuts du groupe %s"
|
||||
msgstr "Flux des statuts de %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7456,17 +7411,17 @@ msgstr "Message adressé à %1$s le %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Fil des favoris de %s"
|
||||
msgstr "Flux pour les amis de %s (RSS 1.0)"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Fil des favoris de %s"
|
||||
msgstr "Flux pour les amis de %s (RSS 2.0)"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Fil des favoris de %s"
|
||||
msgstr "Flux pour les amis de %s (Atom)"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7479,7 +7434,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "Groupe %s"
|
||||
msgstr "Boîte d'envoi de %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7693,7 +7648,7 @@ msgstr "Description du groupe ou du sujet (140 caractères maximum)"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Flux des statuts de %s"
|
||||
msgstr "Nouveau statut"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7701,7 +7656,7 @@ msgid "%s (@%s) added your notice as a favorite"
|
||||
msgstr "%s a ajouté un de vos messages à ses favoris"
|
||||
|
||||
#: lib/mail.php:556
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
|
||||
"\n"
|
||||
@ -7720,6 +7675,19 @@ msgid ""
|
||||
"Faithfully yours,\n"
|
||||
"%6$s\n"
|
||||
msgstr ""
|
||||
"%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n"
|
||||
"\n"
|
||||
"Dans le cas où vous l’auriez oublié, vous pouvez lire le texte de votre "
|
||||
"message ici :\n"
|
||||
"\n"
|
||||
"%3$s\n"
|
||||
"\n"
|
||||
"Vous pouvez consulter la liste des favoris de %1$s ici :\n"
|
||||
"\n"
|
||||
"%4$s\n"
|
||||
"\n"
|
||||
"Cordialement,\n"
|
||||
"%5$s\n"
|
||||
|
||||
#: lib/mail.php:611
|
||||
#, php-format
|
||||
@ -7753,7 +7721,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Impossible de supprimer le favori."
|
||||
msgstr "Impossible de récupérer le flux public."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,20 +1,16 @@
|
||||
# Translation of StatusNet to Irish
|
||||
#
|
||||
# --
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
# Francisco Diéguez <fran.dieguez@glug.es>, 2008.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:19+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:41+0000\n"
|
||||
"Language-Team: Irish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ga\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -7085,7 +7081,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Aconteceu un erro ó gardar o chío."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Mensaxe de %1$s en %2$s"
|
||||
@ -7376,12 +7372,12 @@ msgstr ""
|
||||
#: actions/apigroupcreate.php:261
|
||||
#, fuzzy, php-format
|
||||
msgid "Description is too long (max %d chars)."
|
||||
msgstr "A localización é demasiado longa (max 255 car.)."
|
||||
msgstr "O teu Bio é demasiado longo (max 140 car.)."
|
||||
|
||||
#: actions/apigroupjoin.php:110
|
||||
#, fuzzy
|
||||
msgid "You are already a member of that group."
|
||||
msgstr "Xa bloqueaches a este usuario."
|
||||
msgstr "Xa estas suscrito a estes usuarios:"
|
||||
|
||||
#: actions/apigroupjoin.php:138
|
||||
#, fuzzy, php-format
|
||||
@ -7391,7 +7387,7 @@ msgstr "Non podes seguir a este usuario: o Usuario non se atopa."
|
||||
#: actions/apigroupleave.php:114
|
||||
#, fuzzy
|
||||
msgid "You are not a member of this group."
|
||||
msgstr "Non podes enviar mensaxes a este usurio."
|
||||
msgstr "Non estás suscrito a ese perfil"
|
||||
|
||||
#: actions/apigroupleave.php:124
|
||||
#, fuzzy, php-format
|
||||
@ -7399,23 +7395,24 @@ msgid "Could not remove user %s to group %s."
|
||||
msgstr "Non podes seguir a este usuario: o Usuario non se atopa."
|
||||
|
||||
#: actions/apigrouplist.php:95
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
msgstr "Usuarios"
|
||||
|
||||
#: actions/apigrouplist.php:103
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr ""
|
||||
msgstr "%1s non é unha orixe fiable."
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "groups on %s"
|
||||
msgstr ""
|
||||
msgstr "Outras opcions"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar actualizado."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7439,14 +7436,13 @@ msgid "Unsupported format."
|
||||
msgstr "Formato de ficheiro de imaxe non soportado."
|
||||
|
||||
#: actions/bookmarklet.php:50
|
||||
#, fuzzy
|
||||
msgid "Post to "
|
||||
msgstr "Chíos dende SMS"
|
||||
msgstr ""
|
||||
|
||||
#: actions/editgroup.php:201 actions/newgroup.php:145
|
||||
#, fuzzy, php-format
|
||||
msgid "description is too long (max %d chars)."
|
||||
msgstr "A localización é demasiado longa (max 255 car.)."
|
||||
msgstr "O teu Bio é demasiado longo (max 140 car.)."
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, fuzzy, php-format
|
||||
@ -7476,12 +7472,12 @@ msgstr "Versión de protocolo OMB descoñecida."
|
||||
#: actions/getfile.php:75
|
||||
#, fuzzy
|
||||
msgid "No such file."
|
||||
msgstr "Non existe o perfil."
|
||||
msgstr "Ningún chío."
|
||||
|
||||
#: actions/getfile.php:79
|
||||
#, fuzzy
|
||||
msgid "Cannot read file."
|
||||
msgstr "Non se puido crear o favorito."
|
||||
msgstr "Bloqueo de usuario fallido."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, fuzzy, php-format
|
||||
@ -7491,7 +7487,7 @@ msgstr "Actualizacións dende %1$s en %2$s!"
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
msgid "IM is not available."
|
||||
msgstr "%1s non é unha orixe fiable."
|
||||
msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
|
||||
|
||||
#: actions/login.php:259
|
||||
#, fuzzy, php-format
|
||||
@ -7504,9 +7500,9 @@ msgstr ""
|
||||
"action.openidlogin%%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Actualizacións dende %1$s en %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7514,8 +7510,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Tódalas actualizacións que coinciden co termo de procura \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Conectar"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7568,14 +7565,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Non se puido recoller o token de petición."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Fonte de chíos para %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Fonte de chíos para %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7590,17 +7587,17 @@ msgstr "Mensaxe de %1$s en %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Fonte para os favoritos de %s"
|
||||
msgstr "Fonte para os amigos de %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Fonte para os favoritos de %s"
|
||||
msgstr "Fonte para os amigos de %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Fonte para os favoritos de %s"
|
||||
msgstr "Fonte para os amigos de %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7611,9 +7608,9 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:345
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr ""
|
||||
msgstr "Band. Saída para %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7623,7 +7620,7 @@ msgstr "Chío publicado"
|
||||
#: actions/smssettings.php:91
|
||||
#, fuzzy
|
||||
msgid "SMS is not available."
|
||||
msgstr "Publicación de chíos por SMS desactivado!"
|
||||
msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
|
||||
|
||||
#: actions/tag.php:92
|
||||
#, fuzzy, php-format
|
||||
@ -7744,7 +7741,7 @@ msgstr "Mensaxe demasiado longa - o máximo é 140 caracteres, ti enviaches %d "
|
||||
#: lib/command.php:439
|
||||
#, fuzzy, php-format
|
||||
msgid "Reply to %s sent"
|
||||
msgstr "Replies to %s"
|
||||
msgstr "Non se pode eliminar este chíos."
|
||||
|
||||
#: lib/command.php:441
|
||||
#, fuzzy
|
||||
@ -7836,18 +7833,19 @@ msgid "Select tag to filter"
|
||||
msgstr "Selecciona unha operadora"
|
||||
|
||||
#: lib/groupeditform.php:168
|
||||
#, fuzzy
|
||||
msgid "Describe the group or topic"
|
||||
msgstr ""
|
||||
msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres."
|
||||
|
||||
#: lib/groupeditform.php:170
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Describe the group or topic in %d characters"
|
||||
msgstr ""
|
||||
msgstr "Contanos un pouco de ti e dos teus intereses en 140 caractéres."
|
||||
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Fonte de chíos para %s"
|
||||
msgstr "Novo chío"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7919,7 +7917,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Non se puido eliminar o favorito."
|
||||
msgstr "Non se pudo recuperar a liña de tempo publica."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,31 +1,16 @@
|
||||
# Translation of StatusNet to Hebrew
|
||||
#
|
||||
# --
|
||||
# #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# Hebrew translation for StatusNet
|
||||
# תרגום לעברית של לאקוניה
|
||||
# Copyright (C) 2008 COPYRIGHT HOLDER
|
||||
# כל הזכויות שמורות, 2008
|
||||
# This file is distributed under the same license as the StatusNet package.
|
||||
# קובץ זה מופץ תחת רשיון זהה לזה של החבילה לאקוניקה
|
||||
# Hezy Amiel חזי עמיאל <open@hezyamiel.com>, 2008.
|
||||
#
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:24+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:45+0000\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: he\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6789,7 +6774,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "בעיה בשמירת ההודעה."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7090,14 +7075,14 @@ msgid "Could not remove user %s to group %s."
|
||||
msgstr "נכשלה יצירת OpenID מתוך: %s"
|
||||
|
||||
#: actions/apigrouplist.php:95
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
msgstr "פרופיל"
|
||||
|
||||
#: actions/apigrouplist.php:103
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr ""
|
||||
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, php-format
|
||||
@ -7105,8 +7090,9 @@ msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "התמונה עודכנה."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7138,9 +7124,9 @@ msgid "description is too long (max %d chars)."
|
||||
msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)"
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "מיקרובלוג מאת %s"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
#, fuzzy
|
||||
@ -7173,9 +7159,9 @@ msgid "Cannot read file."
|
||||
msgstr "אין הודעה כזו."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "מיקרובלוג מאת %s"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7192,9 +7178,9 @@ msgstr ""
|
||||
"register%%) לחשבון "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "מיקרובלוג מאת %s"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7202,8 +7188,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "כל העידכונים התואמים את החיפוש אחרי \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "התחבר"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7251,14 +7238,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "אסימון הבקשה לא התקבל."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "הזנת הודעות של %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "הזנת הודעות של %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7396,7 +7383,7 @@ msgstr "הודעה חדשה"
|
||||
#: lib/command.php:88
|
||||
#, fuzzy, php-format
|
||||
msgid "Could not find a user with nickname %s"
|
||||
msgstr "נכשלה ההפניה לשרת: %s"
|
||||
msgstr "עידכון המשתמש נכשל."
|
||||
|
||||
#: lib/command.php:92
|
||||
msgid "It does not make a lot of sense to nudge yourself!"
|
||||
@ -7500,7 +7487,7 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "הזנת הודעות של %s"
|
||||
msgstr "הודעה חדשה"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7557,8 +7544,9 @@ msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "עידכון המשתמש נכשל."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,22 +1,16 @@
|
||||
# Translation of StatusNet to Italian
|
||||
#
|
||||
# --
|
||||
# Italian translation of statusnet
|
||||
# Copyright (C) 2008 THE statusnet'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the statusnet package.
|
||||
# Milo Casagrande <milo@ubuntu.com>, 2008
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:30+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:52+0000\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: it\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6881,7 +6875,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Problema nel salvare il messaggio."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Messaggio a %1$s su %2$s"
|
||||
@ -7197,8 +7191,9 @@ msgid "groups on %s"
|
||||
msgstr "Azioni dei gruppi"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Immagine aggiornata."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7287,9 +7282,9 @@ msgstr ""
|
||||
"%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Aggiornamenti da %1$s su %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7297,8 +7292,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Tutti gli aggiornamenti corrispondenti al termine di ricerca \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Connetti"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7347,19 +7343,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Impossibile ottenere un token di richiesta."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed dei messaggi per %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed dei messaggi per %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Feed dei messaggi per il gruppo %s"
|
||||
msgstr "Feed dei messaggi per %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7369,17 +7365,17 @@ msgstr "Messaggio a %1$s su %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Feed dei preferiti di %s"
|
||||
msgstr "Feed per gli amici di %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Feed dei preferiti di %s"
|
||||
msgstr "Feed per gli amici di %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Feed dei preferiti di %s"
|
||||
msgstr "Feed per gli amici di %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7392,7 +7388,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "Gruppi di %s"
|
||||
msgstr "Casella posta inviata di %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7600,7 +7596,7 @@ msgstr "Descrivi il gruppo o l'argomento in 140 caratteri"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Feed dei messaggi per %s"
|
||||
msgstr "Nuovo messaggio"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7660,7 +7656,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Impossibile eliminare un preferito."
|
||||
msgstr "Impossibile recuperare l'attività pubblica."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,28 +1,17 @@
|
||||
# Translation of StatusNet to Japanese
|
||||
#
|
||||
# Author@translatewiki.net: Fryed-peach
|
||||
# --
|
||||
# #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Toshiya TSURU <turutosiya@gmail.com>, 2008
|
||||
#
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:35+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:55+0000\n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ja\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -31,19 +20,20 @@ msgstr ""
|
||||
#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
msgid " Search Stream for \"%s\""
|
||||
msgstr "\"%s\" のストリームを検索"
|
||||
msgstr "ストリームから「%s」を検索"
|
||||
|
||||
#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
|
||||
#: actions/finishopenidlogin.php:88 actions/register.php:205
|
||||
#: actions/finishopenidlogin.php:110 actions/finishopenidlogin.php:109
|
||||
msgid ""
|
||||
" except this private data: password, email address, IM address, phone number."
|
||||
msgstr "個人情報を除く:パスワード、メールアドレス、IMアドレス、電話番号"
|
||||
msgstr "次の個人情報を除く: パスワード、メールアドレス、IMアドレス、電話番号"
|
||||
|
||||
#: ../actions/showstream.php:400 ../lib/stream.php:109
|
||||
#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
|
||||
#, fuzzy
|
||||
msgid " from "
|
||||
msgstr "から"
|
||||
msgstr "から "
|
||||
|
||||
#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
|
||||
#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
|
||||
@ -55,7 +45,7 @@ msgstr ""
|
||||
#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
|
||||
#, php-format
|
||||
msgid "%1$s has invited you to join them on %2$s"
|
||||
msgstr ""
|
||||
msgstr "%1$s があなたを %2$s へ招待しました"
|
||||
|
||||
#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
|
||||
#: actions/invite.php:228
|
||||
@ -88,12 +78,38 @@ msgid ""
|
||||
"\n"
|
||||
"Sincerely, %2$s\n"
|
||||
msgstr ""
|
||||
"%1$s があなたを %2$s へ招待しました (%3$s)。\n"
|
||||
"\n"
|
||||
"%2$s はあなたの知り合いやあなたが興味をもっている人物の最新の情報を得ることが"
|
||||
"できる、マイクロブログサービスです。\n"
|
||||
"\n"
|
||||
"また、あなたの最新の情報やあなたの考えていること、生活を、あなたのことを知っ"
|
||||
"ている人と共有することができます。あなたと同じ興味をもつ人々と出会う目的でも"
|
||||
"優れたサービスです。\n"
|
||||
"\n"
|
||||
"%1$s の言葉:\n"
|
||||
"\n"
|
||||
"%4$s\n"
|
||||
"\n"
|
||||
"%2$s における %1$s のプロフィールページを以下で見ることができます:\n"
|
||||
"\n"
|
||||
"%5$s\n"
|
||||
"\n"
|
||||
"このサービスを試してみたい場合は以下のリンクをクリックしてこの招待に応じてく"
|
||||
"ださい。\n"
|
||||
"\n"
|
||||
"%6$s\n"
|
||||
"\n"
|
||||
"そうでない場合はこのメッセージを無視することができます。お時間をいただきあり"
|
||||
"がとうございました。\n"
|
||||
"\n"
|
||||
"%2$s\n"
|
||||
|
||||
#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
|
||||
#: lib/mail.php:236 lib/mail.php:235
|
||||
#, php-format
|
||||
msgid "%1$s is now listening to your notices on %2$s."
|
||||
msgstr "%1$s は %2$s であなたの通知を聞いています。"
|
||||
msgstr "%1$s は %2$s であなたの通知を購読しています。"
|
||||
|
||||
#: ../lib/mail.php:126
|
||||
#, php-format
|
||||
@ -105,12 +121,11 @@ msgid ""
|
||||
"Faithfully yours,\n"
|
||||
"%4$s.\n"
|
||||
msgstr ""
|
||||
"%1$s は %2$s であなたの通知を聞いています。\n"
|
||||
"%1$s は %2$s であなたの通知を購読しています。\n"
|
||||
"\n"
|
||||
"\t%3$s\n"
|
||||
"%3$s\n"
|
||||
"\n"
|
||||
"確かにあなたの,\n"
|
||||
"%4$s.\n"
|
||||
"%4$s\n"
|
||||
|
||||
#: ../actions/twitapistatuses.php:482 actions/twitapistatuses.php:415
|
||||
#: actions/twitapistatuses.php:350 actions/twitapistatuses.php:367
|
||||
@ -124,20 +139,20 @@ msgstr ""
|
||||
#: actions/shownotice.php:180
|
||||
#, php-format
|
||||
msgid "%1$s's status on %2$s"
|
||||
msgstr "%1$ のステータス %2$s"
|
||||
msgstr "%2$s における %1$ の状態"
|
||||
|
||||
#: ../actions/invite.php:84 ../actions/invite.php:92 actions/invite.php:91
|
||||
#: actions/invite.php:99 actions/invite.php:123 actions/invite.php:131
|
||||
#: actions/invite.php:125 actions/invite.php:133 actions/invite.php:139
|
||||
#, php-format
|
||||
msgid "%s (%s)"
|
||||
msgstr ""
|
||||
msgstr "%s (%s)"
|
||||
|
||||
#: ../actions/publicrss.php:62 actions/publicrss.php:48
|
||||
#: actions/publicrss.php:90 actions/publicrss.php:89
|
||||
#, php-format
|
||||
msgid "%s Public Stream"
|
||||
msgstr "%s パブリックストリーム"
|
||||
msgstr "%s の公開ストリーム"
|
||||
|
||||
#: ../actions/all.php:47 ../actions/allrss.php:60
|
||||
#: ../actions/twitapistatuses.php:238 ../lib/stream.php:51 actions/all.php:47
|
||||
@ -152,7 +167,7 @@ msgstr "%s パブリックストリーム"
|
||||
#: actions/allrss.php:115 actions/apitimelinefriends.php:114
|
||||
#, php-format
|
||||
msgid "%s and friends"
|
||||
msgstr "%s & ともだち"
|
||||
msgstr "%s と友人"
|
||||
|
||||
#: ../actions/twitapistatuses.php:49 actions/twitapistatuses.php:49
|
||||
#: actions/twitapistatuses.php:33 actions/twitapistatuses.php:32
|
||||
@ -160,12 +175,12 @@ msgstr "%s & ともだち"
|
||||
#: actions/publicrss.php:103
|
||||
#, php-format
|
||||
msgid "%s public timeline"
|
||||
msgstr "%s パブリックタイムライン"
|
||||
msgstr "%s の公開タイムライン"
|
||||
|
||||
#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
|
||||
#, php-format
|
||||
msgid "%s status"
|
||||
msgstr "%s ステータス"
|
||||
msgstr "%s の状態"
|
||||
|
||||
#: ../actions/twitapistatuses.php:338 actions/twitapistatuses.php:265
|
||||
#: actions/twitapistatuses.php:199 actions/twitapistatuses.php:209
|
||||
@ -174,7 +189,7 @@ msgstr "%s ステータス"
|
||||
#: actions/grouprss.php:131 actions/userrss.php:90
|
||||
#, php-format
|
||||
msgid "%s timeline"
|
||||
msgstr "%s タイムライン"
|
||||
msgstr "%s のタイムライン"
|
||||
|
||||
#: ../actions/twitapistatuses.php:52 actions/twitapistatuses.php:52
|
||||
#: actions/twitapistatuses.php:36 actions/twitapistatuses.php:38
|
||||
@ -190,6 +205,8 @@ msgid ""
|
||||
"(You should receive a message by email momentarily, with instructions on how "
|
||||
"to confirm your email address.)"
|
||||
msgstr ""
|
||||
"(メールアドレスを確認する方法を読んで、すぐにメールによるメッセージを受け取る"
|
||||
"ようにしてください)"
|
||||
|
||||
#: ../lib/util.php:257 lib/util.php:273 lib/action.php:605 lib/action.php:702
|
||||
#: lib/action.php:752 lib/action.php:767
|
||||
@ -199,17 +216,17 @@ msgid ""
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
msgstr ""
|
||||
"**%%site.name%%** は [%%site.broughtby%%](%%site.broughtbyurl%%) が提供するマ"
|
||||
"イクロブロギングサービスです。 "
|
||||
"イクロブログサービスです。 "
|
||||
|
||||
#: ../lib/util.php:259 lib/util.php:275 lib/action.php:607 lib/action.php:704
|
||||
#: lib/action.php:754 lib/action.php:769
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** はマイクロブロギングサービスです。"
|
||||
msgstr "**%%site.name%%** はマイクロブログサービスです。 "
|
||||
|
||||
#: ../lib/util.php:274 lib/util.php:290
|
||||
msgid ". Contributors should be attributed by full name or nickname."
|
||||
msgstr "コントリビューターはニックネームかフルネームで記載されています。"
|
||||
msgstr "投稿者はニックネームかフルネームで記載されます。"
|
||||
|
||||
#: ../actions/finishopenidlogin.php:73 ../actions/profilesettings.php:43
|
||||
#: actions/finishopenidlogin.php:79 actions/profilesettings.php:76
|
||||
@ -217,13 +234,13 @@ msgstr "コントリビューターはニックネームかフルネームで記
|
||||
#: lib/groupeditform.php:139 actions/finishopenidlogin.php:100
|
||||
#: lib/groupeditform.php:154 actions/profilesettings.php:108
|
||||
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
|
||||
msgstr "1~64字以内で、小文字アルファベット、数字、スペース。(句読点を除く)"
|
||||
msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く"
|
||||
|
||||
#: ../actions/register.php:152 actions/register.php:166
|
||||
#: actions/register.php:368 actions/register.php:414 actions/register.php:418
|
||||
msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required."
|
||||
msgstr ""
|
||||
"1~64字以内で、小文字アルファベット、数字、スペース(句読点を除く)が必須です"
|
||||
"1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須です。"
|
||||
|
||||
#: ../actions/password.php:42 actions/profilesettings.php:181
|
||||
#: actions/passwordsettings.php:102 actions/passwordsettings.php:108
|
||||
@ -234,12 +251,12 @@ msgstr "6文字以上"
|
||||
#: actions/recoverpassword.php:220 actions/recoverpassword.php:233
|
||||
#: actions/recoverpassword.php:236
|
||||
msgid "6 or more characters, and don't forget it!"
|
||||
msgstr "6文字以上。お忘れなく!"
|
||||
msgstr "6文字以上。忘れないでください!"
|
||||
|
||||
#: ../actions/register.php:154 actions/register.php:168
|
||||
#: actions/register.php:373 actions/register.php:419 actions/register.php:423
|
||||
msgid "6 or more characters. Required."
|
||||
msgstr "6文字以上が必須です。"
|
||||
msgstr "6文字以上。必須です。"
|
||||
|
||||
#: ../actions/imsettings.php:197 actions/imsettings.php:205
|
||||
#: actions/imsettings.php:321 actions/imsettings.php:327
|
||||
@ -248,8 +265,8 @@ msgid ""
|
||||
"A confirmation code was sent to the IM address you added. You must approve %"
|
||||
"s for sending messages to you."
|
||||
msgstr ""
|
||||
"確認用コードを入力されたIMアドレスに送信しました。メッセージを確認するには、%"
|
||||
"sを承認して下さい。"
|
||||
"確認用コードを入力された IM アドレスに送信しました。あなたにメッセージを送れ"
|
||||
"るようにするには%sを承認してください。"
|
||||
|
||||
#: ../actions/emailsettings.php:213 actions/emailsettings.php:231
|
||||
#: actions/emailsettings.php:350 actions/emailsettings.php:358
|
||||
@ -257,12 +274,17 @@ msgid ""
|
||||
"A confirmation code was sent to the email address you added. Check your "
|
||||
"inbox (and spam box!) for the code and instructions on how to use it."
|
||||
msgstr ""
|
||||
"確認用コードを入力された電子メールアドレスに送信しました。受信ボックス(とス"
|
||||
"パムボックス)にコードとそれをどう使うのかという指示が届いていないか確認して"
|
||||
"ください。"
|
||||
|
||||
#: ../actions/smssettings.php:216 actions/smssettings.php:224
|
||||
msgid ""
|
||||
"A confirmation code was sent to the phone number you added. Check your inbox "
|
||||
"(and spam box!) for the code and instructions on how to use it."
|
||||
msgstr ""
|
||||
"確認用コードを入力された電話番号に送信しました。受信ボックス(とスパムボック"
|
||||
"ス)にコードとそれをどう使うのかという指示が届いていないか確認してください。"
|
||||
|
||||
#: ../actions/twitapiaccount.php:49 ../actions/twitapihelp.php:45
|
||||
#: ../actions/twitapistatuses.php:88 ../actions/twitapistatuses.php:259
|
||||
@ -311,7 +333,7 @@ msgstr ""
|
||||
#: actions/apitimelinepublic.php:130 actions/apitimelinetag.php:139
|
||||
#: actions/apitimelineuser.php:163 actions/apiusershow.php:101
|
||||
msgid "API method not found!"
|
||||
msgstr ""
|
||||
msgstr "API メソッドが見つかりません!"
|
||||
|
||||
#: ../actions/twitapiaccount.php:57 ../actions/twitapiaccount.php:113
|
||||
#: ../actions/twitapiaccount.php:119 ../actions/twitapiblocks.php:28
|
||||
@ -339,12 +361,12 @@ msgstr ""
|
||||
#: actions/twitapiaccount.php:48 actions/twitapidirect_messages.php:189
|
||||
#: actions/twitapihelp.php:54 actions/twitapistatuses.php:582
|
||||
msgid "API method under construction."
|
||||
msgstr ""
|
||||
msgstr "API メソッドが工事中です。"
|
||||
|
||||
#: ../lib/util.php:324 lib/util.php:340 lib/action.php:568 lib/action.php:661
|
||||
#: lib/action.php:706 lib/action.php:721
|
||||
msgid "About"
|
||||
msgstr "About"
|
||||
msgstr "解説"
|
||||
|
||||
#: ../actions/userauthorization.php:119 actions/userauthorization.php:126
|
||||
#: actions/userauthorization.php:143 actions/userauthorization.php:178
|
||||
@ -368,12 +390,12 @@ msgstr "追加"
|
||||
#: ../actions/openidsettings.php:43 actions/openidsettings.php:44
|
||||
#: actions/openidsettings.php:93
|
||||
msgid "Add OpenID"
|
||||
msgstr "OpenIDを追加"
|
||||
msgstr "OpenID を追加"
|
||||
|
||||
#: ../lib/settingsaction.php:97 lib/settingsaction.php:91
|
||||
#: lib/accountsettingsaction.php:117
|
||||
msgid "Add or remove OpenIDs"
|
||||
msgstr "OpenIDを追加または削除"
|
||||
msgstr "OpenID を追加または削除"
|
||||
|
||||
#: ../actions/emailsettings.php:38 ../actions/imsettings.php:39
|
||||
#: ../actions/smssettings.php:39 actions/emailsettings.php:39
|
||||
@ -387,24 +409,24 @@ msgstr "住所"
|
||||
#: ../actions/invite.php:131 actions/invite.php:139 actions/invite.php:176
|
||||
#: actions/invite.php:181 actions/invite.php:183 actions/invite.php:189
|
||||
msgid "Addresses of friends to invite (one per line)"
|
||||
msgstr ""
|
||||
msgstr "招待する友人のアドレス (一行に一つ)"
|
||||
|
||||
#: ../actions/showstream.php:273 actions/showstream.php:288
|
||||
#: actions/showstream.php:422 lib/profileaction.php:126
|
||||
msgid "All subscriptions"
|
||||
msgstr "全てのサブスクリプション"
|
||||
msgstr "すべての購読"
|
||||
|
||||
#: ../actions/publicrss.php:64 actions/publicrss.php:50
|
||||
#: actions/publicrss.php:92 actions/publicrss.php:91
|
||||
#, php-format
|
||||
msgid "All updates for %s"
|
||||
msgstr "%sの全てのサブスクリプション"
|
||||
msgstr "%s のすべての更新"
|
||||
|
||||
#: ../actions/noticesearchrss.php:66 actions/noticesearchrss.php:70
|
||||
#: actions/noticesearchrss.php:90 actions/noticesearchrss.php:91
|
||||
#, php-format
|
||||
msgid "All updates matching search term \"%s\""
|
||||
msgstr "\"%s\" にヒットするすべてのアップデート"
|
||||
msgstr "検索語「%s」に一致するすべての更新"
|
||||
|
||||
#: ../actions/finishopenidlogin.php:29 ../actions/login.php:31
|
||||
#: ../actions/openidlogin.php:29 ../actions/register.php:30
|
||||
@ -424,7 +446,7 @@ msgstr "既に購読しています。"
|
||||
#: actions/deletenotice.php:113 actions/deletenotice.php:114
|
||||
#: actions/deletenotice.php:144
|
||||
msgid "Are you sure you want to delete this notice?"
|
||||
msgstr ""
|
||||
msgstr "本当にこの通知を削除しますか?"
|
||||
|
||||
#: ../actions/userauthorization.php:77 actions/userauthorization.php:83
|
||||
#: actions/userauthorization.php:81 actions/userauthorization.php:76
|
||||
@ -437,14 +459,14 @@ msgstr "購読を許可"
|
||||
#: actions/register.php:416 actions/register.php:463 actions/login.php:226
|
||||
#: actions/register.php:473
|
||||
msgid "Automatically login in the future; not for shared computers!"
|
||||
msgstr "将来的には非共用PCでの自動ログイン"
|
||||
msgstr "以降は自動的にログインする。共用コンピューターでは避けましょう!"
|
||||
|
||||
#: ../actions/profilesettings.php:65 actions/profilesettings.php:98
|
||||
#: actions/profilesettings.php:144 actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:160
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
msgstr "自分を購読している者を自動的に購読する (非人間に最適)"
|
||||
|
||||
#: ../actions/avatar.php:32 ../lib/settingsaction.php:90
|
||||
#: actions/profilesettings.php:34 actions/avatarsettings.php:65
|
||||
@ -467,8 +489,8 @@ msgid ""
|
||||
"Awaiting confirmation on this address. Check your Jabber/GTalk account for a "
|
||||
"message with further instructions. (Did you add %s to your buddy list?)"
|
||||
msgstr ""
|
||||
"このアドレスは確認待ちです。Jabber/Gtalk でメッセージを確認して下さい。(%s "
|
||||
"を追加していますか?)"
|
||||
"このアドレスは確認待ちです。Jabber か Gtalk のアカウントで追加の指示が書かれ"
|
||||
"たメッセージを確認してください。(%s を友人リストに追加しましたか?)"
|
||||
|
||||
#: ../actions/emailsettings.php:54 actions/emailsettings.php:55
|
||||
#: actions/emailsettings.php:107 actions/emailsettings.php:113
|
||||
@ -476,16 +498,17 @@ msgid ""
|
||||
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
|
||||
"a message with further instructions."
|
||||
msgstr ""
|
||||
"このアドレスは確認待ちです。受信ボックス(とスパムボックス)に追加の指示が書"
|
||||
"かれたメッセージが届いていないか確認してください。"
|
||||
|
||||
#: ../actions/smssettings.php:58 actions/smssettings.php:58
|
||||
#: actions/smssettings.php:111 actions/smssettings.php:123
|
||||
msgid "Awaiting confirmation on this phone number."
|
||||
msgstr ""
|
||||
msgstr "この電話番号は確認待ちです。"
|
||||
|
||||
#: ../lib/util.php:1318 lib/util.php:1452
|
||||
#, fuzzy
|
||||
msgid "Before »"
|
||||
msgstr "前 >>"
|
||||
msgstr "前 »"
|
||||
|
||||
#: ../actions/profilesettings.php:49 ../actions/register.php:170
|
||||
#: actions/profilesettings.php:82 actions/register.php:184
|
||||
@ -493,7 +516,7 @@ msgstr "前 >>"
|
||||
#: actions/register.php:448 actions/profilesettings.php:127
|
||||
#: actions/register.php:459
|
||||
msgid "Bio"
|
||||
msgstr "バイオグラフィ"
|
||||
msgstr "自己紹介"
|
||||
|
||||
#: ../actions/profilesettings.php:101 ../actions/register.php:82
|
||||
#: ../actions/updateprofile.php:103 actions/profilesettings.php:216
|
||||
@ -502,7 +525,7 @@ msgstr "バイオグラフィ"
|
||||
#: actions/updateprofile.php:107 actions/updateprofile.php:109
|
||||
#: actions/profilesettings.php:206 actions/register.php:211
|
||||
msgid "Bio is too long (max 140 chars)."
|
||||
msgstr "バイオグラフィが長すぎます。(最長140字)"
|
||||
msgstr "自己紹介が長すぎます (最長140文字)。"
|
||||
|
||||
#: ../lib/deleteaction.php:41 lib/deleteaction.php:41 lib/deleteaction.php:69
|
||||
#: actions/deletenotice.php:71
|
||||
@ -6771,7 +6794,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "通知を保存する際に問題が発生しました。"
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7078,7 +7101,7 @@ msgstr "%s グループ"
|
||||
#: actions/apigrouplist.php:103
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr "メンバー数が多いグループ"
|
||||
msgstr "そのプロファイルは送信されていません。"
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, fuzzy, php-format
|
||||
@ -7086,8 +7109,9 @@ msgid "groups on %s"
|
||||
msgstr "このサイト上のグループを検索する"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "アバターが更新されました。"
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7119,9 +7143,9 @@ msgid "description is too long (max %d chars)."
|
||||
msgstr "バイオグラフィが長すぎます。(最長140字)"
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "マイクロブログ by %s"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
#, fuzzy
|
||||
@ -7154,9 +7178,9 @@ msgid "Cannot read file."
|
||||
msgstr "そのような通知はありません。"
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "マイクロブログ by %s"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7171,18 +7195,19 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "マイクロブログ by %s"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "\"%s\" にヒットするすべてのアップデート"
|
||||
msgstr "検索語「%s」に一致するすべての更新"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "接続"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7206,7 +7231,7 @@ msgstr "140字以内で自己紹介"
|
||||
#: actions/profilesettings.php:221 actions/register.php:217
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr "バイオグラフィが長すぎます。(最長140字)"
|
||||
msgstr "自己紹介が長すぎます (最長140文字)。"
|
||||
|
||||
#: actions/register.php:336
|
||||
msgid ""
|
||||
@ -7230,14 +7255,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "リクエストトークンを取得できません"
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "%sの通知フィード"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "%sの通知フィード"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7369,7 +7394,7 @@ msgstr "新しい通知"
|
||||
#: lib/command.php:88
|
||||
#, fuzzy, php-format
|
||||
msgid "Could not find a user with nickname %s"
|
||||
msgstr "サーバへリダイレクトできません : %s"
|
||||
msgstr "ユーザを更新できません"
|
||||
|
||||
#: lib/command.php:92
|
||||
msgid "It does not make a lot of sense to nudge yourself!"
|
||||
@ -7474,7 +7499,7 @@ msgstr "グループやトピックを140字以内記述"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "%sの通知フィード"
|
||||
msgstr "新しい通知"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7525,15 +7550,16 @@ msgstr ""
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:424
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr "から"
|
||||
msgstr "から "
|
||||
|
||||
#: lib/mediafile.php:179 lib/mediafile.php:216
|
||||
msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "ユーザを更新できません"
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,21 +1,16 @@
|
||||
# Translation of StatusNet to Korean
|
||||
#
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:40+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:43:59+0000\n"
|
||||
"Language-Team: Korean\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ko\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6799,7 +6794,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "%2$s에서 %1$s까지 메시지"
|
||||
@ -7115,8 +7110,9 @@ msgid "groups on %s"
|
||||
msgstr "그룹 행동"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "아바타가 업데이트 되었습니다."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7204,9 +7200,9 @@ msgstr ""
|
||||
"용해 보세요."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "%2$s에 있는 %1$s의 업데이트!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7214,8 +7210,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "\"%s\" 에 일치하는 모든 업데이트"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "연결"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7264,19 +7261,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "리퀘스트 토큰을 취득 할 수 없습니다."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "%s의 통지 피드"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "%s의 통지 피드"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "%s 그룹을 위한 공지피드"
|
||||
msgstr "%s의 통지 피드"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7286,17 +7283,17 @@ msgstr "%2$s에서 %1$s까지 메시지"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "%s의 좋아하는 게시글을 위한 피드"
|
||||
msgstr "%s의 친구들을 위한 피드"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "%s의 좋아하는 게시글을 위한 피드"
|
||||
msgstr "%s의 친구들을 위한 피드"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "%s의 좋아하는 게시글을 위한 피드"
|
||||
msgstr "%s의 친구들을 위한 피드"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7309,7 +7306,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "%s 그룹"
|
||||
msgstr "%s의 보낸쪽지함"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7515,7 +7512,7 @@ msgstr "140글자로 그룹이나 토픽 설명하기"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "%s의 통지 피드"
|
||||
msgstr "새로운 통지"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7575,7 +7572,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "favorite을 삭제할 수 없습니다."
|
||||
msgstr "공개 stream을 불러올 수 없습니다."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,29 +1,17 @@
|
||||
# Translation of StatusNet to Macedonian
|
||||
#
|
||||
# Author@translatewiki.net: Bjankuloski06
|
||||
# --
|
||||
# #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) 2008 FREE SOFTWARE MACEDONIA
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# IGOR STAMATOVSKI <igor@slobodensoftver.org.mk>, 2008.
|
||||
#
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:58:46+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:02+0000\n"
|
||||
"Language-Team: Macedonian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: mk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -487,9 +475,8 @@ msgid "Awaiting confirmation on this phone number."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/util.php:1318 lib/util.php:1452
|
||||
#, fuzzy
|
||||
msgid "Before »"
|
||||
msgstr "Предходни »"
|
||||
msgstr "Претходно »"
|
||||
|
||||
#: ../actions/profilesettings.php:49 ../actions/register.php:170
|
||||
#: actions/profilesettings.php:82 actions/register.php:184
|
||||
@ -3202,9 +3189,8 @@ msgid "unsupported file type"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/util.php:1309 lib/util.php:1443
|
||||
#, fuzzy
|
||||
msgid "« After"
|
||||
msgstr "« Следни"
|
||||
msgstr "« Следно"
|
||||
|
||||
#: actions/deletenotice.php:74 actions/disfavor.php:43
|
||||
#: actions/emailsettings.php:127 actions/favor.php:45
|
||||
@ -4090,9 +4076,8 @@ msgstr ""
|
||||
#: actions/groupdesignsettings.php:89 actions/showgroup.php:126
|
||||
#: actions/editgroup.php:84 actions/groupdesignsettings.php:84
|
||||
#: actions/grouplogo.php:86 actions/grouprss.php:91 actions/joingroup.php:76
|
||||
#, fuzzy
|
||||
msgid "No nickname"
|
||||
msgstr "Нема прекар."
|
||||
msgstr "Нема прекар"
|
||||
|
||||
#: actions/editgroup.php:99 actions/groupbyid.php:88 actions/grouplogo.php:100
|
||||
#: actions/groupmembers.php:83 actions/joingroup.php:88
|
||||
@ -6820,7 +6805,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Проблем во снимањето на известувањето."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7120,14 +7105,14 @@ msgid "Could not remove user %s to group %s."
|
||||
msgstr "OpenID формуларот не може да се креира:%s"
|
||||
|
||||
#: actions/apigrouplist.php:95
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
msgstr "Профил"
|
||||
|
||||
#: actions/apigrouplist.php:103
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr ""
|
||||
msgstr "Не ни го испративте тој профил."
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, php-format
|
||||
@ -7135,8 +7120,9 @@ msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Аватарот е ажуриран."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7168,9 +7154,9 @@ msgid "description is too long (max %d chars)."
|
||||
msgstr "Биографијата е предолга (максимумот е 140 знаци)."
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "Микроблог на %s"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
#, fuzzy
|
||||
@ -7203,9 +7189,9 @@ msgid "Cannot read file."
|
||||
msgstr "Нема такво известување."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "Микроблог на %s"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7222,9 +7208,9 @@ msgstr ""
|
||||
"register%%) нова сметка или пробајте [OpenID](%%action.openidlogin%%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Микроблог на %s"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7232,8 +7218,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Сите новини кои се еднакви со бараниот термин „%s“"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Поврзи се"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7281,14 +7268,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Не може да се земе белег за барање."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Канал со известувања на %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Канал со известувања на %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7427,7 +7414,7 @@ msgstr "Ново известување"
|
||||
#: lib/command.php:88
|
||||
#, fuzzy, php-format
|
||||
msgid "Could not find a user with nickname %s"
|
||||
msgstr "Не може да се пренасочи кон серверот: %s"
|
||||
msgstr "Корисникот не може да се освежи/"
|
||||
|
||||
#: lib/command.php:92
|
||||
msgid "It does not make a lot of sense to nudge yourself!"
|
||||
@ -7531,7 +7518,7 @@ msgstr "Опишете се себе си и сопствените интере
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Канал со известувања на %s"
|
||||
msgstr "Ново известување"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7588,8 +7575,9 @@ msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "Корисникот не може да се освежи/"
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,19 +1,16 @@
|
||||
# Translation of StatusNet to Norwegian Nynorsk
|
||||
#
|
||||
# --
|
||||
# nn_NO translation of StatusNet.
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:01+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:10+0000\n"
|
||||
"Language-Team: Norwegian Nynorsk\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: nn\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6831,7 +6828,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Eit problem oppstod ved lagring av notis."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Melding til %1$s på %2$s"
|
||||
@ -7147,8 +7144,9 @@ msgid "groups on %s"
|
||||
msgstr "Gruppe handlingar"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Lasta opp brukarbilete."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7236,9 +7234,9 @@ msgstr ""
|
||||
"%)."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Oppdateringar frå %1$s på %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7246,8 +7244,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Alle oppdateringer frå søket «%s»"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Kopla til"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7296,19 +7295,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Fekk ikkje spørjingsbillett (request token)."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Notisstraum for %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Notisstraum for %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Notisstraum for %s gruppa"
|
||||
msgstr "Notisstraum for %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7318,17 +7317,17 @@ msgstr "Melding til %1$s på %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Straum for %s sine favorittar"
|
||||
msgstr "Straum for vener av %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Straum for %s sine favorittar"
|
||||
msgstr "Straum for vener av %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Straum for %s sine favorittar"
|
||||
msgstr "Straum for vener av %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7341,7 +7340,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "%s gruppe"
|
||||
msgstr "Utboks for %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7548,7 +7547,7 @@ msgstr "Beskriv gruppa eller emnet med 140 teikn"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Notisstraum for %s"
|
||||
msgstr "Ny notis"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7608,7 +7607,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Kunne ikkje slette favoritt."
|
||||
msgstr "Kan ikkje hente offentleg straum."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,30 +1,19 @@
|
||||
# Translation of StatusNet to Polish
|
||||
#
|
||||
# --
|
||||
# Paweł Wilk <siefca@gnu.org>, 2008.
|
||||
# Piotr Drąg <piotrdrag@gmail.com>, 2009.
|
||||
#
|
||||
# Polish language has 3 plural forms.
|
||||
# Special case is used for one and some numbers ending in 2, 3, or 4.
|
||||
# Example:
|
||||
# 1 WINDOW -> 1 OKNO
|
||||
# x2 to x4 WINDOWS -> x2 do x4 OKNA (x != 1)
|
||||
# 5 or more WINDOWS -> 5 lub więcej OKIEN
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:13+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:18+0000\n"
|
||||
"Language-Team: Polish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pl\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
"Plural-Forms: nplurals=3;\n"
|
||||
|
||||
#: ../actions/noticesearchrss.php:64 actions/noticesearchrss.php:68
|
||||
#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
|
||||
@ -7010,7 +6999,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Problem podczas zapisywania wpisu. Za długi."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Witaj w %1$s, @%2$s!"
|
||||
|
Binary file not shown.
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:19+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:22+0000\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: pt\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6716,7 +6716,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7022,8 +7022,9 @@ msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar actualizado."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7081,8 +7082,9 @@ msgid "No such file."
|
||||
msgstr ""
|
||||
|
||||
#: actions/getfile.php:79
|
||||
#, fuzzy
|
||||
msgid "Cannot read file."
|
||||
msgstr ""
|
||||
msgstr "Não foi possível salvar o perfil."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
@ -7114,8 +7116,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Todas as actualizações com o termo \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Ligar"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7162,19 +7165,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Não foi possível obter um token de requisição."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed para os amigos de %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed para os amigos de %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr ""
|
||||
msgstr "Feed para a tag %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, php-format
|
||||
@ -7205,23 +7208,23 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: actions/showgroup.php:345
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr ""
|
||||
msgstr "Feed para a tag %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
msgid "Notice deleted."
|
||||
msgstr "Nenhum código introduzido"
|
||||
msgstr "Avatar actualizado."
|
||||
|
||||
#: actions/smssettings.php:91
|
||||
msgid "SMS is not available."
|
||||
msgstr ""
|
||||
|
||||
#: actions/tag.php:92
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Notice feed for tag %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Feed para a tag %s"
|
||||
|
||||
#: actions/updateprofile.php:62 actions/userauthorization.php:330
|
||||
#, php-format
|
||||
@ -7399,9 +7402,9 @@ msgid "Describe the group or topic in %d characters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/jabber.php:192
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr ""
|
||||
msgstr "URI da mensagem inválido"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7459,8 +7462,9 @@ msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "Não foi possível actualizar o utilizador."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -2,22 +2,16 @@
|
||||
#
|
||||
# Author@translatewiki.net: Александр Сигачёв
|
||||
# --
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:30+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:29+0000\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: ru\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -26,7 +20,7 @@ msgstr ""
|
||||
#: actions/noticesearchrss.php:88 actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
msgid " Search Stream for \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Поисковый поток для «%s»"
|
||||
|
||||
#: ../actions/finishopenidlogin.php:82 ../actions/register.php:191
|
||||
#: actions/finishopenidlogin.php:88 actions/register.php:205
|
||||
@ -34,23 +28,25 @@ msgstr ""
|
||||
msgid ""
|
||||
" except this private data: password, email address, IM address, phone number."
|
||||
msgstr ""
|
||||
"за исключением следующих личных данных: пароля, адреса электронной почты, IM-"
|
||||
"адреса, номера телефона."
|
||||
|
||||
#: ../actions/showstream.php:400 ../lib/stream.php:109
|
||||
#: actions/showstream.php:418 lib/mailbox.php:164 lib/stream.php:76
|
||||
msgid " from "
|
||||
msgstr ""
|
||||
msgstr "от "
|
||||
|
||||
#: ../actions/twitapistatuses.php:478 actions/twitapistatuses.php:412
|
||||
#: actions/twitapistatuses.php:347 actions/twitapistatuses.php:363
|
||||
#, php-format
|
||||
msgid "%1$s / Updates replying to %2$s"
|
||||
msgstr ""
|
||||
msgstr "%1$s / Обновления в ответ %2$s"
|
||||
|
||||
#: ../actions/invite.php:168 actions/invite.php:176 actions/invite.php:211
|
||||
#: actions/invite.php:218 actions/invite.php:220 actions/invite.php:226
|
||||
#, php-format
|
||||
msgid "%1$s has invited you to join them on %2$s"
|
||||
msgstr ""
|
||||
msgstr "%1$s пригласил вас присоединиться к нему на %2$s"
|
||||
|
||||
#: ../actions/invite.php:170 actions/invite.php:220 actions/invite.php:222
|
||||
#: actions/invite.php:228
|
||||
@ -83,12 +79,38 @@ msgid ""
|
||||
"\n"
|
||||
"Sincerely, %2$s\n"
|
||||
msgstr ""
|
||||
"%1$s пригласил вас присоединиться к нему на %2$s (%3$s).\n"
|
||||
"\n"
|
||||
"%2$s — сервис микроблоггинга, позволяющий держать контакт с людьми, которых "
|
||||
"вы знаете и которые вам интересны.\n"
|
||||
"\n"
|
||||
"Вы также можете поделиться новостями о себе, вашими мыслями или вашей онлайн-"
|
||||
"жизнью со знающими вас людьми. Этот сервис также отлично подходит для "
|
||||
"встречи с новыми людьми, разделяющими ваши интересы.\n"
|
||||
"\n"
|
||||
"%1$s говорит:\n"
|
||||
"\n"
|
||||
"%4$s\n"
|
||||
"\n"
|
||||
"Вы можете увидеть страницу профиля %1$s на %2$s здесь:\n"
|
||||
"\n"
|
||||
"%5$s\n"
|
||||
"\n"
|
||||
"Если вы хотите опробовать данный сервис, нажмите на приведённую ниже ссылку, "
|
||||
"чтобы принять приглашение.\n"
|
||||
"\n"
|
||||
"%6$s\n"
|
||||
"\n"
|
||||
"В противном случае вы можете проигнорировать это сообщение. Спасибо за ваше "
|
||||
"терпение и время.\n"
|
||||
"\n"
|
||||
"С уважением, %2$s\n"
|
||||
|
||||
#: ../lib/mail.php:124 lib/mail.php:124 lib/mail.php:126 lib/mail.php:241
|
||||
#: lib/mail.php:236 lib/mail.php:235
|
||||
#, php-format
|
||||
msgid "%1$s is now listening to your notices on %2$s."
|
||||
msgstr ""
|
||||
msgstr "%1$s сейчас слушает ваши заметки на %2$s."
|
||||
|
||||
#: ../lib/mail.php:126
|
||||
#, php-format
|
||||
@ -5597,14 +5619,14 @@ msgid "Unsubscribe from this user"
|
||||
msgstr "Отписаться от этого пользователя"
|
||||
|
||||
#: actions/all.php:77 actions/all.php:59 actions/all.php:99
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Feed for friends of %s (RSS 1.0)"
|
||||
msgstr "Лента друзей %s"
|
||||
msgstr "Лента друзей %s (RSS 1.0)"
|
||||
|
||||
#: actions/all.php:82 actions/all.php:64 actions/all.php:107
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Feed for friends of %s (RSS 2.0)"
|
||||
msgstr "Лента друзей %s"
|
||||
msgstr "Лента друзей %s (RSS 2.0)"
|
||||
|
||||
#: actions/all.php:87 actions/all.php:69 actions/all.php:115
|
||||
#, fuzzy, php-format
|
||||
@ -6892,7 +6914,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Проблемы с сохранением записи."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Сообщение для %1$s на %2$s"
|
||||
@ -7162,7 +7184,8 @@ msgstr "Слишком длинно. Максимальная длина соо
|
||||
#, fuzzy
|
||||
msgid "Could not unfollow user: User not found."
|
||||
msgstr ""
|
||||
"Не удаётся следовать пользователю, т.к. такого пользователя не существует."
|
||||
"Не удаётся следовать за пользователем, т. к. такого пользователя не "
|
||||
"существует."
|
||||
|
||||
#: actions/apifriendshipsdestroy.php:120
|
||||
msgid "You cannot unfollow yourself!"
|
||||
@ -7299,18 +7322,19 @@ msgstr ""
|
||||
"(%%action.openidlogin%%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Обновлено от %1$s на %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Все обновления соответствующие поисковому термину \"%s\""
|
||||
msgstr "Все обновления, соответствующие поисковому запросу «%s»"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Соединить"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7343,7 +7367,9 @@ msgid ""
|
||||
"link up to friends and colleagues. "
|
||||
msgstr ""
|
||||
"При помощи этой формы вы можете создать новый аккаунт, чтобы публиковать "
|
||||
"короткие сообщения и устанавливать связи с друзьями и коллегами."
|
||||
"короткие сообщения и устанавливать связи с друзьями и коллегами (Есть "
|
||||
"[OpenID](http://openid.net/) аккаунт? Тогда используй [OpenID регистрацию](%%"
|
||||
"action.openidlogin%%)!)"
|
||||
|
||||
#: actions/remotesubscribe.php:168
|
||||
#, fuzzy
|
||||
@ -7384,12 +7410,12 @@ msgstr "Сообщение для %1$s на %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Лента друзей %s"
|
||||
msgstr "Лента друзей %s (RSS 1.0)"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Лента друзей %s"
|
||||
msgstr "Лента друзей %s (RSS 2.0)"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
@ -7488,7 +7514,7 @@ msgstr ""
|
||||
#: actions/userauthorization.php:343
|
||||
#, fuzzy, php-format
|
||||
msgid "Can’t read avatar URL ‘%s’."
|
||||
msgstr "Не удается прочитать URL аватары из '%s'"
|
||||
msgstr "Не удаётся прочитать URL аватары «%s»"
|
||||
|
||||
#: actions/userauthorization.php:348
|
||||
#, fuzzy, php-format
|
||||
@ -7665,7 +7691,7 @@ msgstr ""
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:424
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr " из"
|
||||
msgstr "от "
|
||||
|
||||
#: lib/mediafile.php:179 lib/mediafile.php:216
|
||||
msgid "File exceeds user's quota!"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -6559,7 +6559,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr ""
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
|
Binary file not shown.
@ -1,21 +1,17 @@
|
||||
# Translation of StatusNet to Swedish
|
||||
#
|
||||
# Author@translatewiki.net: Micke
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:37+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:33+0000\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: sv\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -512,9 +508,8 @@ msgid "Awaiting confirmation on this phone number."
|
||||
msgstr "Väntar bekräftelse på detta telefonnummer. "
|
||||
|
||||
#: ../lib/util.php:1318 lib/util.php:1452
|
||||
#, fuzzy
|
||||
msgid "Before »"
|
||||
msgstr "Tidigare »"
|
||||
msgstr "Före"
|
||||
|
||||
#: ../actions/profilesettings.php:49 ../actions/register.php:170
|
||||
#: actions/profilesettings.php:82 actions/register.php:184
|
||||
@ -3267,9 +3262,8 @@ msgid "unsupported file type"
|
||||
msgstr "okänd fil typ"
|
||||
|
||||
#: ../lib/util.php:1309 lib/util.php:1443
|
||||
#, fuzzy
|
||||
msgid "« After"
|
||||
msgstr "« Nyare"
|
||||
msgstr "Efter"
|
||||
|
||||
#: actions/deletenotice.php:74 actions/disfavor.php:43
|
||||
#: actions/emailsettings.php:127 actions/favor.php:45
|
||||
@ -3775,19 +3769,19 @@ msgstr "Kunde inte spara Twitter inställningar."
|
||||
#: actions/twittersettings.php:245 actions/twittersettings.php:461
|
||||
#: actions/twittersettings.php:465 actions/twittersettings.php:485
|
||||
msgid "Twitter preferences saved."
|
||||
msgstr ""
|
||||
msgstr "Twitterinställningar sparade."
|
||||
|
||||
#: actions/userauthorization.php:84 actions/userauthorization.php:86
|
||||
msgid "Please check these details to make sure "
|
||||
msgstr ""
|
||||
msgstr "Vänligen kontrollera dessa uppgifter för att försäkra dig om "
|
||||
|
||||
#: actions/userauthorization.php:324 actions/userauthorization.php:340
|
||||
msgid "The subscription has been authorized, but no "
|
||||
msgstr ""
|
||||
msgstr "Abonnemanget har godkänts, men ingen "
|
||||
|
||||
#: actions/userauthorization.php:334 actions/userauthorization.php:351
|
||||
msgid "The subscription has been rejected, but no "
|
||||
msgstr ""
|
||||
msgstr "Abonnemanget har nekats, men ingen "
|
||||
|
||||
#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
|
||||
#: lib/channel.php:138 lib/channel.php:158
|
||||
@ -4027,9 +4021,8 @@ msgid "%s and friends, page %d"
|
||||
msgstr "%s med vänner"
|
||||
|
||||
#: actions/avatarsettings.php:76
|
||||
#, fuzzy
|
||||
msgid "You can upload your personal avatar."
|
||||
msgstr "Du kan uppdatera din personliga profil här"
|
||||
msgstr "Du kan ladda upp din profilbild."
|
||||
|
||||
#: actions/avatarsettings.php:117 actions/avatarsettings.php:191
|
||||
#: actions/grouplogo.php:250 actions/avatarsettings.php:119
|
||||
@ -6973,7 +6966,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Det var ett problem när inlägget sparades."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Meddelande till %1$s på %2$s"
|
||||
@ -7278,9 +7271,9 @@ msgid "%s's groups"
|
||||
msgstr "%s / Favoriter från %s"
|
||||
|
||||
#: actions/apigrouplist.php:103
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr ""
|
||||
msgstr "Du skickade inte oss den profilen"
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, fuzzy, php-format
|
||||
@ -7288,8 +7281,9 @@ msgid "groups on %s"
|
||||
msgstr "Sök personer på denna sida"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Användarbilden uppdaterad."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7376,9 +7370,9 @@ msgstr ""
|
||||
"action.openidlogin%%)."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Uppdateringar från %1$s på %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7386,8 +7380,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Alla uppdateringar som matchar söksträngen \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Anslut"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7435,14 +7430,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Kunde inte få en förfrågan token."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Inlägg flöde för %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Inlägg flöde för %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7457,17 +7452,17 @@ msgstr "Meddelande till %1$s på %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Feed för %s favoriter"
|
||||
msgstr "Flöden för $s vänner"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Feed för %s favoriter"
|
||||
msgstr "Flöden för $s vänner"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Feed för %s favoriter"
|
||||
msgstr "Flöden för $s vänner"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7480,7 +7475,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "Inlägg flöde för %s"
|
||||
msgstr "Outbox för %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7687,7 +7682,7 @@ msgstr "Berätta om dig själv och dina intressen inom 140 tecken"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Inlägg flöde för %s"
|
||||
msgstr "Nytt inlägg"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7747,7 +7742,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Kunde inte tabort favoriten."
|
||||
msgstr "Kunde inte ta emot favoritinläggen."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -2,28 +2,16 @@
|
||||
#
|
||||
# Author@translatewiki.net: Veeven
|
||||
# --
|
||||
# #-#-#-#-# statusnet.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# StatusNet Telugu Translation
|
||||
# Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the StatusNet package.
|
||||
# Veeven <veeven@gmail.com>, 2008.
|
||||
#
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:43+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:36+0000\n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: te\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -155,7 +143,7 @@ msgstr "%s మరియు మిత్రులు"
|
||||
#: actions/publicrss.php:103
|
||||
#, php-format
|
||||
msgid "%s public timeline"
|
||||
msgstr ""
|
||||
msgstr "%s బహిరంగ కాలరేఖ"
|
||||
|
||||
#: ../lib/mail.php:206 lib/mail.php:212 lib/mail.php:411 lib/mail.php:412
|
||||
#, php-format
|
||||
@ -233,7 +221,7 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర
|
||||
#: ../actions/register.php:154 actions/register.php:168
|
||||
#: actions/register.php:373 actions/register.php:419 actions/register.php:423
|
||||
msgid "6 or more characters. Required."
|
||||
msgstr ""
|
||||
msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి."
|
||||
|
||||
#: ../actions/imsettings.php:197 actions/imsettings.php:205
|
||||
#: actions/imsettings.php:321 actions/imsettings.php:327
|
||||
@ -473,7 +461,6 @@ msgid "Awaiting confirmation on this phone number."
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/util.php:1318 lib/util.php:1452
|
||||
#, fuzzy
|
||||
msgid "Before »"
|
||||
msgstr "ఇంతక్రితం »"
|
||||
|
||||
@ -1069,9 +1056,8 @@ msgstr "సహాయం"
|
||||
#: ../lib/util.php:298 lib/util.php:314 lib/action.php:322
|
||||
#: lib/facebookaction.php:200 lib/action.php:393 lib/facebookaction.php:213
|
||||
#: lib/action.php:417 lib/action.php:430
|
||||
#, fuzzy
|
||||
msgid "Home"
|
||||
msgstr "వాకిలి"
|
||||
msgstr "ముంగిలి"
|
||||
|
||||
#: ../actions/profilesettings.php:46 ../actions/register.php:167
|
||||
#: actions/profilesettings.php:79 actions/register.php:181
|
||||
@ -1879,7 +1865,6 @@ msgstr "ఓపెన్ఐడీ"
|
||||
|
||||
#: ../actions/finishopenidlogin.php:61 actions/finishopenidlogin.php:66
|
||||
#: actions/finishopenidlogin.php:73 actions/finishopenidlogin.php:72
|
||||
#, fuzzy
|
||||
msgid "OpenID Account Setup"
|
||||
msgstr "ఓపెన్ఐడీ ఖాతా అమర్పు"
|
||||
|
||||
@ -1996,7 +1981,7 @@ msgstr "సంకేతపదాలు సరిపోలలేదు."
|
||||
#: ../lib/searchaction.php:100 lib/searchaction.php:100
|
||||
#: lib/searchgroupnav.php:80
|
||||
msgid "People"
|
||||
msgstr ""
|
||||
msgstr "ప్రజలు"
|
||||
|
||||
#: ../actions/opensearch.php:33 actions/opensearch.php:33
|
||||
#: actions/opensearch.php:64
|
||||
@ -2061,7 +2046,7 @@ msgstr "అభిరుచులు భద్రమయ్యాయి."
|
||||
#: actions/profilesettings.php:129 actions/profilesettings.php:130
|
||||
#: actions/profilesettings.php:145
|
||||
msgid "Preferred language"
|
||||
msgstr ""
|
||||
msgstr "ప్రాథాన్యతా భాష"
|
||||
|
||||
#: ../lib/util.php:328 lib/util.php:344 lib/action.php:572 lib/action.php:665
|
||||
#: lib/action.php:715 lib/action.php:730
|
||||
@ -2698,13 +2683,13 @@ msgstr ""
|
||||
#: actions/profilesettings.php:138 actions/profilesettings.php:139
|
||||
#: actions/profilesettings.php:154
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
msgstr "కాలమండలం"
|
||||
|
||||
#: ../actions/profilesettings.php:107 actions/profilesettings.php:222
|
||||
#: actions/profilesettings.php:211 actions/profilesettings.php:212
|
||||
#: actions/profilesettings.php:228
|
||||
msgid "Timezone not selected."
|
||||
msgstr ""
|
||||
msgstr "కాలమండలాన్ని ఎంచుకోలేదు."
|
||||
|
||||
#: ../actions/remotesubscribe.php:43 actions/remotesubscribe.php:74
|
||||
#: actions/remotesubscribe.php:98
|
||||
@ -2890,7 +2875,7 @@ msgstr "వాడుకరి పేరు"
|
||||
|
||||
#: ../actions/twitapiusers.php:75 actions/twitapiusers.php:80
|
||||
msgid "User not found."
|
||||
msgstr ""
|
||||
msgstr "వాడుకరి దొరకలేదు."
|
||||
|
||||
#: ../actions/profilesettings.php:63 actions/profilesettings.php:96
|
||||
#: actions/profilesettings.php:139 actions/profilesettings.php:140
|
||||
@ -3152,7 +3137,6 @@ msgid "unsupported file type"
|
||||
msgstr ""
|
||||
|
||||
#: ../lib/util.php:1309 lib/util.php:1443
|
||||
#, fuzzy
|
||||
msgid "« After"
|
||||
msgstr "« తర్వాత"
|
||||
|
||||
@ -3666,15 +3650,15 @@ msgstr ""
|
||||
#: classes/Channel.php:113 classes/Channel.php:132 classes/Channel.php:151
|
||||
#: lib/channel.php:138 lib/channel.php:158
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
msgstr "ఆదేశ ఫలితాలు"
|
||||
|
||||
#: classes/Channel.php:148 classes/Channel.php:204 lib/channel.php:210
|
||||
msgid "Command complete"
|
||||
msgstr ""
|
||||
msgstr "ఆదేశం పూర్తయ్యింది"
|
||||
|
||||
#: classes/Channel.php:158 classes/Channel.php:215 lib/channel.php:221
|
||||
msgid "Command failed"
|
||||
msgstr ""
|
||||
msgstr "ఆదేశం విఫలమైంది"
|
||||
|
||||
#: classes/Command.php:39 classes/Command.php:44 lib/command.php:44
|
||||
msgid "Sorry, this command is not yet implemented."
|
||||
@ -3701,7 +3685,7 @@ msgstr ""
|
||||
#: lib/command.php:182 lib/command.php:315
|
||||
#, php-format
|
||||
msgid "%1$s (%2$s)"
|
||||
msgstr ""
|
||||
msgstr "%1$s (%2$s)"
|
||||
|
||||
#: classes/Command.php:169 classes/Command.php:192 lib/command.php:192
|
||||
#: lib/command.php:185 lib/command.php:318
|
||||
@ -3796,7 +3780,7 @@ msgstr ""
|
||||
|
||||
#: classes/Command.php:344 classes/Command.php:392
|
||||
msgid "Commands:\n"
|
||||
msgstr ""
|
||||
msgstr "ఆదేశాలు:\n"
|
||||
|
||||
#: classes/Message.php:53 classes/Message.php:56 classes/Message.php:55
|
||||
msgid "Could not insert message."
|
||||
@ -3876,7 +3860,7 @@ msgstr "మీరు పంపిన సందేశాలు"
|
||||
|
||||
#: lib/settingsaction.php:99 lib/connectsettingsaction.php:110
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
msgstr "ట్విట్టర్"
|
||||
|
||||
#: lib/settingsaction.php:100 lib/connectsettingsaction.php:111
|
||||
msgid "Twitter integration options"
|
||||
@ -4442,7 +4426,7 @@ msgstr ""
|
||||
|
||||
#: actions/newgroup.php:53
|
||||
msgid "New group"
|
||||
msgstr ""
|
||||
msgstr "కొత్త గుంపు"
|
||||
|
||||
#: actions/newgroup.php:115 actions/newgroup.php:110
|
||||
msgid "Use this form to create a new group."
|
||||
@ -4495,7 +4479,6 @@ msgid "Nudge sent!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/openidlogin.php:97 actions/openidlogin.php:106
|
||||
#, fuzzy
|
||||
msgid "OpenID login"
|
||||
msgstr "ఓపెన్ఐడీ ప్రవేశం"
|
||||
|
||||
@ -4505,9 +4488,8 @@ msgid "Removing your only OpenID "
|
||||
msgstr "ఓపెన్ఐడీని తొలగించండి"
|
||||
|
||||
#: actions/othersettings.php:60
|
||||
#, fuzzy
|
||||
msgid "Other Settings"
|
||||
msgstr "ట్విట్టర్ అమరికలు"
|
||||
msgstr "ఇతర అమరికలు"
|
||||
|
||||
#: actions/othersettings.php:71
|
||||
msgid "Manage various other options."
|
||||
@ -4518,9 +4500,8 @@ msgid "URL Auto-shortening"
|
||||
msgstr ""
|
||||
|
||||
#: actions/othersettings.php:112
|
||||
#, fuzzy
|
||||
msgid "Service"
|
||||
msgstr "వెతుకు"
|
||||
msgstr "సేవ"
|
||||
|
||||
#: actions/othersettings.php:113 actions/othersettings.php:111
|
||||
#: actions/othersettings.php:118
|
||||
@ -4690,7 +4671,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:77 lib/groupnav.php:85 actions/showgroup.php:82
|
||||
#, php-format
|
||||
msgid "%s group"
|
||||
msgstr ""
|
||||
msgstr "%s గుంపు"
|
||||
|
||||
#: actions/showgroup.php:79 actions/showgroup.php:84
|
||||
#, php-format
|
||||
@ -4740,9 +4721,8 @@ msgstr "%s యొక్క సందేశముల ఫీడు"
|
||||
#: actions/showgroup.php:384 actions/showgroup.php:373
|
||||
#: actions/showgroup.php:430 actions/showgroup.php:381
|
||||
#: actions/showgroup.php:438
|
||||
#, fuzzy
|
||||
msgid "Members"
|
||||
msgstr "సభ్యులైన తేదీ"
|
||||
msgstr "సభ్యులు"
|
||||
|
||||
#: actions/showgroup.php:363 actions/showstream.php:413
|
||||
#: actions/showstream.php:442 actions/showstream.php:524 lib/section.php:95
|
||||
@ -4756,7 +4736,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:370 actions/showgroup.php:350
|
||||
#: actions/showgroup.php:384 actions/showgroup.php:392
|
||||
msgid "All members"
|
||||
msgstr ""
|
||||
msgstr "అందరు సభ్యులూ"
|
||||
|
||||
#: actions/showgroup.php:378
|
||||
#, php-format
|
||||
@ -4861,9 +4841,9 @@ msgid "Subscribed"
|
||||
msgstr "చందాదార్లు"
|
||||
|
||||
#: actions/subscribers.php:50
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s subscribers"
|
||||
msgstr "చందాదార్లు"
|
||||
msgstr "%s చందాదార్లు"
|
||||
|
||||
#: actions/subscribers.php:52
|
||||
#, php-format
|
||||
@ -4993,9 +4973,8 @@ msgid "Twitter user name"
|
||||
msgstr "ట్విట్టర్ అమరికలు"
|
||||
|
||||
#: actions/twittersettings.php:126 actions/twittersettings.php:129
|
||||
#, fuzzy
|
||||
msgid "Twitter password"
|
||||
msgstr "కొత్త సంకేతపదం"
|
||||
msgstr "ట్విట్టర్ సంకేతపదం"
|
||||
|
||||
#: actions/twittersettings.php:228 actions/twittersettings.php:232
|
||||
#: actions/twittersettings.php:248
|
||||
@ -5034,7 +5013,7 @@ msgstr "చందాదార్లు"
|
||||
#: actions/apigrouplistall.php:90
|
||||
#, php-format
|
||||
msgid "%s groups"
|
||||
msgstr ""
|
||||
msgstr "%s గుంపులు"
|
||||
|
||||
#: actions/usergroups.php:65 actions/usergroups.php:64
|
||||
#, php-format
|
||||
@ -5066,17 +5045,17 @@ msgstr "అవతారపు తాజాకరణ విఫలమైంది.
|
||||
#: lib/accountsettingsaction.php:119 lib/accountsettingsaction.php:122
|
||||
#: lib/accountsettingsaction.php:123
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
msgstr "ఇతర"
|
||||
|
||||
#: lib/accountsettingsaction.php:120 lib/accountsettingsaction.php:123
|
||||
#: lib/accountsettingsaction.php:124
|
||||
msgid "Other options"
|
||||
msgstr ""
|
||||
msgstr "ఇతర ఎంపికలు"
|
||||
|
||||
#: lib/action.php:130 lib/action.php:132 lib/action.php:142 lib/action.php:144
|
||||
#, php-format
|
||||
msgid "%s - %s"
|
||||
msgstr ""
|
||||
msgstr "%s - %s"
|
||||
|
||||
#: lib/action.php:145 lib/action.php:147 lib/action.php:157 lib/action.php:159
|
||||
msgid "Untitled page"
|
||||
@ -5095,9 +5074,8 @@ msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "గురించి"
|
||||
msgstr "ఖాతా"
|
||||
|
||||
#: lib/action.php:328 lib/action.php:399 lib/action.php:419 lib/action.php:432
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
@ -5234,9 +5212,8 @@ msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వ
|
||||
|
||||
#: lib/groupeditform.php:151 lib/groupeditform.php:166
|
||||
#: lib/groupeditform.php:172
|
||||
#, fuzzy
|
||||
msgid "Description"
|
||||
msgstr "చందాలు"
|
||||
msgstr "వివరణ"
|
||||
|
||||
#: lib/groupeditform.php:153 lib/groupeditform.php:168
|
||||
#, fuzzy
|
||||
@ -5252,7 +5229,7 @@ msgstr "మీరు ఎక్కడ నుండి, \"నగరం, రాష
|
||||
|
||||
#: lib/groupnav.php:84 lib/searchgroupnav.php:84
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
msgstr "గుంపు"
|
||||
|
||||
#: lib/groupnav.php:100 actions/groupmembers.php:175 lib/groupnav.php:106
|
||||
msgid "Admin"
|
||||
@ -5264,9 +5241,8 @@ msgid "Edit %s group properties"
|
||||
msgstr ""
|
||||
|
||||
#: lib/groupnav.php:106 lib/groupnav.php:112
|
||||
#, fuzzy
|
||||
msgid "Logo"
|
||||
msgstr "నిష్క్రమించు"
|
||||
msgstr "చిహ్నం"
|
||||
|
||||
#: lib/groupnav.php:107 lib/groupnav.php:113
|
||||
#, php-format
|
||||
@ -6739,7 +6715,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7040,14 +7016,14 @@ msgid "Could not remove user %s to group %s."
|
||||
msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించలేకపోయాం: %s"
|
||||
|
||||
#: actions/apigrouplist.php:95
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
msgstr "%s గుంపులు"
|
||||
|
||||
#: actions/apigrouplist.php:103
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr ""
|
||||
msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, php-format
|
||||
@ -7055,8 +7031,9 @@ msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "అవతారాన్ని తాజాకరించాం."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7087,9 +7064,9 @@ msgid "description is too long (max %d chars)."
|
||||
msgstr "స్వపరిచయం చాలా పెద్దగా ఉంది (140 అక్షరాలు గరిష్ఠం)."
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "%s యొక్క మైక్రోబ్లాగు"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
msgid "User being listened to does not exist."
|
||||
@ -7118,9 +7095,9 @@ msgid "Cannot read file."
|
||||
msgstr "అటువంటి సందేశమేమీ లేదు."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "%s యొక్క మైక్రోబ్లాగు"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7135,9 +7112,9 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "%s యొక్క మైక్రోబ్లాగు"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7145,8 +7122,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "\"%s\"తో సరిపోలే అన్ని తాజాకరణలు"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "అనుసంధానించు"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7192,14 +7170,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "%s యొక్క సందేశముల ఫీడు"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "%s యొక్క సందేశముల ఫీడు"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7237,7 +7215,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "%s యొక్క సందేశముల ఫీడు"
|
||||
msgstr "%s గుంపు"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7327,7 +7305,7 @@ msgstr "కొత్త సందేశం"
|
||||
#: lib/command.php:88
|
||||
#, fuzzy, php-format
|
||||
msgid "Could not find a user with nickname %s"
|
||||
msgstr "ఈ పేరుతో కొత్త వాడుకరిని సృష్టించు"
|
||||
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
|
||||
|
||||
#: lib/command.php:92
|
||||
msgid "It does not make a lot of sense to nudge yourself!"
|
||||
@ -7431,7 +7409,7 @@ msgstr "మీ గురించి మరియు మీ ఆసక్తు
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "%s యొక్క సందేశముల ఫీడు"
|
||||
msgstr "కొత్త సందేశం"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, php-format
|
||||
@ -7489,8 +7467,9 @@ msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,22 +1,16 @@
|
||||
# Translation of StatusNet to Turkish
|
||||
#
|
||||
# --
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:51+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:40+0000\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: tr\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6822,7 +6816,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Durum mesajını kaydederken hata oluştu."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr ""
|
||||
@ -7123,14 +7117,14 @@ msgid "Could not remove user %s to group %s."
|
||||
msgstr "OpenID formu yaratılamadı: %s"
|
||||
|
||||
#: actions/apigrouplist.php:95
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "%s's groups"
|
||||
msgstr ""
|
||||
msgstr "Profil"
|
||||
|
||||
#: actions/apigrouplist.php:103
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr ""
|
||||
msgstr "Bize o profili yollamadınız"
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, php-format
|
||||
@ -7138,8 +7132,9 @@ msgid "groups on %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Avatar güncellendi."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7172,9 +7167,9 @@ msgid "description is too long (max %d chars)."
|
||||
msgstr "Hakkında bölümü çok uzun (azm 140 karakter)."
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "%s adli kullanicinin durum mesajlari"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
msgid "User being listened to does not exist."
|
||||
@ -7205,9 +7200,9 @@ msgid "Cannot read file."
|
||||
msgstr "Böyle bir durum mesajı yok."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "%s adli kullanicinin durum mesajlari"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7225,9 +7220,9 @@ msgstr ""
|
||||
"[OpenID](%%action.openidlogin%%) ile giriş yapın."
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "%s adli kullanicinin durum mesajlari"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7235,8 +7230,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "\"%s\" kelimesinin geçtiği tüm güncellemeler"
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Bağlan"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7283,14 +7279,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr ""
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "%s için durum RSS beslemesi"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "%s için durum RSS beslemesi"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7423,7 +7419,7 @@ msgstr "Yeni durum mesajı"
|
||||
#: lib/command.php:88
|
||||
#, fuzzy, php-format
|
||||
msgid "Could not find a user with nickname %s"
|
||||
msgstr "Sunucuya yönlendirme yapılamadı: %s"
|
||||
msgstr "Kullanıcı güncellenemedi."
|
||||
|
||||
#: lib/command.php:92
|
||||
msgid "It does not make a lot of sense to nudge yourself!"
|
||||
@ -7527,7 +7523,7 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "%s için durum RSS beslemesi"
|
||||
msgstr "Yeni durum mesajı"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7584,8 +7580,9 @@ msgid "File exceeds user's quota!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr ""
|
||||
msgstr "Kullanıcı güncellenemedi."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -1,22 +1,16 @@
|
||||
# Translation of StatusNet to Ukrainian
|
||||
#
|
||||
# --
|
||||
# #-#-#-#-# statusnet.new.pot (PACKAGE VERSION) #-#-#-#-#
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 19:59:57+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:43+0000\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: uk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -6879,7 +6873,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Проблема при збереженні повідомлення."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "Повідомлення до %1$s на %2$s"
|
||||
@ -7195,8 +7189,9 @@ msgid "groups on %s"
|
||||
msgstr "Діяльність групи"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Аватару оновлено."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7284,9 +7279,9 @@ msgstr ""
|
||||
"action.openidlogin%%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Оновлення від %1$s на %2$s!"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7294,8 +7289,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Всі оновлення за збігом з \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "З'єднання"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7344,19 +7340,19 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Не вдалося отримати токен запиту."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Живлення повідомлень для %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Живлення повідомлень для %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (Atom)"
|
||||
msgstr "Живлення повідомлень для групи %s"
|
||||
msgstr "Живлення повідомлень для %s"
|
||||
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
@ -7366,17 +7362,17 @@ msgstr "Повідомлення до %1$s на %2$s"
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Живлення для обраних повідомлень від %s"
|
||||
msgstr "Живлення для друзів %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Живлення для обраних повідомлень від %s"
|
||||
msgstr "Живлення для друзів %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Живлення для обраних повідомлень від %s"
|
||||
msgstr "Живлення для друзів %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7389,7 +7385,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "Група %s"
|
||||
msgstr "Вихідні для %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7598,7 +7594,7 @@ msgstr "Опишіть групу або тему, вкладаючись у 140
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Живлення повідомлень для %s"
|
||||
msgstr "Нове повідомлення"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7658,7 +7654,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Не можна видалити зі списку обраних."
|
||||
msgstr "Не вдається відновити загальний потік."
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-02 10:50-0800\n"
|
||||
"PO-Revision-Date: 2009-11-03 20:00:03+0000\n"
|
||||
"POT-Creation-Date: 2009-11-06 13:16+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 15:44:47+0000\n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58495); Translate extension (2009-08-03)\n"
|
||||
"X-Generator: MediaWiki 1.16alpha(r58648); Translate extension (2009-08-03)\n"
|
||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||
"X-Language-Code: vi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -7098,7 +7098,7 @@ msgstr ""
|
||||
msgid "Problem saving notice. Too long."
|
||||
msgstr "Có lỗi xảy ra khi lưu tin nhắn."
|
||||
|
||||
#: classes/User.php:319 classes/User.php:327
|
||||
#: classes/User.php:319 classes/User.php:327 classes/User.php:334
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome to %1$s, @%2$s!"
|
||||
msgstr "%s chào mừng bạn "
|
||||
@ -7422,7 +7422,7 @@ msgstr "%s và nhóm"
|
||||
#: actions/apigrouplist.php:103
|
||||
#, fuzzy, php-format
|
||||
msgid "Groups %s is a member of on %s."
|
||||
msgstr "Thành viên"
|
||||
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||
|
||||
#: actions/apigrouplistall.php:94
|
||||
#, fuzzy, php-format
|
||||
@ -7430,8 +7430,9 @@ msgid "groups on %s"
|
||||
msgstr "Mã nhóm"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
#, fuzzy
|
||||
msgid "Status deleted."
|
||||
msgstr ""
|
||||
msgstr "Hình đại diện đã được cập nhật."
|
||||
|
||||
#: actions/apistatusesupdate.php:132
|
||||
msgid "Unable to handle that much POST data!"
|
||||
@ -7465,7 +7466,7 @@ msgstr "Lý lịch quá dài (không quá 140 ký tự)"
|
||||
#: actions/favoritesrss.php:115
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates favored by %1$s on %2$s!"
|
||||
msgstr "Tất cả các cập nhật của %s"
|
||||
msgstr "Dòng tin nhắn cho %s"
|
||||
|
||||
#: actions/finishremotesubscribe.php:80
|
||||
#, fuzzy
|
||||
@ -7498,9 +7499,9 @@ msgid "Cannot read file."
|
||||
msgstr "Không có tin nhắn nào."
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates from members of %1$s on %2$s!"
|
||||
msgstr ""
|
||||
msgstr "Dòng tin nhắn cho %s"
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
@ -7508,18 +7509,19 @@ msgid "IM is not available."
|
||||
msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận."
|
||||
|
||||
#: actions/login.php:259
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"Login with your username and password. Don't have a username yet? [Register]"
|
||||
"(%%action.register%%) a new account."
|
||||
msgstr ""
|
||||
"Hãy đăng nhập với tên đăng nhập và mật khẩu của bạn. Nếu bạn chưa có tài "
|
||||
"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới."
|
||||
"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập "
|
||||
"bằng [OpenID](%%action.openidlogin%%). "
|
||||
|
||||
#: actions/noticesearchrss.php:89
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Updates with \"%s\""
|
||||
msgstr ""
|
||||
msgstr "Dòng tin nhắn cho %s"
|
||||
|
||||
#: actions/noticesearchrss.php:91
|
||||
#, fuzzy, php-format
|
||||
@ -7527,8 +7529,9 @@ msgid "Updates matching search term \"%1$s\" on %2$s!"
|
||||
msgstr "Các thay đổi phù hợp với từ \"%s\""
|
||||
|
||||
#: actions/oembed.php:157
|
||||
#, fuzzy
|
||||
msgid "content type "
|
||||
msgstr ""
|
||||
msgstr "Kết nối"
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
@ -7576,14 +7579,14 @@ msgid "Couldn’t get a request token."
|
||||
msgstr "Không thể lấy token yêu cầu."
|
||||
|
||||
#: actions/replies.php:144
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 1.0)"
|
||||
msgstr ""
|
||||
msgstr "Dòng tin nhắn cho %s"
|
||||
|
||||
#: actions/replies.php:151
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies feed for %s (RSS 2.0)"
|
||||
msgstr ""
|
||||
msgstr "Dòng tin nhắn cho %s"
|
||||
|
||||
#: actions/replies.php:158
|
||||
#, fuzzy, php-format
|
||||
@ -7593,22 +7596,22 @@ msgstr "Dòng tin nhắn cho %s"
|
||||
#: actions/repliesrss.php:72
|
||||
#, fuzzy, php-format
|
||||
msgid "Replies to %1$s on %2$s!"
|
||||
msgstr "Trả lời cho %s"
|
||||
msgstr "%s chào mừng bạn "
|
||||
|
||||
#: actions/showfavorites.php:170
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 1.0)"
|
||||
msgstr "Tìm kiếm các tin nhắn ưa thích của %s"
|
||||
msgstr "Chọn những người bạn của %s"
|
||||
|
||||
#: actions/showfavorites.php:177
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (RSS 2.0)"
|
||||
msgstr "Tìm kiếm các tin nhắn ưa thích của %s"
|
||||
msgstr "Chọn những người bạn của %s"
|
||||
|
||||
#: actions/showfavorites.php:184
|
||||
#, fuzzy, php-format
|
||||
msgid "Feed for favorites of %s (Atom)"
|
||||
msgstr "Tìm kiếm các tin nhắn ưa thích của %s"
|
||||
msgstr "Chọn những người bạn của %s"
|
||||
|
||||
#: actions/showfavorites.php:211
|
||||
#, php-format
|
||||
@ -7621,7 +7624,7 @@ msgstr ""
|
||||
#: actions/showgroup.php:345
|
||||
#, fuzzy, php-format
|
||||
msgid "FOAF for %s group"
|
||||
msgstr "%s và nhóm"
|
||||
msgstr "Hộp thư đi của %s"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
@ -7828,7 +7831,7 @@ msgstr "Nói về những sở thích của nhóm trong vòng 140 ký tự"
|
||||
#: lib/jabber.php:192
|
||||
#, fuzzy, php-format
|
||||
msgid "notice id: %s"
|
||||
msgstr "Dòng tin nhắn cho %s"
|
||||
msgstr "Thông báo mới"
|
||||
|
||||
#: lib/mail.php:554
|
||||
#, fuzzy, php-format
|
||||
@ -7901,7 +7904,7 @@ msgstr ""
|
||||
#: lib/mediafile.php:201 lib/mediafile.php:237
|
||||
#, fuzzy
|
||||
msgid "Could not determine file's mime-type!"
|
||||
msgstr "Không thể tạo favorite."
|
||||
msgstr "Không thể lấy lại các tin nhắn ưa thích"
|
||||
|
||||
#: lib/oauthstore.php:345
|
||||
#, fuzzy
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -98,11 +98,10 @@ class AutocompleteAction extends Action
|
||||
$user = new User();
|
||||
$user->limit($limit);
|
||||
$user->whereAdd('nickname like \'' . trim($user->escape($q), '\'') . '%\'');
|
||||
$user->find();
|
||||
while($user->fetch()) {
|
||||
$profile = Profile::staticGet($user->id);
|
||||
$user->profile=$profile;
|
||||
$this->users[]=$user;
|
||||
if($user->find()){
|
||||
while($user->fetch()) {
|
||||
$this->users[]=clone($user);
|
||||
}
|
||||
}
|
||||
}
|
||||
if(substr($q,0,1)=='!'){
|
||||
@ -111,9 +110,10 @@ class AutocompleteAction extends Action
|
||||
$group = new User_group();
|
||||
$group->limit($limit);
|
||||
$group->whereAdd('nickname like \'' . trim($group->escape($q), '\'') . '%\'');
|
||||
$group->find();
|
||||
while($group->fetch()) {
|
||||
$this->groups[]=$group;
|
||||
if($group->find()){
|
||||
while($group->fetch()) {
|
||||
$this->groups[]=clone($group);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
@ -124,7 +124,8 @@ class AutocompleteAction extends Action
|
||||
parent::handle($args);
|
||||
$results = array();
|
||||
foreach($this->users as $user){
|
||||
$results[]=array('nickname' => $user->nickname, 'fullname'=> $user->profile->fullname, 'type'=>'user');
|
||||
$profile = $user->getProfile();
|
||||
$results[]=array('nickname' => $user->nickname, 'fullname'=> $profile->fullname, 'type'=>'user');
|
||||
}
|
||||
foreach($this->groups as $group){
|
||||
$results[]=array('nickname' => $group->nickname, 'fullname'=> $group->fullname, 'type'=>'group');
|
||||
|
@ -46,7 +46,60 @@ class LdapPlugin extends Plugin
|
||||
{
|
||||
if(ldap_check_password($nickname, $password)){
|
||||
$authenticated = true;
|
||||
//stop handling of other events, because we have an answer
|
||||
return false;
|
||||
}
|
||||
if(common_config('ldap','authoritative')){
|
||||
//a false return stops handler processing
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function onAutoRegister($nickname)
|
||||
{
|
||||
$user = User::staticGet('nickname', $nickname);
|
||||
if (! is_null($user) && $user !== false) {
|
||||
common_log(LOG_WARNING, "An attempt was made to autoregister an existing user with nickname: $nickname");
|
||||
return;
|
||||
}
|
||||
|
||||
$attributes=array();
|
||||
$config_attributes = array('nickname','email','fullname','homepage','location');
|
||||
foreach($config_attributes as $config_attribute){
|
||||
$value = common_config('ldap', $config_attribute.'_attribute');
|
||||
if($value!==false){
|
||||
array_push($attributes,$value);
|
||||
}
|
||||
}
|
||||
$entry = ldap_get_user($nickname,$attributes);
|
||||
if($entry){
|
||||
$registration_data = array();
|
||||
foreach($config_attributes as $config_attribute){
|
||||
$value = common_config('ldap', $config_attribute.'_attribute');
|
||||
if($value!==false){
|
||||
if($config_attribute=='email'){
|
||||
$registration_data[$config_attribute]=common_canonical_email($entry->getValue($value,'single'));
|
||||
}else if($config_attribute=='nickname'){
|
||||
$registration_data[$config_attribute]=common_canonical_nickname($entry->getValue($value,'single'));
|
||||
}else{
|
||||
$registration_data[$config_attribute]=$entry->getValue($value,'single');
|
||||
}
|
||||
}
|
||||
}
|
||||
//set the database saved password to a random string.
|
||||
$registration_data['password']=common_good_rand(16);
|
||||
$user = User::register($registration_data);
|
||||
//prevent other handlers from running, as we have registered the user
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function onChangePassword($nickname,$oldpassword,$newpassword,&$errormsg)
|
||||
{
|
||||
//TODO implement this
|
||||
$errormsg = _('Sorry, changing LDAP passwords is not supported at this time');
|
||||
|
||||
//return false, indicating that the event has been handled
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -11,6 +11,13 @@ $config['ldap']['basedn']
|
||||
$config['ldap']['host']
|
||||
|
||||
$config['ldap']['nickname_attribute'] Set this to the name of the ldap attribute that holds the username. For example, on Microsoft's Active Directory, this should be set to 'sAMAccountName'
|
||||
$config['ldap']['nickname_email'] Set this to the name of the ldap attribute that holds the user's email address. For example, on Microsoft's Active Directory, this should be set to 'mail'
|
||||
$config['ldap']['nickname_fullname'] Set this to the name of the ldap attribute that holds the user's full name. For example, on Microsoft's Active Directory, this should be set to 'displayName'
|
||||
$config['ldap']['nickname_homepage'] Set this to the name of the ldap attribute that holds the the url of the user's home page.
|
||||
$config['ldap']['nickname_location'] Set this to the name of the ldap attribute that holds the user's location.
|
||||
|
||||
$config['ldap']['authoritative'] Set to true if LDAP's responses are authoritative (meaning if LDAP fails, do check the any other plugins or the internal password database)
|
||||
$config['ldap']['autoregister'] Set to true if users should be automatically created when they attempt to login
|
||||
|
||||
Finally, add "addPlugin('ldap');" to the bottom of your config.php
|
||||
|
||||
|
@ -38,19 +38,20 @@ function ldap_get_config(){
|
||||
|
||||
function ldap_get_connection($config = null){
|
||||
if($config == null){
|
||||
static $ldap = null;
|
||||
if($ldap!=null){
|
||||
return $ldap;
|
||||
}
|
||||
$config = ldap_get_config();
|
||||
}
|
||||
$ldap = Net_LDAP2::connect($config);
|
||||
if (PEAR::isError($ldap)) {
|
||||
common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$ldap->getMessage());
|
||||
|
||||
//cannot use Net_LDAP2::connect() as StatusNet uses
|
||||
//PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
|
||||
//PEAR handling can be overridden on instance objects, so we do that.
|
||||
$ldap = new Net_LDAP2($config);
|
||||
$ldap->setErrorHandling(PEAR_ERROR_RETURN);
|
||||
$err=$ldap->bind();
|
||||
if (Net_LDAP2::isError($err)) {
|
||||
common_log(LOG_WARNING, 'Could not connect to LDAP server: '.$err->getMessage());
|
||||
return false;
|
||||
}else{
|
||||
return $ldap;
|
||||
}
|
||||
return $ldap;
|
||||
}
|
||||
|
||||
function ldap_check_password($username, $password){
|
||||
@ -58,12 +59,12 @@ function ldap_check_password($username, $password){
|
||||
if(!$ldap){
|
||||
return false;
|
||||
}
|
||||
$dn = ldap_get_user_dn($username);
|
||||
if(!$dn){
|
||||
$entry = ldap_get_user($username);
|
||||
if(!$entry){
|
||||
return false;
|
||||
}else{
|
||||
$config = ldap_get_config();
|
||||
$config['binddn']=$dn;
|
||||
$config['binddn']=$entry->dn();
|
||||
$config['bindpw']=$password;
|
||||
if(ldap_get_connection($config)){
|
||||
return true;
|
||||
@ -74,17 +75,18 @@ function ldap_check_password($username, $password){
|
||||
}
|
||||
|
||||
/**
|
||||
* get an LDAP user's DN given the user's username
|
||||
* get an LDAP entry for a user with a given username
|
||||
*
|
||||
* @param string $username
|
||||
* $param array $attributes LDAP attributes to retrieve
|
||||
* @return string DN
|
||||
*/
|
||||
function ldap_get_user_dn($username){
|
||||
function ldap_get_user($username,$attributes=array()){
|
||||
$ldap = ldap_get_connection();
|
||||
$filter = Net_LDAP2_Filter::create(common_config('ldap','nickname_attribute'), 'equals', $username);
|
||||
$options = array(
|
||||
'scope' => 'sub',
|
||||
'attributes' => array()
|
||||
'attributes' => $attributes
|
||||
);
|
||||
$search = $ldap->search(null,$filter,$options);
|
||||
|
||||
@ -97,7 +99,7 @@ function ldap_get_user_dn($username){
|
||||
return false;
|
||||
}else if($search->count()==1){
|
||||
$entry = $search->shiftEntry();
|
||||
return $entry->dn();
|
||||
return $entry;
|
||||
}else{
|
||||
common_log(LOG_WARNING, 'Found ' . $search->count() . ' ldap user with the username: ' . $username);
|
||||
return false;
|
||||
|
162
scripts/console.php
Executable file
162
scripts/console.php
Executable file
@ -0,0 +1,162 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
/*
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2009, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
# Abort if called from a web server
|
||||
|
||||
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
|
||||
|
||||
$helptext = <<<ENDOFHELP
|
||||
console.php - provide an interactive PHP interpreter for testing
|
||||
|
||||
ENDOFHELP;
|
||||
|
||||
require_once INSTALLDIR.'/scripts/commandline.inc';
|
||||
|
||||
if (function_exists('posix_isatty')) {
|
||||
define('CONSOLE_INTERACTIVE', posix_isatty(0));
|
||||
} else {
|
||||
// Windows? Assume we're on a terminal. :P
|
||||
define('CONSOLE_INTERACTIVE', false);
|
||||
}
|
||||
if (CONSOLE_INTERACTIVE) {
|
||||
define('CONSOLE_READLINE', function_exists('readline'));
|
||||
}
|
||||
|
||||
if (CONSOLE_READLINE && CONSOLE_INTERACTIVE && file_exists(CONSOLE_HISTORY)) {
|
||||
define(CONSOLE_HISTORY, getenv("HOME") . "/.statusnet_console_history");
|
||||
readline_read_history(CONSOLE_HISTORY);
|
||||
}
|
||||
|
||||
function read_input_line($prompt)
|
||||
{
|
||||
if (CONSOLE_INTERACTIVE) {
|
||||
if (CONSOLE_READLINE) {
|
||||
$line = readline($prompt);
|
||||
readline_add_history($line);
|
||||
return $line;
|
||||
} else {
|
||||
return readline_emulation($prompt);
|
||||
}
|
||||
} else {
|
||||
return fgets(STDIN);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* On Unix-like systems where PHP readline extension isn't present,
|
||||
* -cough- Mac OS X -cough- we can shell out to bash to do it for us.
|
||||
* This lets us at least handle things like arrow keys, but we don't
|
||||
* get any entry history. :(
|
||||
*
|
||||
* Shamelessly ripped from when I wrote the same code for MediaWiki. :)
|
||||
* @author Brion Vibber <brion@status.net>
|
||||
*
|
||||
* @param string $prompt
|
||||
* @return mixed string on success, false on fail or EOF
|
||||
*/
|
||||
function readline_emulation($prompt)
|
||||
{
|
||||
if(file_exists(trim(shell_exec('which bash')))) {
|
||||
$encPrompt = escapeshellarg($prompt);
|
||||
$command = "read -er -p $encPrompt && echo \"\$REPLY\"";
|
||||
$encCommand = escapeshellarg($command);
|
||||
$metaCommand = "bash -c $encCommand";
|
||||
|
||||
// passthru passes our STDIN and TTY to the child...
|
||||
// We can pull the returned string via output buffering.
|
||||
ob_start();
|
||||
$retval = false;
|
||||
passthru($metaCommand, $retval);
|
||||
$line = ob_get_contents();
|
||||
ob_end_clean();
|
||||
|
||||
if ($retval == 0) {
|
||||
return $line;
|
||||
} elseif ($retval == 127) {
|
||||
// Couldn't execute bash even though we thought we saw it.
|
||||
// Shell probably spit out an error message, sorry :(
|
||||
// Fall through to fgets()...
|
||||
} else {
|
||||
// EOF/ctrl+D
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Fallback... we'll have no editing controls, EWWW
|
||||
if (feof(STDIN)) {
|
||||
return false;
|
||||
}
|
||||
print $prompt;
|
||||
return fgets(STDIN);
|
||||
}
|
||||
|
||||
function console_help()
|
||||
{
|
||||
print "Welcome to StatusNet's interactive PHP console!\n";
|
||||
print "Type some PHP code and it'll execute...\n";
|
||||
print "\n";
|
||||
print "Hint: return a value of any type to output it via var_export():\n";
|
||||
print " \$profile = new Profile();\n";
|
||||
print " \$profile->find();\n";
|
||||
print " \$profile->fetch();\n";
|
||||
print " return \$profile;\n";
|
||||
print "\n";
|
||||
print "Note that PHP is cranky and you can easily kill your session by mistyping.\n";
|
||||
print "\n";
|
||||
print "Type ctrl+D or enter 'exit' to exit.\n";
|
||||
}
|
||||
|
||||
|
||||
print "StatusNet interactive PHP console... type ctrl+D or enter 'exit' to exit.\n";
|
||||
$prompt = common_config('site', 'name') . '> ';
|
||||
while (!feof(STDIN)) {
|
||||
$line = read_input_line($prompt);
|
||||
if ($line === false) {
|
||||
print "\n";
|
||||
break;
|
||||
} elseif ($line !== '') {
|
||||
try {
|
||||
if (trim($line) == 'exit') {
|
||||
break;
|
||||
} elseif (trim($line) == 'help') {
|
||||
console_help();
|
||||
continue;
|
||||
}
|
||||
|
||||
// Let's do this!
|
||||
$result = eval($line);
|
||||
if ($result === false) {
|
||||
// parse error
|
||||
} elseif ($result === null) {
|
||||
// no return
|
||||
} else {
|
||||
// return value from eval'd code
|
||||
var_export($result);
|
||||
}
|
||||
} catch(Exception $e) {
|
||||
print get_class($e) . ": " . $e->getMessage() . "\n";
|
||||
}
|
||||
}
|
||||
print "\n";
|
||||
}
|
||||
|
||||
if (CONSOLE_READLINE && CONSOLE_INTERACTIVE) {
|
||||
@readline_write_history(CONSOLE_HISTORY);
|
||||
}
|
@ -39,19 +39,46 @@ set_time_limit(60);
|
||||
$languages = get_all_languages();
|
||||
|
||||
/* Update the languages */
|
||||
// Language code conversion for translatewiki.net (these are MediaWiki codes)
|
||||
$codeMap = array(
|
||||
'nb' => 'no',
|
||||
'pt_BR' => 'pt-br',
|
||||
'zh_CN' => 'zh-hans',
|
||||
'zh_TW' => 'zh-hant'
|
||||
);
|
||||
|
||||
$doneCodes = array();
|
||||
|
||||
foreach ($languages as $language) {
|
||||
$code = $language['lang'];
|
||||
|
||||
$code = $language['lang'];
|
||||
// Skip export of source language
|
||||
// and duplicates
|
||||
if( $code == 'en' || $code == 'no' ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Fetch updates from TranslateWiki...
|
||||
$twcode = str_replace('_', '-', strtolower($code)); // pt_BR -> pt-br
|
||||
// Do not export codes twice (happens for 'nb')
|
||||
if( in_array( $code, $doneCodes ) ) {
|
||||
continue;
|
||||
} else {
|
||||
$doneCodes[] = $code;
|
||||
}
|
||||
|
||||
// Convert code if needed
|
||||
if( isset( $codeMap[$code] ) ) {
|
||||
$twnCode = $codeMap[$code];
|
||||
} else {
|
||||
$twnCode = str_replace('_', '-', strtolower($code)); // pt_BR -> pt-br
|
||||
}
|
||||
|
||||
// Fetch updates from translatewiki.net...
|
||||
$file_url = 'http://translatewiki.net/w/i.php?' .
|
||||
http_build_query(array(
|
||||
'title' => 'Special:Translate',
|
||||
'task' => 'export-to-file',
|
||||
'group' => 'out-statusnet',
|
||||
'language' => $twcode));
|
||||
'language' => $twnCode));
|
||||
|
||||
$lcdir = INSTALLDIR . '/locale/' . $code;
|
||||
$msgdir = "$lcdir/LC_MESSAGES";
|
||||
|
@ -592,14 +592,18 @@ margin-left:0;
|
||||
font-size:1.1em;
|
||||
font-weight:bold;
|
||||
}
|
||||
.entity_profile .entity_fn dd:before {
|
||||
.entity_profile .fn:before {
|
||||
content: "(";
|
||||
font-weight:normal;
|
||||
}
|
||||
.entity_profile .entity_fn dd:after {
|
||||
.entity_profile .fn:after {
|
||||
content: ")";
|
||||
font-weight:normal;
|
||||
}
|
||||
.entity_profile .nickname:after,
|
||||
.entity_profile .nickname:before {
|
||||
content:"";
|
||||
}
|
||||
.entity_profile dt,
|
||||
.entity_profile h2 {
|
||||
display:none;
|
||||
@ -782,18 +786,22 @@ display:none;
|
||||
.profiles {
|
||||
list-style-type:none;
|
||||
}
|
||||
.profile .entity_profile .entity_location {
|
||||
.profile .entity_profile .fn.nickname,
|
||||
.profile .entity_profile .url[rel~=contact] {
|
||||
margin-left:0;
|
||||
display:inline;
|
||||
}
|
||||
|
||||
.profile .entity_profile .fn,
|
||||
.profile .entity_profile .location {
|
||||
margin-left:11px;
|
||||
margin-bottom:4px;
|
||||
width:auto;
|
||||
clear:none;
|
||||
margin-left:11px;
|
||||
}
|
||||
.profile .entity_profile dl,
|
||||
.profile .entity_profile dd {
|
||||
display:inline;
|
||||
float:none;
|
||||
}
|
||||
.profile .entity_profile .entity_note,
|
||||
.profile .entity_profile .entity_url,
|
||||
|
||||
.profile .entity_profile .note,
|
||||
.profile .entity_profile .url,
|
||||
.profile .entity_profile .entity_tags,
|
||||
.profile .entity_profile .form_subscription_edit {
|
||||
margin-left:59px;
|
||||
|
Loading…
Reference in New Issue
Block a user