diff options
114 files changed, 22667 insertions, 11980 deletions
diff --git a/actions/accessadminpanel.php b/actions/accessadminpanel.php index 4768e2faf..73354e97a 100644 --- a/actions/accessadminpanel.php +++ b/actions/accessadminpanel.php @@ -51,6 +51,7 @@ class AccessadminpanelAction extends AdminPanelAction function title() { + // TRANS: Page title return _('Access'); } @@ -62,6 +63,7 @@ class AccessadminpanelAction extends AdminPanelAction function getInstructions() { + // TRANS: Page notice return _('Site access settings'); } @@ -155,24 +157,34 @@ class AccessAdminPanelForm extends AdminForm function formData() { $this->out->elementStart('fieldset', array('id' => 'settings_admin_access')); + // TRANS: Form legend for registration form. $this->out->element('legend', null, _('Registration')); $this->out->elementStart('ul', 'form_data'); $this->li(); - $this->out->checkbox('private', _('Private'), + // TRANS: Checkbox instructions for admin setting "Private" + $instructions = _('Prohibit anonymous users (not logged in) from viewing site?'); + // TRANS: Checkbox label for prohibiting anonymous users from viewing site. + $this->out->checkbox('private', _m('LABEL', 'Private'), (bool) $this->value('private'), - _('Prohibit anonymous users (not logged in) from viewing site?')); + $instructions); $this->unli(); $this->li(); + // TRANS: Checkbox instructions for admin setting "Invite only" + $instructions = _('Make registration invitation only.'); + // TRANS: Checkbox label for configuring site as invite only. $this->out->checkbox('inviteonly', _('Invite only'), (bool) $this->value('inviteonly'), - _('Make registration invitation only.')); + $instructions); $this->unli(); $this->li(); + // TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) + $instructions = _('Disable new registrations.'); + // TRANS: Checkbox label for disabling new user registrations. $this->out->checkbox('closed', _('Closed'), (bool) $this->value('closed'), - _('Disable new registrations.')); + $instructions); $this->unli(); $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); @@ -186,7 +198,9 @@ class AccessAdminPanelForm extends AdminForm function formActions() { - $this->out->submit('submit', _('Save'), 'submit', null, _('Save access settings')); + // TRANS: Title / tooltip for button to save access settings in site admin panel + $title = _('Save access settings'); + $this->out->submit('submit', _m('BUTTON', 'Save'), 'submit', null, $title); } } diff --git a/actions/all.php b/actions/all.php index 6be0c00e3..8c22e6f5f 100644 --- a/actions/all.php +++ b/actions/all.php @@ -60,6 +60,7 @@ class AllAction extends ProfileAction } if ($this->page > 1 && $this->notice->N == 0) { + // TRANS: Server error when page not found (404) $this->serverError(_('No such page'), $code = 404); } @@ -81,8 +82,10 @@ class AllAction extends ProfileAction function title() { if ($this->page > 1) { + // TRANS: Page title. %1$s is user nickname, %2$d is page number return sprintf(_('%1$s and friends, page %2$d'), $this->user->nickname, $this->page); } else { + // TRANS: Page title. %1$s is user nickname return sprintf(_("%s and friends"), $this->user->nickname); } } @@ -96,6 +99,7 @@ class AllAction extends ProfileAction 'nickname' => $this->user->nickname) ), + // TRANS: %1$s is user nickname sprintf(_('Feed for friends of %s (RSS 1.0)'), $this->user->nickname)), new Feed(Feed::RSS2, common_local_url( @@ -104,6 +108,7 @@ class AllAction extends ProfileAction 'id' => $this->user->nickname ) ), + // TRANS: %1$s is user nickname sprintf(_('Feed for friends of %s (RSS 2.0)'), $this->user->nickname)), new Feed(Feed::ATOM, common_local_url( @@ -112,6 +117,7 @@ class AllAction extends ProfileAction 'id' => $this->user->nickname ) ), + // TRANS: %1$s is user nickname sprintf(_('Feed for friends of %s (Atom)'), $this->user->nickname)) ); } @@ -124,6 +130,7 @@ class AllAction extends ProfileAction function showEmptyListMessage() { + // TRANS: %1$s is user nickname $message = sprintf(_('This is the timeline for %s and friends but no one has posted anything yet.'), $this->user->nickname) . ' '; if (common_logged_in()) { @@ -131,6 +138,7 @@ class AllAction extends ProfileAction if ($this->user->id === $current_user->id) { $message .= _('Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself.'); } else { + // TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" $message .= sprintf(_('You can try to [nudge %1$s](../%2$s) from his profile or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname); } } else { @@ -166,8 +174,10 @@ class AllAction extends ProfileAction { $user = common_current_user(); if ($user && ($user->id == $this->user->id)) { + // TRANS: H1 text $this->element('h1', null, _("You and friends")); } else { + // TRANS: H1 text. %1$s is user nickname $this->element('h1', null, sprintf(_('%s and friends'), $this->user->nickname)); } } diff --git a/actions/apiaccountupdateprofile.php b/actions/apiaccountupdateprofile.php index fd4384a25..9b371ea95 100644 --- a/actions/apiaccountupdateprofile.php +++ b/actions/apiaccountupdateprofile.php @@ -115,11 +115,11 @@ class ApiAccountUpdateProfileAction extends ApiAuthAction $original = clone($profile); - if (empty($this->name)) { + if (!empty($this->name)) { $profile->fullname = $this->name; } - if (empty($this->url)) { + if (!empty($this->url)) { $profile->homepage = $this->url; } diff --git a/actions/apigroupshow.php b/actions/apigroupshow.php index 95d6f95af..5745a81f4 100644 --- a/actions/apigroupshow.php +++ b/actions/apigroupshow.php @@ -45,6 +45,7 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php'; * @author Evan Prodromou <evan@status.net> * @author Jeffery To <jeffery.to@gmail.com> * @author Zach Copley <zach@status.net> + * @author Michele <macno@macno.org> * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ @@ -68,6 +69,24 @@ class ApiGroupShowAction extends ApiPrivateAuthAction $this->group = $this->getTargetGroup($this->arg('id')); + if (empty($this->group)) { + $alias = Group_alias::staticGet( + 'alias', + common_canonical_nickname($this->arg('id')) + ); + if (!empty($alias)) { + $args = array('id' => $alias->group_id, 'format' => $this->format); + common_redirect(common_local_url('ApiGroupShow', $args), 301); + } else { + $this->clientError( + _('Group not found!'), + 404, + $this->format + ); + } + return; + } + return true; } @@ -85,15 +104,6 @@ class ApiGroupShowAction extends ApiPrivateAuthAction { parent::handle($args); - if (empty($this->group)) { - $this->clientError( - _('Group not found!'), - 404, - $this->format - ); - return; - } - switch($this->format) { case 'xml': $this->showSingleXmlGroup($this->group); @@ -105,7 +115,6 @@ class ApiGroupShowAction extends ApiPrivateAuthAction $this->clientError(_('API method not found.'), 404, $this->format); break; } - } /** diff --git a/actions/apioauthauthorize.php b/actions/apioauthauthorize.php index 2caa8d20b..e7c6f3761 100644 --- a/actions/apioauthauthorize.php +++ b/actions/apioauthauthorize.php @@ -156,7 +156,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction if (!$result) { common_log_db_error($appUser, 'DELETE', __FILE__); - throw new ServerException(_('DB error deleting OAuth app user.')); + throw new ServerException(_('Database error deleting OAuth application user.')); return; } } @@ -182,7 +182,7 @@ class ApiOauthAuthorizeAction extends ApiOauthAction if (!$result) { common_log_db_error($appUser, 'INSERT', __FILE__); - throw new ServerException(_('DB error inserting OAuth app user.')); + throw new ServerException(_('Database error inserting OAuth application user.')); return; } diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php index 296376d19..bff8313b5 100644 --- a/actions/apistatusnetconfig.php +++ b/actions/apistatusnetconfig.php @@ -50,13 +50,17 @@ if (!defined('STATUSNET')) { class ApiStatusnetConfigAction extends ApiAction { var $keys = array( - 'site' => array('name', 'server', 'theme', 'path', 'fancy', 'language', - 'email', 'broughtby', 'broughtbyurl', 'closed', - 'inviteonly', 'private'), - 'license' => array('url', 'title', 'image'), + 'site' => array('name', 'server', 'theme', 'path', 'logo', 'fancy', 'language', + 'email', 'broughtby', 'broughtbyurl', 'timezone', 'closed', + 'inviteonly', 'private', 'textlimit', 'ssl', 'sslserver', 'shorturllength'), + 'license' => array('type', 'owner', 'url', 'title', 'image'), 'nickname' => array('featured'), + 'profile' => array('biolimit'), + 'group' => array('desclimit'), + 'notice' => array('contentlimit'), 'throttle' => array('enabled', 'count', 'timespan'), - 'xmpp' => array('enabled', 'server', 'user') + 'xmpp' => array('enabled', 'server', 'port', 'user'), + 'integration' => array('source') ); /** diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php index 6fd74f3ff..cc8351d8d 100644 --- a/actions/confirmaddress.php +++ b/actions/confirmaddress.php @@ -141,7 +141,7 @@ class ConfirmaddressAction extends Action function title() { - return _('Confirm Address'); + return _('Confirm address'); } /** diff --git a/actions/invite.php b/actions/invite.php index d0ed64ec9..54b2de62a 100644 --- a/actions/invite.php +++ b/actions/invite.php @@ -194,7 +194,8 @@ class InviteAction extends CurrentUserDesignAction _('Optionally add a personal message to the invitation.')); $this->elementEnd('li'); $this->elementEnd('ul'); - $this->submit('send', _('Send')); + // TRANS: Send button for inviting friends + $this->submit('send', _m('BUTTON', 'Send')); $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/othersettings.php b/actions/othersettings.php index 0de7cd908..10e9873b3 100644 --- a/actions/othersettings.php +++ b/actions/othersettings.php @@ -57,7 +57,7 @@ class OthersettingsAction extends AccountSettingsAction function title() { - return _('Other Settings'); + return _('Other settings'); } /** diff --git a/actions/public.php b/actions/public.php index 50278bfce..0b3b5fde8 100644 --- a/actions/public.php +++ b/actions/public.php @@ -94,6 +94,7 @@ class PublicAction extends Action } if($this->page > 1 && $this->notice->N == 0){ + // TRANS: Server error when page not found (404) $this->serverError(_('No such page'),$code=404); } diff --git a/actions/replies.php b/actions/replies.php index 164c328db..4ff1b7a8d 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -89,6 +89,7 @@ class RepliesAction extends OwnerDesignAction NOTICES_PER_PAGE + 1); if($this->page > 1 && $this->notice->N == 0){ + // TRANS: Server error when page not found (404) $this->serverError(_('No such page'),$code=404); } diff --git a/actions/showfavorites.php b/actions/showfavorites.php index f2d082293..5b85de683 100644 --- a/actions/showfavorites.php +++ b/actions/showfavorites.php @@ -134,6 +134,7 @@ class ShowfavoritesAction extends OwnerDesignAction } if($this->page > 1 && $this->notice->N == 0){ + // TRANS: Server error when page not found (404) $this->serverError(_('No such page'),$code=404); } diff --git a/actions/tag.php b/actions/tag.php index e91df6ea9..ee9617b66 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -48,6 +48,7 @@ class TagAction extends Action $this->notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); if($this->page > 1 && $this->notice->N == 0){ + // TRANS: Server error when page not found (404) $this->serverError(_('No such page'),$code=404); } diff --git a/actions/useradminpanel.php b/actions/useradminpanel.php index 6813222f5..ee9c23076 100644 --- a/actions/useradminpanel.php +++ b/actions/useradminpanel.php @@ -55,7 +55,8 @@ class UseradminpanelAction extends AdminPanelAction function title() { - return _('User'); + // TRANS: User admin panel title + return _m('TITLE', 'User'); } /** diff --git a/actions/version.php b/actions/version.php index c1f673c45..b6593e5ed 100644 --- a/actions/version.php +++ b/actions/version.php @@ -266,5 +266,6 @@ class VersionAction extends Action 'Craig Andrews', 'mEDI', 'Brett Taylor', - 'Brigitte Schuster'); + 'Brigitte Schuster', + 'Brion Vibber'); } diff --git a/classes/File.php b/classes/File.php index 1b8ef1b3e..4ecd3b959 100644 --- a/classes/File.php +++ b/classes/File.php @@ -169,7 +169,11 @@ class File extends Memcached_DataObject { require_once 'MIME/Type/Extension.php'; $mte = new MIME_Type_Extension(); - $ext = $mte->getExtension($mimetype); + try { + $ext = $mte->getExtension($mimetype); + } catch ( Exception $e) { + $ext = strtolower(preg_replace('/\W/', '', $mimetype)); + } $nickname = $profile->nickname; $datestamp = strftime('%Y%m%dT%H%M%S', time()); $random = strtolower(common_confirmation_code(32)); diff --git a/classes/User.php b/classes/User.php index aa9fbf948..fade0f35d 100644 --- a/classes/User.php +++ b/classes/User.php @@ -206,6 +206,7 @@ class User extends Memcached_DataObject if(! User::allowed_nickname($nickname)){ common_log(LOG_WARNING, sprintf("Attempted to register a nickname that is not allowed: %s", $profile->nickname), __FILE__); + return false; } $profile->profileurl = common_profile_url($nickname); diff --git a/classes/User_group.php b/classes/User_group.php index 0460c9870..7be55163a 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -483,7 +483,7 @@ class User_group extends Memcached_DataObject $result = $group->update($orig); if (!$result) { common_log_db_error($group, 'UPDATE', __FILE__); - throw new ServerException(_('Could not set group uri.')); + throw new ServerException(_('Could not set group URI.')); } } diff --git a/config.php.sample b/config.php.sample index b8852dc67..5c5fb5b53 100644 --- a/config.php.sample +++ b/config.php.sample @@ -275,6 +275,8 @@ $config['sphinx']['port'] = 3312; // Support for file uploads (attachments), // select supported mimetypes and quotas (in bytes) // $config['attachments']['supported'] = array('image/png', 'application/ogg'); +// $config['attachments']['supported'] = true; //allow all file types to be uploaded + // $config['attachments']['file_quota'] = 5000000; // $config['attachments']['user_quota'] = 50000000; // $config['attachments']['monthly_quota'] = 15000000; @@ -37,8 +37,6 @@ define('INSTALLDIR', dirname(__FILE__)); define('STATUSNET', true); define('LACONICA', true); // compatibility -require_once INSTALLDIR . '/lib/common.php'; - $user = null; $action = null; @@ -68,52 +66,69 @@ function getPath($req) */ function handleError($error) { - if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) { - return; - } + try { - $logmsg = "PEAR error: " . $error->getMessage(); - if (common_config('site', 'logdebug')) { - $logmsg .= " : ". $error->getDebugInfo(); - } - // DB queries often end up with a lot of newlines; merge to a single line - // for easier grepability... - $logmsg = str_replace("\n", " ", $logmsg); - common_log(LOG_ERR, $logmsg); - - // @fixme backtrace output should be consistent with exception handling - if (common_config('site', 'logdebug')) { - $bt = $error->getBacktrace(); - foreach ($bt as $n => $line) { - common_log(LOG_ERR, formatBacktraceLine($n, $line)); + if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) { + return; } - } - if ($error instanceof DB_DataObject_Error - || $error instanceof DB_Error - ) { - $msg = sprintf( - _( - 'The database for %s isn\'t responding correctly, '. - 'so the site won\'t work properly. '. - 'The site admins probably know about the problem, '. - 'but you can contact them at %s to make sure. '. - 'Otherwise, wait a few minutes and try again.' - ), - common_config('site', 'name'), - common_config('site', 'email') - ); - } else { - $msg = _( - 'An important error occured, probably related to email setup. '. - 'Check logfiles for more info..' - ); - } - $dac = new DBErrorAction($msg, 500); - $dac->showPage(); + $logmsg = "PEAR error: " . $error->getMessage(); + if ($error instanceof PEAR_Exception && common_config('site', 'logdebug')) { + $logmsg .= " : ". $error->toText(); + } + // DB queries often end up with a lot of newlines; merge to a single line + // for easier grepability... + $logmsg = str_replace("\n", " ", $logmsg); + common_log(LOG_ERR, $logmsg); + + // @fixme backtrace output should be consistent with exception handling + if (common_config('site', 'logdebug')) { + $bt = $error->getTrace(); + foreach ($bt as $n => $line) { + common_log(LOG_ERR, formatBacktraceLine($n, $line)); + } + } + if ($error instanceof DB_DataObject_Error + || $error instanceof DB_Error + || ($error instanceof PEAR_Exception && $error->getCode() == -24) + ) { + //If we run into a DB error, assume we can't connect to the DB at all + //so set the current user to null, so we don't try to access the DB + //while rendering the error page. + global $_cur; + $_cur = null; + + $msg = sprintf( + _( + 'The database for %s isn\'t responding correctly, '. + 'so the site won\'t work properly. '. + 'The site admins probably know about the problem, '. + 'but you can contact them at %s to make sure. '. + 'Otherwise, wait a few minutes and try again.' + ), + common_config('site', 'name'), + common_config('site', 'email') + ); + } else { + $msg = _( + 'An important error occured, probably related to email setup. '. + 'Check logfiles for more info..' + ); + } + + $dac = new DBErrorAction($msg, 500); + $dac->showPage(); + + } catch (Exception $e) { + echo _('An error occurred.'); + } exit(-1); } +set_exception_handler('handleError'); + +require_once INSTALLDIR . '/lib/common.php'; + /** * Format a backtrace line for debug output roughly like debug_print_backtrace() does. * Exceptions already have this built in, but PEAR error objects just give us the array. @@ -238,10 +253,6 @@ function main() return; } - // For database errors - - PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError'); - // Make sure RW database is setup setupRW(); diff --git a/lib/action.php b/lib/action.php index 816086d20..10394c789 100644 --- a/lib/action.php +++ b/lib/action.php @@ -426,39 +426,69 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('ul', array('class' => 'nav')); if (Event::handle('StartPrimaryNav', array($this))) { if ($user) { + // TRANS: Tooltip for main menu option "Personal" + $tooltip = _m('TOOLTIP', 'Personal profile and friends timeline'); + // TRANS: Main menu option when logged in for access to personal profile and friends timeline $this->menuItem(common_local_url('all', array('nickname' => $user->nickname)), - _('Home'), _('Personal profile and friends timeline'), false, 'nav_home'); + _m('MENU', 'Personal'), $tooltip, false, 'nav_home'); + // TRANS: Tooltip for main menu option "Account" + $tooltip = _m('TOOLTIP', 'Change your email, avatar, password, profile'); + // TRANS: Main menu option when logged in for access to user settings $this->menuItem(common_local_url('profilesettings'), - _('Account'), _('Change your email, avatar, password, profile'), false, 'nav_account'); + _('Account'), $tooltip, false, 'nav_account'); + // TRANS: Tooltip for main menu option "Services" + $tooltip = _m('TOOLTIP', 'Connect to services'); + // TRANS: Main menu option when logged in and connection are possible for access to options to connect to other services $this->menuItem(common_local_url('oauthconnectionssettings'), - _('Connect'), _('Connect to services'), false, 'nav_connect'); + _('Connect'), $tooltip, false, 'nav_connect'); if ($user->hasRight(Right::CONFIGURESITE)) { + // TRANS: Tooltip for menu option "Admin" + $tooltip = _m('TOOLTIP', 'Change site configuration'); + // TRANS: Main menu option when logged in and site admin for access to site configuration $this->menuItem(common_local_url('siteadminpanel'), - _('Admin'), _('Change site configuration'), false, 'nav_admin'); + _m('MENU', 'Admin'), $tooltip, false, 'nav_admin'); } if (common_config('invite', 'enabled')) { + // TRANS: Tooltip for main menu option "Invite" + $tooltip = _m('TOOLTIP', 'Invite friends and colleagues to join you on %s'); + // TRANS: Main menu option when logged in and invitations are allowed for inviting new users $this->menuItem(common_local_url('invite'), - _('Invite'), - sprintf(_('Invite friends and colleagues to join you on %s'), + _m('MENU', 'Invite'), + sprintf($tooltip, common_config('site', 'name')), false, 'nav_invitecontact'); } + // TRANS: Tooltip for main menu option "Logout" + $tooltip = _m('TOOLTIP', 'Logout from the site'); + // TRANS: Main menu option when logged in to log out the current user $this->menuItem(common_local_url('logout'), - _('Logout'), _('Logout from the site'), false, 'nav_logout'); + _m('MENU', 'Logout'), $tooltip, false, 'nav_logout'); } else { if (!common_config('site', 'closed')) { + // TRANS: Tooltip for main menu option "Register" + $tooltip = _m('TOOLTIP', 'Create an account'); + // TRANS: Main menu option when not logged in to register a new account $this->menuItem(common_local_url('register'), - _('Register'), _('Create an account'), false, 'nav_register'); + _m('MENU', 'Register'), $tooltip, false, 'nav_register'); } + // TRANS: Tooltip for main menu option "Login" + $tooltip = _m('TOOLTIP', 'Login to the site'); + // TRANS: Main menu option when not logged in to log in $this->menuItem(common_local_url('login'), - _('Login'), _('Login to the site'), false, 'nav_login'); + _m('MENU', 'Login'), $tooltip, false, 'nav_login'); } + // TRANS: Tooltip for main menu option "Help" + $tooltip = _m('TOOLTIP', 'Help me!'); + // TRANS: Main menu option for help on the StatusNet site $this->menuItem(common_local_url('doc', array('title' => 'help')), - _('Help'), _('Help me!'), false, 'nav_help'); + _m('MENU', 'Help'), $tooltip, false, 'nav_help'); if ($user || !common_config('site', 'private')) { + // TRANS: Tooltip for main menu option "Search" + $tooltip = _m('TOOLTIP', 'Search for people or text'); + // TRANS: Main menu option when logged in or when the StatusNet instance is not private $this->menuItem(common_local_url('peoplesearch'), - _('Search'), _('Search for people or text'), false, 'nav_search'); + _m('MENU', 'Search'), $tooltip, false, 'nav_search'); } Event::handle('EndPrimaryNav', array($this)); } @@ -479,6 +509,7 @@ class Action extends HTMLOutputter // lawsuit if ($text) { $this->elementStart('dl', array('id' => 'site_notice', 'class' => 'system_notice')); + // TRANS: DT element for site notice. String is hidden in default CSS. $this->element('dt', null, _('Site notice')); $this->elementStart('dd', null); $this->raw($text); diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index d43ea7698..a927e2333 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -69,6 +69,7 @@ class AdminPanelAction extends Action // User must be logged in. if (!common_logged_in()) { + // TRANS: Client error message $this->clientError(_('Not logged in.')); return false; } @@ -93,6 +94,7 @@ class AdminPanelAction extends Action // User must have the right to change admin settings if (!$user->hasRight(Right::CONFIGURESITE)) { + // TRANS: Client error message $this->clientError(_('You cannot make changes to this site.')); return false; } @@ -104,6 +106,7 @@ class AdminPanelAction extends Action $name = mb_substr($name, 0, -10); if (!self::canAdmin($name)) { + // TRANS: Client error message $this->clientError(_('Changes to that panel are not allowed.'), 403); return false; } @@ -134,6 +137,7 @@ class AdminPanelAction extends Action Config::loadSettings(); $this->success = true; + // TRANS: Message after successful saving of administrative settings. $this->msg = _('Settings saved.'); } catch (Exception $e) { $this->success = false; @@ -221,6 +225,7 @@ class AdminPanelAction extends Action function showForm() { + // TRANS: Client error message $this->clientError(_('showForm() not implemented.')); return; } @@ -250,6 +255,7 @@ class AdminPanelAction extends Action function saveSettings() { + // TRANS: Client error message $this->clientError(_('saveSettings() not implemented.')); return; } @@ -273,6 +279,7 @@ class AdminPanelAction extends Action $result = $config->delete(); if (!$result) { common_log_db_error($config, 'DELETE', __FILE__); + // TRANS: Client error message $this->clientError(_("Unable to delete design setting.")); return null; } @@ -337,43 +344,67 @@ class AdminPanelNav extends Widget if (Event::handle('StartAdminPanelNav', array($this))) { if (AdminPanelAction::canAdmin('site')) { - $this->out->menuItem(common_local_url('siteadminpanel'), _('Site'), - _('Basic site configuration'), $action_name == 'siteadminpanel', 'nav_site_admin_panel'); + // TRANS: Menu item title/tooltip + $menu_title = _('Basic site configuration'); + // TRANS: Menu item for site administration + $this->out->menuItem(common_local_url('siteadminpanel'), _m('MENU', 'Site'), + $menu_title, $action_name == 'siteadminpanel', 'nav_site_admin_panel'); } if (AdminPanelAction::canAdmin('design')) { - $this->out->menuItem(common_local_url('designadminpanel'), _('Design'), - _('Design configuration'), $action_name == 'designadminpanel', 'nav_design_admin_panel'); + // TRANS: Menu item title/tooltip + $menu_title = _('Design configuration'); + // TRANS: Menu item for site administration + $this->out->menuItem(common_local_url('designadminpanel'), _m('MENU', 'Design'), + $menu_title, $action_name == 'designadminpanel', 'nav_design_admin_panel'); } if (AdminPanelAction::canAdmin('user')) { + // TRANS: Menu item title/tooltip + $menu_title = _('User configuration'); + // TRANS: Menu item for site administration $this->out->menuItem(common_local_url('useradminpanel'), _('User'), - _('User configuration'), $action_name == 'useradminpanel', 'nav_user_admin_panel'); + $menu_title, $action_name == 'useradminpanel', 'nav_user_admin_panel'); } if (AdminPanelAction::canAdmin('access')) { + // TRANS: Menu item title/tooltip + $menu_title = _('Access configuration'); + // TRANS: Menu item for site administration $this->out->menuItem(common_local_url('accessadminpanel'), _('Access'), - _('Access configuration'), $action_name == 'accessadminpanel', 'nav_access_admin_panel'); + $menu_title, $action_name == 'accessadminpanel', 'nav_access_admin_panel'); } if (AdminPanelAction::canAdmin('paths')) { + // TRANS: Menu item title/tooltip + $menu_title = _('Paths configuration'); + // TRANS: Menu item for site administration $this->out->menuItem(common_local_url('pathsadminpanel'), _('Paths'), - _('Paths configuration'), $action_name == 'pathsadminpanel', 'nav_paths_admin_panel'); + $menu_title, $action_name == 'pathsadminpanel', 'nav_paths_admin_panel'); } if (AdminPanelAction::canAdmin('sessions')) { + // TRANS: Menu item title/tooltip + $menu_title = _('Sessions configuration'); + // TRANS: Menu item for site administration $this->out->menuItem(common_local_url('sessionsadminpanel'), _('Sessions'), - _('Sessions configuration'), $action_name == 'sessionsadminpanel', 'nav_sessions_admin_panel'); + $menu_title, $action_name == 'sessionsadminpanel', 'nav_sessions_admin_panel'); } if (AdminPanelAction::canAdmin('sitenotice')) { + // TRANS: Menu item title/tooltip + $menu_title = _('Edit site notice'); + // TRANS: Menu item for site administration $this->out->menuItem(common_local_url('sitenoticeadminpanel'), _('Site notice'), - _('Edit site notice'), $action_name == 'sitenoticeadminpanel', 'nav_sitenotice_admin_panel'); + $menu_title, $action_name == 'sitenoticeadminpanel', 'nav_sitenotice_admin_panel'); } if (AdminPanelAction::canAdmin('snapshot')) { + // TRANS: Menu item title/tooltip + $menu_title = _('Snapshots configuration'); + // TRANS: Menu item for site administration $this->out->menuItem(common_local_url('snapshotadminpanel'), _('Snapshots'), - _('Snapshots configuration'), $action_name == 'snapshotadminpanel', 'nav_snapshot_admin_panel'); + $menu_title, $action_name == 'snapshotadminpanel', 'nav_snapshot_admin_panel'); } Event::handle('EndAdminPanelNav', array($this)); diff --git a/lib/authenticationplugin.php b/lib/authenticationplugin.php index de479a576..0a3763e2e 100644 --- a/lib/authenticationplugin.php +++ b/lib/authenticationplugin.php @@ -69,13 +69,17 @@ abstract class AuthenticationPlugin extends Plugin /** * Automatically register a user when they attempt to login with valid credentials. * User::register($data) is a very useful method for this implementation - * @param username + * @param username username (that is used to login and find the user in the authentication provider) of the user to be registered + * @param nickname nickname of the user in the SN system. If nickname is null, then set nickname = username * @return mixed instance of User, or false (if user couldn't be created) */ - function autoRegister($username) + function autoRegister($username, $nickname = null) { + if(is_null($nickname)){ + $nickname = $username; + } $registration_data = array(); - $registration_data['nickname'] = $username ; + $registration_data['nickname'] = $nickname; return User::register($registration_data); } @@ -92,6 +96,21 @@ abstract class AuthenticationPlugin extends Plugin return false; } + /** + * Given a username, suggest what the nickname should be + * Used during autoregistration + * Useful if your usernames are ugly, and you want to suggest + * nice looking nicknames when users initially sign on + * All nicknames returned by this function should be valid + * implementations may want to use common_nicknamize() to ensure validity + * @param username + * @return string nickname + */ + function suggestNicknameForUsername($username) + { + return common_nicknamize($username); + } + //------------Below are the methods that connect StatusNet to the implementing Auth plugin------------\\ function onInitializePlugin(){ if(!isset($this->provider_name)){ @@ -108,10 +127,22 @@ abstract class AuthenticationPlugin extends Plugin function onAutoRegister($nickname, $provider_name, &$user) { if($provider_name == $this->provider_name && $this->autoregistration){ - $user = $this->autoregister($nickname); - if($user){ - User_username::register($user,$nickname,$this->provider_name); - return false; + $suggested_nickname = $this->suggestNicknameForUsername($nickname); + $test_user = User::staticGet('nickname', $suggested_nickname); + if($test_user) { + //someone already exists with the suggested nickname, so used the passed nickname + $suggested_nickname = common_nicknamize($nickname); + } + $test_user = User::staticGet('nickname', $suggested_nickname); + if($test_user) { + //someone already exists with the suggested nickname + //not much else we can do + }else{ + $user = $this->autoRegister($nickname, $suggested_nickname); + if($user){ + User_username::register($user,$nickname,$this->provider_name); + return false; + } } } } @@ -122,23 +153,30 @@ abstract class AuthenticationPlugin extends Plugin $user_username->username=$nickname; $user_username->provider_name=$this->provider_name; if($user_username->find() && $user_username->fetch()){ - $username = $user_username->username; - $authenticated = $this->checkPassword($username, $password); + $authenticated = $this->checkPassword($user_username->username, $password); if($authenticated){ $authenticatedUser = User::staticGet('id', $user_username->user_id); return false; } }else{ - $user = User::staticGet('nickname', $nickname); + //$nickname is the username used to login + //$suggested_nickname is the nickname the auth provider suggests for that username + $suggested_nickname = $this->suggestNicknameForUsername($nickname); + $user = User::staticGet('nickname', $suggested_nickname); if($user){ - //make sure a different provider isn't handling this nickname + //make sure this user isn't claimed $user_username = new User_username(); - $user_username->username=$nickname; - if(!$user_username->find()){ - //no other provider claims this username, so it's safe for us to handle it + $user_username->user_id=$user->id; + $we_can_handle = false; + if($user_username->find()){ + //either this provider, or another one, has already claimed this user + //so we cannot. Let another plugin try. + return; + }else{ + //no other provider claims this user, so it's safe for us to handle it $authenticated = $this->checkPassword($nickname, $password); if($authenticated){ - $authenticatedUser = User::staticGet('nickname', $nickname); + $authenticatedUser = $user; User_username::register($authenticatedUser,$nickname,$this->provider_name); return false; } diff --git a/lib/authorizationplugin.php b/lib/authorizationplugin.php index 733b0c065..07da9b2d1 100644 --- a/lib/authorizationplugin.php +++ b/lib/authorizationplugin.php @@ -85,7 +85,7 @@ abstract class AuthorizationPlugin extends Plugin } function onStartSetApiUser(&$user) { - return $this->onStartSetUser(&$user); + return $this->onStartSetUser($user); } function onStartHasRole($profile, $name, &$has_role) { diff --git a/lib/command.php b/lib/command.php index ea7b60372..db8e80030 100644 --- a/lib/command.php +++ b/lib/command.php @@ -668,6 +668,34 @@ class LoginCommand extends Command } } +class LoseCommand extends Command +{ + + var $other = null; + + function __construct($user, $other) + { + parent::__construct($user); + $this->other = $other; + } + + function execute($channel) + { + if(!$this->other) { + $channel->error($this->user, _('Specify the name of the user to unsubscribe from')); + return; + } + + $result=subs_unsubscribe_from($this->user, $this->other); + + if ($result) { + $channel->output($this->user, sprintf(_('Unsubscribed %s'), $this->other)); + } else { + $channel->error($this->user, $result); + } + } +} + class SubscriptionsCommand extends Command { function execute($channel) @@ -750,6 +778,7 @@ class HelpCommand extends Command "d <nickname> <text> - direct message to user\n". "get <nickname> - get last notice from user\n". "whois <nickname> - get profile info on user\n". + "lose <nickname> - force user to stop following you\n". "fav <nickname> - add user's last notice as a 'fave'\n". "fav #<notice_id> - add notice with the given id as a 'fave'\n". "repeat #<notice_id> - repeat a notice with a given id\n". diff --git a/lib/commandinterpreter.php b/lib/commandinterpreter.php index c2add7299..fbc6174bb 100644 --- a/lib/commandinterpreter.php +++ b/lib/commandinterpreter.php @@ -47,6 +47,17 @@ class CommandInterpreter } else { return new LoginCommand($user); } + case 'lose': + if ($arg) { + list($other, $extra) = $this->split_arg($arg); + if ($extra) { + return null; + } else { + return new LoseCommand($user, $other); + } + } else { + return null; + } case 'subscribers': if ($arg) { return null; diff --git a/lib/common.php b/lib/common.php index 5d53270e3..047dc5a7b 100644 --- a/lib/common.php +++ b/lib/common.php @@ -71,6 +71,7 @@ if (!function_exists('dl')) { # global configuration object require_once('PEAR.php'); +require_once('PEAR/Exception.php'); require_once('DB/DataObject.php'); require_once('DB/DataObject/Cast.php'); # for dates @@ -128,6 +129,17 @@ require_once INSTALLDIR.'/lib/activity.php'; require_once INSTALLDIR.'/lib/clientexception.php'; require_once INSTALLDIR.'/lib/serverexception.php'; + +//set PEAR error handling to use regular PHP exceptions +function PEAR_ErrorToPEAR_Exception($err) +{ + if ($err->getCode()) { + throw new PEAR_Exception($err->getMessage(), $err->getCode()); + } + throw new PEAR_Exception($err->getMessage()); +} +PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'PEAR_ErrorToPEAR_Exception'); + try { StatusNet::init(@$server, @$path, @$conffile); } catch (NoConfigException $e) { diff --git a/lib/default.php b/lib/default.php index bdd78d4d8..f22d8b24a 100644 --- a/lib/default.php +++ b/lib/default.php @@ -282,6 +282,7 @@ $default = 'Mapstraction' => null, 'OStatus' => null, 'WikiHashtags' => null, + 'RSSCloud' => null, 'OpenID' => null), ), 'admin' => diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 7315fe2ad..7786b5941 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -356,40 +356,47 @@ class HTMLOutputter extends XMLOutputter if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) { - $path = common_config('javascript', 'path'); + if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) { - if (empty($path)) { - $path = common_config('site', 'path') . '/js/'; - } + $src = common_path($src) . '?version=' . STATUSNET_VERSION; - if ($path[strlen($path)-1] != '/') { - $path .= '/'; - } + }else{ - if ($path[0] != '/') { - $path = '/'.$path; - } + $path = common_config('javascript', 'path'); - $server = common_config('javascript', 'server'); + if (empty($path)) { + $path = common_config('site', 'path') . '/js/'; + } - if (empty($server)) { - $server = common_config('site', 'server'); - } + if ($path[strlen($path)-1] != '/') { + $path .= '/'; + } - $ssl = common_config('javascript', 'ssl'); + if ($path[0] != '/') { + $path = '/'.$path; + } + + $server = common_config('javascript', 'server'); - if (is_null($ssl)) { // null -> guess - if (common_config('site', 'ssl') == 'always' && - !common_config('javascript', 'server')) { - $ssl = true; - } else { - $ssl = false; + if (empty($server)) { + $server = common_config('site', 'server'); } - } - $protocol = ($ssl) ? 'https' : 'http'; + $ssl = common_config('javascript', 'ssl'); - $src = $protocol.'://'.$server.$path.$src . '?version=' . STATUSNET_VERSION; + if (is_null($ssl)) { // null -> guess + if (common_config('site', 'ssl') == 'always' && + !common_config('javascript', 'server')) { + $ssl = true; + } else { + $ssl = false; + } + } + + $protocol = ($ssl) ? 'https' : 'http'; + + $src = $protocol.'://'.$server.$path.$src . '?version=' . STATUSNET_VERSION; + } } $this->element('script', array('type' => $type, diff --git a/lib/imagefile.php b/lib/imagefile.php index 6bc8e599b..7b0479455 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -99,6 +99,10 @@ class ImageFile if ($info[2] !== IMAGETYPE_GIF && $info[2] !== IMAGETYPE_JPEG && + $info[2] !== IMAGETYPE_BMP && + $info[2] !== IMAGETYPE_WBMP && + $info[2] !== IMAGETYPE_XBM && + $info[2] !== IMAGETYPE_XPM && $info[2] !== IMAGETYPE_PNG) { @unlink($_FILES[$param]['tmp_name']); @@ -146,6 +150,18 @@ class ImageFile case IMAGETYPE_PNG: $image_src = imagecreatefrompng($this->filepath); break; + case IMAGETYPE_BMP: + $image_src = imagecreatefrombmp($this->filepath); + break; + case IMAGETYPE_WBMP: + $image_src = imagecreatefromwbmp($this->filepath); + break; + case IMAGETYPE_XBM: + $image_src = imagecreatefromxbm($this->filepath); + break; + case IMAGETYPE_XPM: + $image_src = imagecreatefromxpm($this->filepath); + break; default: throw new Exception(_('Unknown file type')); return; @@ -153,7 +169,7 @@ class ImageFile $image_dest = imagecreatetruecolor($size, $size); - if ($this->type == IMAGETYPE_GIF || $this->type == IMAGETYPE_PNG) { + if ($this->type == IMAGETYPE_GIF || $this->type == IMAGETYPE_PNG || $this->type == IMAGETYPE_BMP) { $transparent_idx = imagecolortransparent($image_src); @@ -176,6 +192,24 @@ class ImageFile imagecopyresampled($image_dest, $image_src, 0, 0, $x, $y, $size, $size, $w, $h); + if($this->type == IMAGETYPE_BMP) { + //we don't want to save BMP... it's an inefficient, rare, antiquated format + //save png instead + $this->type = IMAGETYPE_PNG; + } else if($this->type == IMAGETYPE_WBMP) { + //we don't want to save WBMP... it's a rare format that we can't guarantee clients will support + //save png instead + $this->type = IMAGETYPE_PNG; + } else if($this->type == IMAGETYPE_XBM) { + //we don't want to save XBM... it's a rare format that we can't guarantee clients will support + //save png instead + $this->type = IMAGETYPE_PNG; + } else if($this->type == IMAGETYPE_XPM) { + //we don't want to save XPM... it's a rare format that we can't guarantee clients will support + //save png instead + $this->type = IMAGETYPE_PNG; + } + $outname = Avatar::filename($this->id, image_type_to_extension($this->type), $size, @@ -245,4 +279,101 @@ class ImageFile return $num; } -}
\ No newline at end of file +} + +//PHP doesn't (as of 2/24/2010) have an imagecreatefrombmp so conditionally define one +if(!function_exists('imagecreatefrombmp')){ + //taken shamelessly from http://www.php.net/manual/en/function.imagecreatefromwbmp.php#86214 + function imagecreatefrombmp($p_sFile) + { + // Load the image into a string + $file = fopen($p_sFile,"rb"); + $read = fread($file,10); + while(!feof($file)&&($read<>"")) + $read .= fread($file,1024); + + $temp = unpack("H*",$read); + $hex = $temp[1]; + $header = substr($hex,0,108); + + // Process the header + // Structure: http://www.fastgraph.com/help/bmp_header_format.html + if (substr($header,0,4)=="424d") + { + // Cut it in parts of 2 bytes + $header_parts = str_split($header,2); + + // Get the width 4 bytes + $width = hexdec($header_parts[19].$header_parts[18]); + + // Get the height 4 bytes + $height = hexdec($header_parts[23].$header_parts[22]); + + // Unset the header params + unset($header_parts); + } + + // Define starting X and Y + $x = 0; + $y = 1; + + // Create newimage + $image = imagecreatetruecolor($width,$height); + + // Grab the body from the image + $body = substr($hex,108); + + // Calculate if padding at the end-line is needed + // Divided by two to keep overview. + // 1 byte = 2 HEX-chars + $body_size = (strlen($body)/2); + $header_size = ($width*$height); + + // Use end-line padding? Only when needed + $usePadding = ($body_size>($header_size*3)+4); + + // Using a for-loop with index-calculation instaid of str_split to avoid large memory consumption + // Calculate the next DWORD-position in the body + for ($i=0;$i<$body_size;$i+=3) + { + // Calculate line-ending and padding + if ($x>=$width) + { + // If padding needed, ignore image-padding + // Shift i to the ending of the current 32-bit-block + if ($usePadding) + $i += $width%4; + + // Reset horizontal position + $x = 0; + + // Raise the height-position (bottom-up) + $y++; + + // Reached the image-height? Break the for-loop + if ($y>$height) + break; + } + + // Calculation of the RGB-pixel (defined as BGR in image-data) + // Define $i_pos as absolute position in the body + $i_pos = $i*2; + $r = hexdec($body[$i_pos+4].$body[$i_pos+5]); + $g = hexdec($body[$i_pos+2].$body[$i_pos+3]); + $b = hexdec($body[$i_pos].$body[$i_pos+1]); + + // Calculate and draw the pixel + $color = imagecolorallocate($image,$r,$g,$b); + imagesetpixel($image,$x,$height-$y,$color); + + // Raise the horizontal position + $x++; + } + + // Unset the body / free the memory + unset($body); + + // Return image-object + return $image; + } +} diff --git a/lib/iomaster.php b/lib/iomaster.php index d20837ba5..7cfb2c9a0 100644 --- a/lib/iomaster.php +++ b/lib/iomaster.php @@ -330,7 +330,7 @@ abstract class IoMaster * for per-queue and per-site records. * * @param string $key counter name - * @param array $owners list of owner keys like 'queue:jabber' or 'site:stat01' + * @param array $owners list of owner keys like 'queue:xmpp' or 'site:stat01' */ public function stats($key, $owners=array()) { diff --git a/lib/language.php b/lib/language.php index f5ee7fac5..64b59e739 100644 --- a/lib/language.php +++ b/lib/language.php @@ -289,6 +289,7 @@ function get_all_languages() { 'ar' => array('q' => 0.8, 'lang' => 'ar', 'name' => 'Arabic', 'direction' => 'rtl'), 'arz' => array('q' => 0.8, 'lang' => 'arz', 'name' => 'Egyptian Spoken Arabic', 'direction' => 'rtl'), 'bg' => array('q' => 0.8, 'lang' => 'bg', 'name' => 'Bulgarian', 'direction' => 'ltr'), + 'br' => array('q' => 0.8, 'lang' => 'br', 'name' => 'Breton', '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'), diff --git a/lib/mediafile.php b/lib/mediafile.php index e3d5b1dbc..10d90d008 100644 --- a/lib/mediafile.php +++ b/lib/mediafile.php @@ -262,7 +262,7 @@ class MediaFile $filetype = MIME_Type::autoDetect($stream['uri']); } - if (in_array($filetype, common_config('attachments', 'supported'))) { + if (common_config('attachments', 'supported') === true || in_array($filetype, common_config('attachments', 'supported'))) { return $filetype; } $media = MIME_Type::getMedia($filetype); diff --git a/lib/messageform.php b/lib/messageform.php index 0c568e1bd..b116964da 100644 --- a/lib/messageform.php +++ b/lib/messageform.php @@ -175,6 +175,6 @@ class MessageForm extends Form 'class' => 'submit', 'name' => 'message_send', 'type' => 'submit', - 'value' => _('Send'))); + 'value' => _m('Send button for sending notice', 'Send'))); } } diff --git a/lib/noticeform.php b/lib/noticeform.php index 62df5c941..7278c41a9 100644 --- a/lib/noticeform.php +++ b/lib/noticeform.php @@ -233,6 +233,6 @@ class NoticeForm extends Form 'class' => 'submit', 'name' => 'status_submit', 'type' => 'submit', - 'value' => _('Send'))); + 'value' => _m('Send button for sending notice', 'Send'))); } } diff --git a/lib/queuemanager.php b/lib/queuemanager.php index 9fdc80110..87bd356aa 100644 --- a/lib/queuemanager.php +++ b/lib/queuemanager.php @@ -213,7 +213,9 @@ abstract class QueueManager extends IoManager { if (isset($this->handlers[$queue])) { $class = $this->handlers[$queue]; - if (class_exists($class)) { + if(is_object($class)) { + return $class; + } else if (class_exists($class)) { return new $class(); } else { $this->_log(LOG_ERR, "Nonexistent handler class '$class' for queue '$queue'"); @@ -286,7 +288,7 @@ abstract class QueueManager extends IoManager * Only registered transports will be reliably picked up! * * @param string $transport - * @param string $class + * @param string $class class name or object instance * @param string $group */ public function connect($transport, $class, $group='main') diff --git a/lib/subs.php b/lib/subs.php index 1c240c475..e2ce0667e 100644 --- a/lib/subs.php +++ b/lib/subs.php @@ -42,4 +42,47 @@ function subs_unsubscribe_to($user, $other) } catch (Exception $e) { return $e->getMessage(); } -}
\ No newline at end of file +} + +function subs_unsubscribe_from($user, $other){ + $local = User::staticGet("nickname",$other); + if($local){ + return subs_unsubscribe_to($local,$user); + } else { + try { + $remote = Profile::staticGet("nickname",$other); + if(is_string($remote)){ + return $remote; + } + if (Event::handle('StartUnsubscribe', array($remote,$user))) { + + $sub = DB_DataObject::factory('subscription'); + + $sub->subscriber = $remote->id; + $sub->subscribed = $user->id; + + $sub->find(true); + + // note we checked for existence above + + if (!$sub->delete()) + return _('Couldn\'t delete subscription.'); + + $cache = common_memcache(); + + if ($cache) { + $cache->delete(common_cache_key('user:notices_with_friends:' . $remote->id)); + } + + + $user->blowSubscribersCount(); + $remote->blowSubscribersCount(); + + Event::handle('EndUnsubscribe', array($remote, $user)); + } + } catch (Exception $e) { + return $e->getMessage(); + } + } +} + diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 578f0d250..3e2f7c7b4 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:06+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:55:52+0000\n" "Language-Team: Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: out-statusnet\n" @@ -22,7 +22,8 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Ù†Ùاذ" @@ -43,7 +44,6 @@ msgstr "أأمنع المستخدمين المجهولين (غير الوالج٠#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "خاص" @@ -74,10 +74,9 @@ msgid "Save access settings" msgstr "ØÙظ إعدادت الوصول" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" -msgstr "أرسل" +msgstr "اØÙظ" #. TRANS: Server error when page not found (404) #: actions/all.php:64 actions/public.php:98 actions/replies.php:93 @@ -119,7 +118,7 @@ msgstr "%1$s والأصدقاء, الصÙØØ© %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -174,7 +173,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "أنت والأصدقاء" @@ -201,11 +200,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "لم يتم العثور على وسيلة API." @@ -304,7 +303,7 @@ msgstr "رسالة مباشرة %s" #: actions/apidirectmessage.php:105 #, php-format msgid "All the direct messages sent to %s" -msgstr "" +msgstr "كل الرسائل المباشرة التي أرسلت إلى %s" #: actions/apidirectmessagenew.php:126 msgid "No message text!" @@ -560,7 +559,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "الØساب" @@ -647,18 +646,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "مسار %s الزمني" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -669,12 +656,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمني العام" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -917,19 +904,17 @@ msgid "Conversation" msgstr "Ù…Øادثة" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" #: actions/deleteapplication.php:63 -#, fuzzy msgid "You must be logged in to delete an application." -msgstr "يجب أن تكون مسجل الدخول لتعدل تطبيقا." +msgstr "يجب أن تسجل الدخول لتØذ٠تطبيقا." #: actions/deleteapplication.php:71 -#, fuzzy msgid "Application not found." -msgstr "لم يوجد رمز التأكيد." +msgstr "لم يوجد التطبيق." #: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/showapplication.php:94 @@ -938,7 +923,7 @@ msgstr "أنت لست مالك هذا التطبيق." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1125,8 +1110,9 @@ msgstr "ارجع إلى المبدئي" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1242,7 +1228,7 @@ msgstr "" msgid "Could not update group." msgstr "تعذر تØديث المجموعة." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1362,7 +1348,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالØ." @@ -1473,7 +1459,7 @@ msgstr "إشعارات %s المÙÙضلة" #: actions/favoritesrss.php:115 #, php-format msgid "Updates favored by %1$s on %2$s!" -msgstr "" +msgstr "الإشعارات التي Ùضلها %1$s ÙÙŠ %2$s!" #: actions/featured.php:69 lib/featureduserssection.php:87 #: lib/publicgroupnav.php:89 @@ -1546,6 +1532,25 @@ msgstr "لا مل٠كهذا." msgid "Cannot read file." msgstr "تعذّرت قراءة الملÙ." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Øجم غير صالØ." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "المستخدم مسكت من قبل." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1624,7 +1629,7 @@ msgstr "تعذّر تØديث تصميمك." #: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 msgid "Design preferences saved." -msgstr "" +msgstr "ØÙÙظت تÙضيلات التصميم." #: actions/grouplogo.php:142 actions/grouplogo.php:195 msgid "Group logo" @@ -1676,7 +1681,7 @@ msgstr "امنع" #: actions/groupmembers.php:450 msgid "Make user an admin of the group" -msgstr "" +msgstr "اجعل المستخدم إداريًا ÙÙŠ المجموعة" #: actions/groupmembers.php:482 msgid "Make Admin" @@ -1686,12 +1691,18 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "مسار %s الزمني" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "مجموعات" @@ -1924,7 +1935,6 @@ msgstr "" #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "أرسل" @@ -2246,8 +2256,8 @@ msgstr "نوع المØتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "ليس نسق بيانات مدعوم." @@ -2386,7 +2396,8 @@ msgstr "تعذّر ØÙظ كلمة السر الجديدة." msgid "Password saved." msgstr "ØÙÙظت كلمة السر." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "المسارات" @@ -2506,7 +2517,7 @@ msgstr "دليل الخلÙيات" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "مطلقا" @@ -2557,13 +2568,13 @@ msgstr "ليس وسم أشخاص صالØ: %s" #: actions/peopletag.php:144 #, php-format msgid "Users self-tagged with %1$s - page %2$d" -msgstr "" +msgstr "المستخدمون الذين وسموا أنÙسهم ب%1$s - الصÙØØ© %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ù…Øتوى إشعار غير صالØ" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2640,7 +2651,7 @@ msgid "" msgstr "" "سÙÙ… Ù†Ùسك (Øرو٠وأرقام Ùˆ \"-\" Ùˆ \".\" Ùˆ \"_\")ØŒ اÙصلها بÙاصلة (',') أو مساÙØ©." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "اللغة" @@ -2666,7 +2677,7 @@ msgstr "اشترك تلقائيًا بأي شخص يشترك بي (ÙŠÙضل أن msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "لم تÙختر المنطقة الزمنية." @@ -2970,7 +2981,7 @@ msgid "Same as password above. Required." msgstr "Ù†Ùس كلمة السر أعلاه. مطلوب." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "البريد الإلكتروني" @@ -3054,7 +3065,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "اشترك" @@ -3150,6 +3161,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "المستخدم بدون مل٠مطابق." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "ستاتس نت" @@ -3162,7 +3183,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "الجلسات" @@ -3187,7 +3210,7 @@ msgstr "ØªÙ†Ù‚ÙŠØ Ø§Ù„Ø¬Ù„Ø³Ø©" msgid "Turn on debugging output for sessions." msgstr "مكّن ØªÙ†Ù‚ÙŠØ Ù…Ùخرجات الجلسة." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذ٠إعدادت الموقع" @@ -3218,8 +3241,8 @@ msgstr "المنظمة" msgid "Description" msgstr "الوصÙ" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Ø¥Øصاءات" @@ -3356,45 +3379,45 @@ msgstr "الكنى" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3404,7 +3427,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3413,7 +3436,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "الإداريون" @@ -3523,146 +3546,137 @@ msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "الإعدادات الأساسية لموقع StatusNet هذا." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صÙرًا." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "يجب أن تملك عنوان بريد إلكتروني صØÙŠØ." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "لغة غير معروÙØ© \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Øد النص الأدنى هو 140 ØرÙًا." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "عام" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "اسم الموقع" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "عنوان البريد الإلكتروني للاتصال بموقعك" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Ù…Øلي" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "المنطقة الزمنية المبدئية" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "المنطقة الزمنية المبدئية للموقع؛ ت‌ع‌م عادة." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "لغة الموقع المبدئية" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "ÙÙŠ مهمة Ù…Ùجدولة" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "التكرار" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "بلّغ عن المسار" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "الØدود" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Øد النص" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "أقصى عدد للØرو٠ÙÙŠ الإشعارات." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "رسالة جديدة" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "مشكلة أثناء ØÙظ الإشعار." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "إشعار الموقع" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "إعدادات الرسائل القصيرة" @@ -3755,6 +3769,66 @@ msgstr "" msgid "No code entered" msgstr "لم تدخل رمزًا" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "غيّر ضبط الموقع" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "ÙÙŠ مهمة Ù…Ùجدولة" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "التكرار" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "بلّغ عن المسار" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "اذ٠إعدادت الموقع" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -3948,7 +4022,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -3956,7 +4030,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "المستخدم" @@ -4139,16 +4212,22 @@ msgstr "%1$s أعضاء المجموعة, الصÙØØ© %2$d" msgid "Search for more groups" msgstr "ابØØ« عن المزيد من المجموعات" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s ليس عضوًا ÙÙŠ أي مجموعة." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4194,7 +4273,7 @@ msgstr "" msgid "Plugins" msgstr "الملØقات" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "النسخة" @@ -4257,39 +4336,39 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "مشكلة ÙÙŠ ØÙظ الإشعار. طويل جدًا." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "مشكلة ÙÙŠ ØÙظ الإشعار. مستخدم غير معروÙ." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "مشكلة أثناء ØÙظ الإشعار." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكلة أثناء ØÙظ الإشعار." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تي @%1$s %2$s" @@ -4314,7 +4393,12 @@ msgstr "غير مشترك!" msgid "Couldn't delete self-subscription." msgstr "لم يمكن Øذ٠اشتراك ذاتي." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "تعذّر Øذ٠الاشتراك." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "تعذّر Øذ٠الاشتراك." @@ -4323,20 +4407,20 @@ msgstr "تعذّر Øذ٠الاشتراك." msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم ÙÙŠ %1$s يا @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعة." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "تعذّر ضبط عضوية المجموعة." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "تعذّر ضبط عضوية المجموعة." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "تعذّر ØÙظ الاشتراك." @@ -4378,194 +4462,176 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "صÙØØ© غير Ù…Ùعنونة" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "المل٠الشخصي ومسار الأصدقاء الزمني" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" -msgstr "شخصية" +msgstr "الصÙØØ© الشخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير كلمة سرّك" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "الØساب" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "اتصالات" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "استخدم هذا النموذج لدعوة أصدقائك وزملائك لاستخدام هذه الخدمة." +msgstr "ادع٠أصدقائك وزملائك للانضمام إليك ÙÙŠ %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "ادعÙ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ Øسابًا" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ù„Ùج إلى الموقع" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Ù„Ùج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" -msgstr "ابØØ« عن أشخاص أو نص" +msgstr "ابØØ« عن أشخاص أو نصوص" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "ابØØ«" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "المشاهدات المØلية" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "إشعار الصÙØØ©" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "مساعدة" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "عن" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "الأسئلة المكررة" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "الشروط" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "المصدر" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "اتصل" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "الجسر" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "رخصة برنامج StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4574,12 +4640,12 @@ msgstr "" "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4590,53 +4656,53 @@ msgstr "" "المتوÙر تØت [رخصة غنو Ø£Ùيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "رخصة Ù…Øتوى الموقع" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "الرخصة." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "بعد" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "قبل" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4651,92 +4717,78 @@ msgid "Changes to that panel are not allowed." msgstr "التغييرات لهذه اللوØØ© غير Ù…Ø³Ù…ÙˆØ Ø¨Ù‡Ø§." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "تعذّر Øذ٠إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 -#, fuzzy +#: lib/adminpanelaction.php:364 msgid "User configuration" -msgstr "ضبط المسارات" +msgstr "ضبط المستخدم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "ضبط الØساب" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Ù†Ùاذ" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "المسارات" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "ضبط الجلسات" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "الجلسات" +msgid "Edit site notice" +msgstr "إشعار الموقع" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ضبط المسارات" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5233,6 +5285,11 @@ msgstr "" msgid "Go" msgstr "اذهب" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5362,11 +5419,11 @@ msgstr "غادر" #: lib/logingroupnav.php:80 msgid "Login with a username and password" -msgstr "" +msgstr "Ù„Ùج باسم مستخدم وكلمة سر" #: lib/logingroupnav.php:86 msgid "Sign up for a new account" -msgstr "" +msgstr "سجّل Øسابًا جديدًا" #: lib/mail.php:172 msgid "Email address confirmation" @@ -5427,7 +5484,7 @@ msgstr "السيرة: %s" #: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" -msgstr "" +msgstr "عنوان بريد إلكتروني جديد للإرسال إلى %s" #: lib/mail.php:289 #, php-format @@ -5449,12 +5506,12 @@ msgstr "Øالة %s" #: lib/mail.php:439 msgid "SMS confirmation" -msgstr "" +msgstr "تأكيد الرسالة القصيرة" #: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" -msgstr "" +msgstr "لقد نبهك %s" #: lib/mail.php:467 #, php-format @@ -5499,7 +5556,7 @@ msgstr "" #: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" -msgstr "" +msgstr "لقد أضا٠%s (@%s) إشعارك إلى Ù…Ùضلاته" #: lib/mail.php:561 #, php-format @@ -5525,7 +5582,7 @@ msgstr "" #: lib/mail.php:624 #, php-format msgid "%s (@%s) sent a notice to your attention" -msgstr "" +msgstr "لقد أرسل %s (@%s) إشعارًا إليك" #: lib/mail.php:626 #, php-format @@ -5642,7 +5699,6 @@ msgid "Available characters" msgstr "المØار٠المتوÙرة" #: lib/messageform.php:178 lib/noticeform.php:236 -#, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "أرسل" @@ -5767,10 +5823,6 @@ msgstr "الردود" msgid "Favorites" msgstr "المÙضلات" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "المستخدم" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" @@ -5796,7 +5848,7 @@ msgstr "وسوم ÙÙŠ إشعارات %s" msgid "Unknown" msgstr "غير معروÙØ©" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "الاشتراكات" @@ -5804,23 +5856,23 @@ msgstr "الاشتراكات" msgid "All subscriptions" msgstr "جميع الاشتراكات" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "المشتركون" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "جميع المشتركين" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "هوية المستخدم" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "عضو منذ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "كل المجموعات" @@ -5860,7 +5912,12 @@ msgstr "أأكرّر هذا الإشعار؟ّ" msgid "Repeat this notice" msgstr "كرّر هذا الإشعار" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "امنع هذا المستخدم من هذه المجموعة" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6014,47 +6071,63 @@ msgstr "رسالة" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "مل٠المستخدم الشخصي" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "الإداريون" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "قبل Ù„Øظات قليلة" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "قبل دقيقة تقريبًا" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "قبل ساعة تقريبًا" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "قبل سنة تقريبًا" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 3ce1fbc4e..dd00dbf7d 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:09+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:55:56+0000\n" "Language-Team: Egyptian Spoken Arabic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: out-statusnet\n" @@ -23,7 +23,8 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Ù†Ùاذ" @@ -123,7 +124,7 @@ msgstr "%1$s Ùˆ الصØاب, صÙØÙ‡ %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "أنت والأصدقاء" @@ -205,11 +206,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "الـ API method مش موجوده." @@ -564,7 +565,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "الØساب" @@ -651,18 +652,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "مسار %s الزمني" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -673,12 +662,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "مسار %s الزمنى العام" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -921,7 +910,7 @@ msgid "Conversation" msgstr "Ù…Øادثة" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "الإشعارات" @@ -942,7 +931,7 @@ msgstr "انت مش بتملك الapplication دى." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1132,8 +1121,9 @@ msgstr "ارجع إلى المبدئي" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1250,7 +1240,7 @@ msgstr "" msgid "Could not update group." msgstr "تعذر تØديث المجموعه." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "تعذّر إنشاء الكنى." @@ -1370,7 +1360,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ليس عنوان بريد صالØ." @@ -1554,6 +1544,25 @@ msgstr "لا مل٠كهذا." msgid "Cannot read file." msgstr "تعذّرت قراءه الملÙ." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Øجم غير صالØ." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "المستخدم مسكت من قبل." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1694,12 +1703,18 @@ msgstr "" msgid "Make this user an admin" msgstr "اجعل هذا المستخدم إداريًا" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "مسار %s الزمني" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "مجموعات" @@ -2252,8 +2267,8 @@ msgstr "نوع المØتوى " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr " مش نظام بيانات مدعوم." @@ -2392,7 +2407,8 @@ msgstr "تعذّر ØÙظ كلمه السر الجديده." msgid "Password saved." msgstr "ØÙÙظت كلمه السر." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "المسارات" @@ -2512,7 +2528,7 @@ msgstr "دليل الخلÙيات" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "مطلقا" @@ -2565,11 +2581,11 @@ msgstr "ليس وسم أشخاص صالØ: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ù…Øتوى إشعار غير صالØ" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2645,7 +2661,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "اللغة" @@ -2671,7 +2687,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "لم تÙختر المنطقه الزمنيه." @@ -2975,7 +2991,7 @@ msgid "Same as password above. Required." msgstr "Ù†Ùس كلمه السر أعلاه. مطلوب." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "البريد الإلكتروني" @@ -3059,7 +3075,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "اشترك" @@ -3155,6 +3171,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "يوزر من-غير پروÙايل زيّه." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3167,7 +3193,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "الجلسات" @@ -3192,7 +3220,7 @@ msgstr "ØªÙ†Ù‚ÙŠØ Ø§Ù„Ø¬Ù„Ø³Ø©" msgid "Turn on debugging output for sessions." msgstr "مكّن ØªÙ†Ù‚ÙŠØ Ù…Ùخرجات الجلسه." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "اذ٠إعدادت الموقع" @@ -3223,8 +3251,8 @@ msgstr "المنظمه" msgid "Description" msgstr "الوصÙ" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Ø¥Øصاءات" @@ -3361,45 +3389,45 @@ msgstr "الكنى" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "الأعضاء" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(لا شيء)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "جميع الأعضاء" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "أنشئ" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3409,7 +3437,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3418,7 +3446,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "الإداريون" @@ -3528,146 +3556,137 @@ msgid "User is already silenced." msgstr "المستخدم مسكت من قبل." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "الإعدادات الأساسيه لموقع StatusNet هذا." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "يجب ألا يكون طول اسم الموقع صÙرًا." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "لازم يكون عندك عنوان ايميل صالØ." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "لغه مش معروÙÙ‡ \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Øد النص الأدنى هو 140 ØرÙًا." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "عام" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "اسم الموقع" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "اسم موقعك، \"التدوين المصغر لشركتك\" مثلا" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "عنوان البريد الإلكترونى للاتصال بموقعك" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Ù…Øلي" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "المنطقه الزمنيه المبدئية" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "المنطقه الزمنيه المبدئيه للموقع؛ ت‌ع‌م عاده." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "لغه الموقع المبدئية" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "ÙÙ‰ مهمه Ù…Ùجدولة" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "التكرار" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "بلّغ عن المسار" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "الØدود" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Øد النص" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "أقصى عدد للØرو٠ÙÙ‰ الإشعارات." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "رساله جديدة" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "مشكله أثناء ØÙظ الإشعار." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "إشعار الموقع" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "إشعار الموقع" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "تظبيطات الـSMS" @@ -3760,6 +3779,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "غيّر ضبط الموقع" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "ÙÙ‰ مهمه Ù…Ùجدولة" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "التكرار" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "بلّغ عن المسار" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "اذ٠إعدادت الموقع" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -3954,7 +4033,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4145,16 +4224,22 @@ msgstr "%1$s أعضاء المجموعة, الصÙØÙ‡ %2$d" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4198,7 +4283,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "النسخه" @@ -4262,39 +4347,39 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "مشكله ÙÙ‰ ØÙظ الإشعار. طويل جدًا." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "مشكله ÙÙ‰ ØÙظ الإشعار. مستخدم غير معروÙ." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "مشكله أثناء ØÙظ الإشعار." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "مشكله أثناء ØÙظ الإشعار." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "آر تى @%1$s %2$s" @@ -4319,7 +4404,12 @@ msgstr "غير مشترك!" msgid "Couldn't delete self-subscription." msgstr "ما Ù†Ùعش ÙŠÙ…Ø³Ø Ø§Ù„Ø§Ø´ØªØ±Ø§Ùƒ الشخصى." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "تعذّر Øذ٠الاشتراك." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "تعذّر Øذ٠الاشتراك." @@ -4328,20 +4418,20 @@ msgstr "تعذّر Øذ٠الاشتراك." msgid "Welcome to %1$s, @%2$s!" msgstr "أهلا بكم ÙÙ‰ %1$s يا @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "تعذّر إنشاء المجموعه." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "تعذّر ضبط عضويه المجموعه." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "تعذّر ضبط عضويه المجموعه." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "تعذّر ØÙظ الاشتراك." @@ -4383,194 +4473,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "صÙØÙ‡ غير Ù…Ùعنونة" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "المل٠الشخصى ومسار الأصدقاء الزمني" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصية" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "غير كلمه سرّك" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "الØساب" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "كونيكشونات (Connections)" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "اتصل" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "غيّر ضبط الموقع" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "إداري" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ادعÙ" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "اخرج من الموقع" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "اخرج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "أنشئ Øسابًا" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "سجّل" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ù„Ùج إلى الموقع" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Ù„Ùج" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "ساعدني!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "مساعدة" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ابØØ« عن أشخاص أو نص" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "ابØØ«" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "إشعار الموقع" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "المشاهدات المØلية" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "إشعار الصÙØØ©" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "مساعدة" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "عن" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "الأسئله المكررة" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "الشروط" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "خصوصية" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "المصدر" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "اتصل" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4579,12 +4663,12 @@ msgstr "" "**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4595,53 +4679,53 @@ msgstr "" "المتوÙر تØت [رخصه غنو Ø£Ùيرو العمومية](http://www.fsf.org/licensing/licenses/" "agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "رخصه Ù…Øتوى الموقع" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "الرخصه." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "بعد" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "قبل" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4656,94 +4740,83 @@ msgid "Changes to that panel are not allowed." msgstr "التغييرات مش مسموØÙ‡ للـ لوØÙ‡ دى." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "تعذّر Øذ٠إعدادات التصميم." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ضبط الموقع الأساسي" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "الموقع" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "ضبط التصميم" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "التصميم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "ضبط المسارات" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "المستخدم" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "ضبط التصميم" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Ù†Ùاذ" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "ضبط المسارات" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "المسارات" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "ضبط التصميم" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "الجلسات" +msgid "Edit site notice" +msgstr "إشعار الموقع" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ضبط المسارات" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5240,6 +5313,11 @@ msgstr "" msgid "Go" msgstr "اذهب" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5764,10 +5842,6 @@ msgstr "الردود" msgid "Favorites" msgstr "المÙضلات" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "المستخدم" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق الوارد" @@ -5793,7 +5867,7 @@ msgstr "" msgid "Unknown" msgstr "مش معروÙ" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "الاشتراكات" @@ -5801,23 +5875,23 @@ msgstr "الاشتراكات" msgid "All subscriptions" msgstr "جميع الاشتراكات" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "المشتركون" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "جميع المشتركين" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "هويه المستخدم" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "عضو منذ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "كل المجموعات" @@ -5857,7 +5931,12 @@ msgstr "كرر هذا الإشعار؟" msgid "Repeat this notice" msgstr "كرر هذا الإشعار" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "امنع هذا المستخدم من هذه المجموعة" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6011,47 +6090,63 @@ msgstr "رسالة" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "مل٠المستخدم الشخصي" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "الإداريون" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "قبل Ù„Øظات قليلة" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "قبل دقيقه تقريبًا" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "قبل ساعه تقريبًا" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "قبل يوم تقريبا" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "قبل شهر تقريبًا" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "قبل سنه تقريبًا" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index abf1998d8..e24c60c5a 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:12+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:55:59+0000\n" "Language-Team: Bulgarian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "ДоÑтъп" @@ -118,7 +119,7 @@ msgstr "%1$s и приÑтели, Ñтраница %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -173,7 +174,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Вие и приÑтелите" @@ -200,11 +201,11 @@ msgstr "Бележки от %1$s и приÑтели в %2$s." #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Ðе е открит методът в API." @@ -570,7 +571,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Сметка" @@ -658,18 +659,6 @@ msgstr "%s / ОтбелÑзани като любими от %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s бележки отбелÑзани като любими от %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Поток на %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Бележки от %1$s в %2$s." - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -680,12 +669,12 @@ msgstr "%1$s / Реплики на %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s реплики на ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ñ‚ %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Общ поток на %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -932,7 +921,7 @@ msgid "Conversation" msgstr "Разговор" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Бележки" @@ -954,7 +943,7 @@ msgstr "Ðе членувате в тази група." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Имаше проблем ÑÑŠÑ ÑеÑиÑта ви в Ñайта." @@ -1149,8 +1138,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1278,7 +1268,7 @@ msgstr "ОпиÑанието е твърде дълго (до %d Ñимвола) msgid "Could not update group." msgstr "Грешка при обновÑване на групата." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Грешка при отбелÑзване като любима." @@ -1402,7 +1392,7 @@ msgid "Cannot normalize that email address" msgstr "Грешка при нормализиране адреÑа на е-пощата" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ðеправилен Ð°Ð´Ñ€ÐµÑ Ð½Ð° е-поща." @@ -1595,6 +1585,25 @@ msgstr "ÐÑма такъв файл." msgid "Cannot read file." msgstr "Грешка при четене на файла." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ðеправилен размер." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ðе може да изпращате ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð¾ този потребител." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "ПотребителÑÑ‚ вече е заглушен." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1744,12 +1753,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Поток на %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Бележки от %1$s в %2$s." -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -2362,8 +2377,8 @@ msgstr "вид Ñъдържание " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ðеподдържан формат на данните" @@ -2509,7 +2524,8 @@ msgstr "Грешка при запазване на новата парола." msgid "Password saved." msgstr "Паролата е запиÑана." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Пътища" @@ -2629,7 +2645,7 @@ msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° фона" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Ðикога" @@ -2684,11 +2700,11 @@ msgstr "Това не е правилен Ð°Ð´Ñ€ÐµÑ Ð½Ð° е-поща." msgid "Users self-tagged with %1$s - page %2$d" msgstr "Бележки Ñ ÐµÑ‚Ð¸ÐºÐµÑ‚ %s, Ñтраница %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ðевалидно Ñъдържание на бележка" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2764,7 +2780,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Език" @@ -2792,7 +2808,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "БиографиÑта е твърде дълга (до %d Ñимвола)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Ðе е избран чаÑови поÑÑ" @@ -3097,7 +3113,7 @@ msgid "Same as password above. Required." msgstr "Същото като паролата по-горе. Задължително поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Е-поща" @@ -3202,7 +3218,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "ÐÐ´Ñ€ÐµÑ Ð½Ð° профила ви в друга, ÑъвмеÑтима уÑлуга за микроблогване" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Ðбониране" @@ -3300,6 +3316,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Отговори до %1$s в %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Ðе можете да заглушавате потребители на този Ñайт." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Потребител без ÑъответÑтващ профил" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3314,7 +3340,9 @@ msgstr "Ðе може да изпращате ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð¾ този Ð msgid "User is already sandboxed." msgstr "ПотребителÑÑ‚ ви е блокирал." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "СеÑии" @@ -3339,7 +3367,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Запазване наÑтройките на Ñайта" @@ -3372,8 +3400,8 @@ msgstr "ОрганизациÑ" msgid "Description" msgstr "ОпиÑание" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "СтатиÑтики" @@ -3507,45 +3535,45 @@ msgstr "ПÑевдоними" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "ЕмиÑÐ¸Ñ Ñ Ð±ÐµÐ»ÐµÐ¶ÐºÐ¸ на %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "ЕмиÑÐ¸Ñ Ñ Ð±ÐµÐ»ÐµÐ¶ÐºÐ¸ на %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "ЕмиÑÐ¸Ñ Ñ Ð±ÐµÐ»ÐµÐ¶ÐºÐ¸ на %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "ИзходÑща ÐºÑƒÑ‚Ð¸Ñ Ð·Ð° %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Членове" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Ð’Ñички членове" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Създадена на" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3555,7 +3583,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3564,7 +3592,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "ÐдминиÑтратори" @@ -3674,147 +3702,138 @@ msgid "User is already silenced." msgstr "ПотребителÑÑ‚ вече е заглушен." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "ОÑновни наÑтройки на тази инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Името на Ñайта е задължително." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "ÐдреÑÑŠÑ‚ на е-поща за контакт е задължителен" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Ðепознат език \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минималното ограничение на текÑта е 140 знака." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Общи" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Име на Ñайта" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "ÐÐ´Ñ€ÐµÑ Ð½Ð° е-поща за контакт ÑÑŠÑ Ñайта" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "МеÑтоположение" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "ЧаÑови поÑÑ Ð¿Ð¾ подразбиране" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "ЧаÑови поÑÑ Ð¿Ð¾ подразбиране за Ñайта (обикновено UTC)." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Език по подразбиране за Ñайта" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" +#: actions/siteadminpanel.php:271 +msgid "Limits" +msgstr "ОграничениÑ" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "ЧеÑтота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Ðова бележка" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ðово Ñъобщение" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "ОграничениÑ" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Грешка при запиÑване наÑтройките за Twitter" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Ðова бележка" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Ðова бележка" #: actions/smssettings.php:58 msgid "SMS settings" @@ -3917,6 +3936,66 @@ msgstr "" msgid "No code entered" msgstr "Ðе е въведен код." +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "ПромÑна наÑтройките на Ñайта" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "ЧеÑтота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Запазване наÑтройките на Ñайта" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Ðе Ñте абонирани за този профил" @@ -4119,7 +4198,7 @@ msgstr "Сървърът не е върнал Ð°Ð´Ñ€ÐµÑ Ð½Ð° профила." msgid "Unsubscribed" msgstr "ОтпиÑване" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4325,16 +4404,22 @@ msgstr "Членове на групата %s, Ñтраница %d" msgid "Search for more groups" msgstr "ТърÑене на още групи" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не членува в Ð½Ð¸ÐºÐ¾Ñ Ð³Ñ€ÑƒÐ¿Ð°." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Бележки от %1$s в %2$s." + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4378,7 +4463,7 @@ msgstr "" msgid "Plugins" msgstr "ПриÑтавки" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "ВерÑиÑ" @@ -4446,23 +4531,23 @@ msgstr "Грешка при обновÑване на бележката Ñ Ð½Ð¾ msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Проблем при запиÑване на бележката." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Грешка при запиÑване на бележката. Ðепознат потребител." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново Ñлед нÑколко минути." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4471,20 +4556,20 @@ msgstr "" "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "отново Ñлед нÑколко минути." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Забранено ви е да публикувате бележки в този Ñайт." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблем при запиÑване на бележката." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Проблем при запиÑване на бележката." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4512,7 +4597,12 @@ msgstr "Ðе Ñте абонирани!" msgid "Couldn't delete self-subscription." msgstr "Грешка при изтриване на абонамента." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Грешка при изтриване на абонамента." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Грешка при изтриване на абонамента." @@ -4521,21 +4611,21 @@ msgstr "Грешка при изтриване на абонамента." msgid "Welcome to %1$s, @%2$s!" msgstr "Добре дошли в %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Грешка при Ñъздаване на групата." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Грешка при Ñъздаване на нов абонамент." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Грешка при Ñъздаване на нов абонамент." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Грешка при Ñъздаване на нов абонамент." @@ -4578,196 +4668,190 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Ðеозаглавена Ñтраница" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "ПромÑна на поща, аватар, парола, профил" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Сметка" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Свързване към уÑлуги" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Свързване" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "ПромÑна наÑтройките на Ñайта" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "ÐаÑтройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете приÑтели и колеги да Ñе приÑъединÑÑ‚ към Ð²Ð°Ñ Ð² %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Излизане от Ñайта" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Изход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Създаване на нова Ñметка" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "РегиÑтриране" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Влизане в Ñайта" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощ" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Помощ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ТърÑене за хора или бележки" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "ТърÑене" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Ðова бележка" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Ðова бележка" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Ðбонаменти" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Помощ" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "ОтноÑно" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ВъпроÑи" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "УÑловиÑ" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "ПоверителноÑÑ‚" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Изходен код" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Контакт" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Табелка" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Лиценз на програмата StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4776,12 +4860,12 @@ msgstr "" "**%%site.name%%** е уÑлуга за микроблогване, предоÑтавена ви от [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е уÑлуга за микроблогване. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4792,53 +4876,53 @@ msgstr "" "доÑтъпна под [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Лиценз на Ñъдържанието" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Ð’Ñички " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "лиценз." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Страниране" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "След" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Преди" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4854,97 +4938,86 @@ msgid "Changes to that panel are not allowed." msgstr "ЗапиÑването не е позволено." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Командата вÑе още не Ñе поддържа." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Командата вÑе още не Ñе поддържа." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Грешка при запиÑване наÑтройките за Twitter" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ОÑновна наÑтройка на Ñайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "ÐаÑтройка на оформлението" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "ВерÑиÑ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "ÐаÑтройка на пътищата" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Потребител" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "ÐаÑтройка на оформлението" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "ДоÑтъп" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "ÐаÑтройка на пътищата" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Пътища" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "ÐаÑтройка на оформлението" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "СеÑии" +msgid "Edit site notice" +msgstr "Ðова бележка" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ÐаÑтройка на пътищата" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5443,6 +5516,11 @@ msgstr "Изберете етикет за конкретизиране" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "ÐÐ´Ñ€ÐµÑ Ð½Ð° Ñтраница, блог или профил в друг Ñайт на групата" @@ -5983,10 +6061,6 @@ msgstr "Отговори" msgid "Favorites" msgstr "Любими" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Потребител" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "ВходÑщи" @@ -6013,7 +6087,7 @@ msgstr "Етикети в бележките на %s" msgid "Unknown" msgstr "Ðепознато дейÑтвие" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Ðбонаменти" @@ -6021,24 +6095,24 @@ msgstr "Ðбонаменти" msgid "All subscriptions" msgstr "Ð’Ñички абонаменти" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Ðбонати" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Ð’Ñички абонати" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Потребител" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "УчаÑтник от" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Ð’Ñички групи" @@ -6079,7 +6153,12 @@ msgstr "ПовтарÑне на тази бележка" msgid "Repeat this notice" msgstr "ПовтарÑне на тази бележка" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "СпиÑък Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ð¸Ñ‚Ðµ в тази група." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6239,47 +6318,63 @@ msgstr "Съобщение" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "ПотребителÑки профил" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "ÐдминиÑтратори" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "преди нÑколко Ñекунди" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "преди около минута" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "преди около %d минути" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "преди около чаÑ" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "преди около %d чаÑа" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "преди около ден" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "преди около %d дни" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "преди около меÑец" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "преди около %d меÑеца" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "преди около година" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po new file mode 100644 index 000000000..53e971a31 --- /dev/null +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -0,0 +1,6106 @@ +# Translation of StatusNet to Breton +# +# Author@translatewiki.net: Fulup +# Author@translatewiki.net: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-03-04 19:12+0000\n" +"PO-Revision-Date: 2010-03-04 19:12:57+0000\n" +"Language-Team: Dutch\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: out-statusnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Page title +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 +msgid "Access" +msgstr "Moned" + +#. TRANS: Page notice +#: actions/accessadminpanel.php:67 +msgid "Site access settings" +msgstr "" + +#. TRANS: Form legend for registration form. +#: actions/accessadminpanel.php:161 +msgid "Registration" +msgstr "Enskrivadur" + +#. TRANS: Checkbox instructions for admin setting "Private" +#: actions/accessadminpanel.php:165 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#. TRANS: Checkbox label for prohibiting anonymous users from viewing site. +#: actions/accessadminpanel.php:167 +msgctxt "LABEL" +msgid "Private" +msgstr "Prevez" + +#. TRANS: Checkbox instructions for admin setting "Invite only" +#: actions/accessadminpanel.php:174 +msgid "Make registration invitation only." +msgstr "Aotreañ an enskrivadur goude bezañ bet pedet hepken." + +#. TRANS: Checkbox label for configuring site as invite only. +#: actions/accessadminpanel.php:176 +msgid "Invite only" +msgstr "Tud pedet hepken" + +#. TRANS: Checkbox instructions for admin setting "Closed" (no new registrations) +#: actions/accessadminpanel.php:183 +msgid "Disable new registrations." +msgstr "Diweredekaat an enskrivadurioù nevez." + +#. TRANS: Checkbox label for disabling new user registrations. +#: actions/accessadminpanel.php:185 +msgid "Closed" +msgstr "Serr" + +#. TRANS: Title / tooltip for button to save access settings in site admin panel +#: actions/accessadminpanel.php:202 +msgid "Save access settings" +msgstr "Enrollañ an arventennoù moned" + +#: actions/accessadminpanel.php:203 +msgctxt "BUTTON" +msgid "Save" +msgstr "Enrollañ" + +#. TRANS: Server error when page not found (404) +#: actions/all.php:64 actions/public.php:98 actions/replies.php:93 +#: actions/showfavorites.php:138 actions/tag.php:52 +msgid "No such page" +msgstr "N'eus ket eus ar bajenn-se" + +#: actions/all.php:75 actions/allrss.php:68 +#: actions/apiaccountupdatedeliverydevice.php:113 +#: actions/apiaccountupdateprofile.php:105 +#: actions/apiaccountupdateprofilebackgroundimage.php:116 +#: actions/apiaccountupdateprofileimage.php:105 actions/apiblockcreate.php:97 +#: actions/apiblockdestroy.php:96 actions/apidirectmessage.php:77 +#: actions/apidirectmessagenew.php:75 actions/apigroupcreate.php:112 +#: actions/apigroupismember.php:90 actions/apigroupjoin.php:99 +#: actions/apigroupleave.php:99 actions/apigrouplist.php:90 +#: actions/apistatusesupdate.php:148 actions/apisubscriptions.php:87 +#: actions/apitimelinefavorites.php:70 actions/apitimelinefriends.php:78 +#: actions/apitimelinehome.php:79 actions/apitimelinementions.php:79 +#: actions/apitimelineuser.php:81 actions/avatarbynickname.php:75 +#: actions/favoritesrss.php:74 actions/foaf.php:40 actions/foaf.php:58 +#: actions/hcard.php:67 actions/microsummary.php:62 actions/newmessage.php:116 +#: actions/otp.php:76 actions/remotesubscribe.php:145 +#: actions/remotesubscribe.php:154 actions/replies.php:73 +#: actions/repliesrss.php:38 actions/rsd.php:116 actions/showfavorites.php:105 +#: actions/userbyid.php:74 actions/usergroups.php:91 actions/userrss.php:38 +#: actions/xrds.php:71 lib/command.php:163 lib/command.php:302 +#: lib/command.php:355 lib/command.php:401 lib/command.php:462 +#: lib/command.php:518 lib/galleryaction.php:59 lib/mailbox.php:82 +#: lib/profileaction.php:77 +msgid "No such user." +msgstr "N'eus ket eus an implijer-se." + +#. TRANS: Page title. %1$s is user nickname, %2$d is page number +#: actions/all.php:86 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%1$s hag e vignoned, pajenn %2$d" + +#. TRANS: Page title. %1$s is user nickname +#. TRANS: H1 text. %1$s is user nickname +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 +#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 +#: lib/personalgroupnav.php:100 +#, php-format +msgid "%s and friends" +msgstr "%s hag e vignoned" + +#. TRANS: %1$s is user nickname +#: actions/all.php:103 +#, php-format +msgid "Feed for friends of %s (RSS 1.0)" +msgstr "Gwazh evit mignoned %s (RSS 1.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:112 +#, php-format +msgid "Feed for friends of %s (RSS 2.0)" +msgstr "Gwazh evit mignoned %s (RSS 2.0)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:121 +#, php-format +msgid "Feed for friends of %s (Atom)" +msgstr "Gwazh evit mignoned %s (Atom)" + +#. TRANS: %1$s is user nickname +#: actions/all.php:134 +#, php-format +msgid "" +"This is the timeline for %s and friends but no one has posted anything yet." +msgstr "" + +#: actions/all.php:139 +#, php-format +msgid "" +"Try subscribing to more people, [join a group](%%action.groups%%) or post " +"something yourself." +msgstr "" + +#. TRANS: %1$s is user nickname, %2$s is user nickname, %2$s is user nickname prefixed with "@" +#: actions/all.php:142 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) from his profile or [post something to " +"his or her attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" + +#: actions/all.php:145 actions/replies.php:210 actions/showstream.php:211 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and then nudge %s or " +"post a notice to his or her attention." +msgstr "" + +#. TRANS: H1 text +#: actions/all.php:178 +msgid "You and friends" +msgstr "C'hwi hag o mignoned" + +#: actions/allrss.php:119 actions/apitimelinefriends.php:119 +#: actions/apitimelinehome.php:120 +#, php-format +msgid "Updates from %1$s and friends on %2$s!" +msgstr "Hizivadennoù %1$s ha mignoned e %2$s!" + +#: actions/apiaccountratelimitstatus.php:70 +#: actions/apiaccountupdatedeliverydevice.php:93 +#: actions/apiaccountupdateprofile.php:97 +#: actions/apiaccountupdateprofilebackgroundimage.php:94 +#: actions/apiaccountupdateprofilecolors.php:118 +#: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156 +#: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100 +#: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100 +#: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:138 +#: actions/apigroupismember.php:114 actions/apigroupjoin.php:155 +#: actions/apigroupleave.php:141 actions/apigrouplist.php:132 +#: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106 +#: actions/apigroupshow.php:115 actions/apihelptest.php:88 +#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 +#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 +#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 +#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 +#: actions/apitimelineretweetedtome.php:121 +#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 +msgid "API method not found." +msgstr "N'eo ket bet kavet an hentenn API !" + +#: actions/apiaccountupdatedeliverydevice.php:85 +#: actions/apiaccountupdateprofile.php:89 +#: actions/apiaccountupdateprofilebackgroundimage.php:86 +#: actions/apiaccountupdateprofilecolors.php:110 +#: actions/apiaccountupdateprofileimage.php:84 actions/apiblockcreate.php:89 +#: actions/apiblockdestroy.php:88 actions/apidirectmessagenew.php:117 +#: actions/apifavoritecreate.php:90 actions/apifavoritedestroy.php:91 +#: actions/apifriendshipscreate.php:91 actions/apifriendshipsdestroy.php:91 +#: actions/apigroupcreate.php:104 actions/apigroupjoin.php:91 +#: actions/apigroupleave.php:91 actions/apistatusesretweet.php:65 +#: actions/apistatusesupdate.php:118 +msgid "This method requires a POST." +msgstr "Ezhomm en deus an argerzh-mañ eus ur POST." + +#: actions/apiaccountupdatedeliverydevice.php:105 +msgid "" +"You must specify a parameter named 'device' with a value of one of: sms, im, " +"none" +msgstr "" + +#: actions/apiaccountupdatedeliverydevice.php:132 +msgid "Could not update user." +msgstr "Diposubl eo hizivaat an implijer." + +#: actions/apiaccountupdateprofile.php:112 +#: actions/apiaccountupdateprofilebackgroundimage.php:194 +#: actions/apiaccountupdateprofilecolors.php:185 +#: actions/apiaccountupdateprofileimage.php:130 actions/apiusershow.php:108 +#: actions/avatarbynickname.php:80 actions/foaf.php:65 actions/hcard.php:74 +#: actions/replies.php:80 actions/usergroups.php:98 lib/galleryaction.php:66 +#: lib/profileaction.php:84 +msgid "User has no profile." +msgstr "An implijer-mañ n'eus profil ebet dezhañ." + +#: actions/apiaccountupdateprofile.php:147 +msgid "Could not save profile." +msgstr "Diposubl eo enrollañ ar profil." + +#: actions/apiaccountupdateprofilebackgroundimage.php:108 +#: actions/apiaccountupdateprofileimage.php:97 +#: actions/apistatusesupdate.php:131 actions/avatarsettings.php:257 +#: actions/designadminpanel.php:122 actions/editapplication.php:118 +#: actions/newapplication.php:101 actions/newnotice.php:94 +#: lib/designsettings.php:283 +#, php-format +msgid "" +"The server was unable to handle that much POST data (%s bytes) due to its " +"current configuration." +msgstr "" + +#: actions/apiaccountupdateprofilebackgroundimage.php:136 +#: actions/apiaccountupdateprofilebackgroundimage.php:146 +#: actions/apiaccountupdateprofilecolors.php:164 +#: actions/apiaccountupdateprofilecolors.php:174 +#: actions/groupdesignsettings.php:290 actions/groupdesignsettings.php:300 +#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 +#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 +msgid "Unable to save your design settings." +msgstr "" + +#: actions/apiaccountupdateprofilebackgroundimage.php:187 +#: actions/apiaccountupdateprofilecolors.php:142 +msgid "Could not update your design." +msgstr "Diposubl eo hizivat ho design." + +#: actions/apiblockcreate.php:105 +msgid "You cannot block yourself!" +msgstr "Ne c'helloc'h ket ho stankañ ho unan !" + +#: actions/apiblockcreate.php:126 +msgid "Block user failed." +msgstr "N'eo ket bet stanke an implijer." + +#: actions/apiblockdestroy.php:114 +msgid "Unblock user failed." +msgstr "N'eus ket bet tu distankañ an implijer." + +#: actions/apidirectmessage.php:89 +#, php-format +msgid "Direct messages from %s" +msgstr "Kemennadennoù war-eeun kaset gant %s" + +#: actions/apidirectmessage.php:93 +#, php-format +msgid "All the direct messages sent from %s" +msgstr "An holl gemennadennoù war-eeun kaset gant %s" + +#: actions/apidirectmessage.php:101 +#, php-format +msgid "Direct messages to %s" +msgstr "Kemennadennoù war-eeun kaset da %s" + +#: actions/apidirectmessage.php:105 +#, php-format +msgid "All the direct messages sent to %s" +msgstr "An holl gemennadennoù war-eeun kaset da %s" + +#: actions/apidirectmessagenew.php:126 +msgid "No message text!" +msgstr "Kemenadenn hep testenn !" + +#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150 +#, php-format +msgid "That's too long. Max message size is %d chars." +msgstr "Re hir eo ! Ment hirañ ar gemenadenn a zo a %d arouezenn." + +#: actions/apidirectmessagenew.php:146 +msgid "Recipient user not found." +msgstr "N'eo ket bet kavet ar resever." + +#: actions/apidirectmessagenew.php:150 +msgid "Can't send direct messages to users who aren't your friend." +msgstr "" +"Ne c'helloc'h ket kas kemennadennoù personel d'an implijerien n'int ket ho " +"mignoned." + +#: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:109 +#: actions/apistatusesdestroy.php:113 +msgid "No status found with that ID." +msgstr "N'eo bet kavet statud ebet gant an ID-mañ." + +#: actions/apifavoritecreate.php:119 +msgid "This status is already a favorite." +msgstr "Ur pennroll eo dija an ali-mañ." + +#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 +msgid "Could not create favorite." +msgstr "Diposupl eo krouiñ ar pennroll-mañ." + +#: actions/apifavoritedestroy.php:122 +msgid "That status is not a favorite." +msgstr "N'eo ket ar statud-mañ ur pennroll." + +#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 +msgid "Could not delete favorite." +msgstr "Diposupl eo dilemel ar pennroll-mañ." + +#: actions/apifriendshipscreate.php:109 +msgid "Could not follow user: User not found." +msgstr "Diposupl eo heuliañ an implijer : N'eo ket bet kavet an implijer." + +#: actions/apifriendshipscreate.php:118 +#, php-format +msgid "Could not follow user: %s is already on your list." +msgstr "Diposubl eo heuliañ an implijer : war ho listenn emañ %s dija." + +#: actions/apifriendshipsdestroy.php:109 +msgid "Could not unfollow user: User not found." +msgstr "" +"Diposupl eo paouez heuliañ an implijer : N'eo ket bet kavet an implijer." + +#: actions/apifriendshipsdestroy.php:120 +msgid "You cannot unfollow yourself." +msgstr "Ne c'hallit ket chom hep ho heuliañ hoc'h-unan." + +#: actions/apifriendshipsexists.php:94 +msgid "Two user ids or screen_names must be supplied." +msgstr "" + +#: actions/apifriendshipsshow.php:134 +msgid "Could not determine source user." +msgstr "Diposubl eo termeniñ an implijer mammenn." + +#: actions/apifriendshipsshow.php:142 +msgid "Could not find target user." +msgstr "Diposubl eo kavout an implijer pal." + +#: actions/apigroupcreate.php:166 actions/editgroup.php:186 +#: actions/newgroup.php:126 actions/profilesettings.php:215 +#: actions/register.php:205 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" + +#: actions/apigroupcreate.php:175 actions/editgroup.php:190 +#: actions/newgroup.php:130 actions/profilesettings.php:238 +#: actions/register.php:208 +msgid "Nickname already in use. Try another one." +msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." + +#: actions/apigroupcreate.php:182 actions/editgroup.php:193 +#: actions/newgroup.php:133 actions/profilesettings.php:218 +#: actions/register.php:210 +msgid "Not a valid nickname." +msgstr "N'eo ket ul lesanv mat." + +#: actions/apigroupcreate.php:198 actions/editapplication.php:215 +#: actions/editgroup.php:199 actions/newapplication.php:203 +#: actions/newgroup.php:139 actions/profilesettings.php:222 +#: actions/register.php:217 +msgid "Homepage is not a valid URL." +msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." + +#: actions/apigroupcreate.php:207 actions/editgroup.php:202 +#: actions/newgroup.php:142 actions/profilesettings.php:225 +#: actions/register.php:220 +msgid "Full name is too long (max 255 chars)." +msgstr "Re hir eo an anv klok (255 arouezenn d'ar muiañ)." + +#: actions/apigroupcreate.php:215 actions/editapplication.php:190 +#: actions/newapplication.php:172 +#, php-format +msgid "Description is too long (max %d chars)." +msgstr "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." + +#: actions/apigroupcreate.php:226 actions/editgroup.php:208 +#: actions/newgroup.php:148 actions/profilesettings.php:232 +#: actions/register.php:227 +msgid "Location is too long (max 255 chars)." +msgstr "Re hir eo al lec'hiadur (255 arouezenn d'ar muiañ)." + +#: actions/apigroupcreate.php:245 actions/editgroup.php:219 +#: actions/newgroup.php:159 +#, php-format +msgid "Too many aliases! Maximum %d." +msgstr "Re a aliasoù ! %d d'ar muiañ." + +#: actions/apigroupcreate.php:266 actions/editgroup.php:228 +#: actions/newgroup.php:168 +#, php-format +msgid "Invalid alias: \"%s\"" +msgstr "Alias fall : \"%s\"" + +#: actions/apigroupcreate.php:275 actions/editgroup.php:232 +#: actions/newgroup.php:172 +#, php-format +msgid "Alias \"%s\" already in use. Try another one." +msgstr "Implijet e vez an alias \"%s\" dija. Klaskit gant unan all." + +#: actions/apigroupcreate.php:288 actions/editgroup.php:238 +#: actions/newgroup.php:178 +msgid "Alias can't be the same as nickname." +msgstr "Ne c'hell ket an alias bezañ ar memes hini eget al lesanv." + +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:82 actions/apitimelinegroup.php:91 +msgid "Group not found!" +msgstr "N'eo ket bet kavet ar strollad" + +#: actions/apigroupjoin.php:110 actions/joingroup.php:100 +msgid "You are already a member of that group." +msgstr "Un ezel eus ar strollad-mañ eo dija." + +#: actions/apigroupjoin.php:119 actions/joingroup.php:105 lib/command.php:221 +msgid "You have been blocked from that group by the admin." +msgstr "Stanket oc'h bet eus ar strollad-mañ gant ur merour." + +#: actions/apigroupjoin.php:138 actions/joingroup.php:134 +#, php-format +msgid "Could not join user %1$s to group %2$s." +msgstr "Diposubl eo stagañ an implijer %1$s d'ar strollad %2$s." + +#: actions/apigroupleave.php:114 +msgid "You are not a member of this group." +msgstr "N'oc'h ket ezel eus ar strollad-mañ." + +#: actions/apigroupleave.php:124 actions/leavegroup.php:129 +#, php-format +msgid "Could not remove user %1$s from group %2$s." +msgstr "Diposubl eo dilemel an implijer %1$s deus ar strollad %2$s." + +#: actions/apigrouplist.php:95 +#, php-format +msgid "%s's groups" +msgstr "Strollad %s" + +#: actions/apigrouplistall.php:90 actions/usergroups.php:62 +#, php-format +msgid "%s groups" +msgstr "Strolladoù %s" + +#: actions/apigrouplistall.php:94 +#, php-format +msgid "groups on %s" +msgstr "strolladoù war %s" + +#: actions/apioauthauthorize.php:101 +msgid "No oauth_token parameter provided." +msgstr "Arventenn oauth_token nann-roet." + +#: actions/apioauthauthorize.php:106 +msgid "Invalid token." +msgstr "Fichenn direizh." + +#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 +#: actions/deletenotice.php:157 actions/disfavor.php:74 +#: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:54 +#: actions/groupblock.php:66 actions/grouplogo.php:312 +#: actions/groupunblock.php:66 actions/imsettings.php:206 +#: actions/invite.php:56 actions/login.php:115 actions/makeadmin.php:66 +#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80 +#: actions/oauthappssettings.php:159 actions/oauthconnectionssettings.php:135 +#: actions/othersettings.php:145 actions/passwordsettings.php:138 +#: actions/profilesettings.php:194 actions/recoverpassword.php:337 +#: actions/register.php:165 actions/remotesubscribe.php:77 +#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 +#: actions/subscribe.php:86 actions/tagother.php:166 +#: actions/unsubscribe.php:69 actions/userauthorization.php:52 +#: lib/designsettings.php:294 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: actions/apioauthauthorize.php:135 +msgid "Invalid nickname / password!" +msgstr "Lesanv / ger tremen direizh !" + +#: actions/apioauthauthorize.php:159 +msgid "Database error deleting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:185 +msgid "Database error inserting OAuth application user." +msgstr "" + +#: actions/apioauthauthorize.php:214 +#, php-format +msgid "" +"The request token %s has been authorized. Please exchange it for an access " +"token." +msgstr "" + +#: actions/apioauthauthorize.php:227 +#, php-format +msgid "The request token %s has been denied and revoked." +msgstr "" + +#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 +#: actions/designadminpanel.php:103 actions/editapplication.php:139 +#: actions/emailsettings.php:256 actions/grouplogo.php:322 +#: actions/imsettings.php:220 actions/newapplication.php:121 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44 +#: actions/smssettings.php:248 lib/designsettings.php:304 +msgid "Unexpected form submission." +msgstr "" + +#: actions/apioauthauthorize.php:259 +msgid "An application would like to connect to your account" +msgstr "" + +#: actions/apioauthauthorize.php:276 +msgid "Allow or deny access" +msgstr "Aotreañ pe nac'h ar moned" + +#: actions/apioauthauthorize.php:292 +#, php-format +msgid "" +"The application <strong>%1$s</strong> by <strong>%2$s</strong> would like " +"the ability to <strong>%3$s</strong> your %4$s account data. You should only " +"give access to your %4$s account to third parties you trust." +msgstr "" + +#: actions/apioauthauthorize.php:310 lib/action.php:438 +msgid "Account" +msgstr "Kont" + +#: actions/apioauthauthorize.php:313 actions/login.php:230 +#: actions/profilesettings.php:106 actions/register.php:424 +#: actions/showgroup.php:244 actions/tagother.php:94 +#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: lib/userprofile.php:131 +msgid "Nickname" +msgstr "Lesanv" + +#: actions/apioauthauthorize.php:316 actions/login.php:233 +#: actions/register.php:429 lib/accountsettingsaction.php:116 +msgid "Password" +msgstr "Ger-tremen" + +#: actions/apioauthauthorize.php:328 +msgid "Deny" +msgstr "Nac'hañ" + +#: actions/apioauthauthorize.php:334 +msgid "Allow" +msgstr "Aotreañ" + +#: actions/apioauthauthorize.php:351 +msgid "Allow or deny access to your account information." +msgstr "Aotreañ pe nac'hañ ar moned da ditouroù ho kont." + +#: actions/apistatusesdestroy.php:107 +msgid "This method requires a POST or DELETE." +msgstr "Ezhomm en deus an argerzh-mañ ur POST pe un DELETE." + +#: actions/apistatusesdestroy.php:130 +msgid "You may not delete another user's status." +msgstr "Ne c'helloc'h ket dilemel statud un implijer all." + +#: actions/apistatusesretweet.php:75 actions/apistatusesretweets.php:72 +#: actions/deletenotice.php:52 actions/shownotice.php:92 +msgid "No such notice." +msgstr "N'eus ket eus an ali-se." + +#: actions/apistatusesretweet.php:83 +msgid "Cannot repeat your own notice." +msgstr "Ne c'helloc'h ket adlavar ho alioù." + +#: actions/apistatusesretweet.php:91 +msgid "Already repeated that notice." +msgstr "Adlavaret o peus dija an ali-mañ." + +#: actions/apistatusesshow.php:138 +msgid "Status deleted." +msgstr "Statud diverket." + +#: actions/apistatusesshow.php:144 +msgid "No status with that ID found." +msgstr "N'eo ket bet kavet a statud evit an ID-mañ" + +#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 +#: lib/mailhandler.php:60 +#, php-format +msgid "That's too long. Max notice size is %d chars." +msgstr "Re hir eo ! Ment hirañ an ali a zo a %d arouezenn." + +#: actions/apistatusesupdate.php:202 +msgid "Not found" +msgstr "N'eo ket bet kavet" + +#: actions/apistatusesupdate.php:225 actions/newnotice.php:178 +#, php-format +msgid "Max notice size is %d chars, including attachment URL." +msgstr "" + +#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 +msgid "Unsupported format." +msgstr "Diembreget eo ar furmad-se." + +#: actions/apitimelinefavorites.php:108 +#, php-format +msgid "%1$s / Favorites from %2$s" +msgstr "%1$s / Pennroll %2$s" + +#: actions/apitimelinefavorites.php:117 +#, php-format +msgid "%1$s updates favorited by %2$s / %2$s." +msgstr "%1$s statud pennroll da %2$s / %2$s." + +#: actions/apitimelinementions.php:117 +#, php-format +msgid "%1$s / Updates mentioning %2$s" +msgstr "%1$s / Hizivadennoù a veneg %2$s" + +#: actions/apitimelinementions.php:127 +#, php-format +msgid "%1$s updates that reply to updates from %2$s / %3$s." +msgstr "" + +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 +#, php-format +msgid "%s public timeline" +msgstr "Oberezhioù publik %s" + +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 +#, php-format +msgid "%s updates from everyone!" +msgstr "%s statud an holl !" + +#: actions/apitimelineretweetedtome.php:111 +#, php-format +msgid "Repeated to %s" +msgstr "Adkemeret evit %s" + +#: actions/apitimelineretweetsofme.php:114 +#, php-format +msgid "Repeats of %s" +msgstr "Adkemeret eus %s" + +#: actions/apitimelinetag.php:102 actions/tag.php:67 +#, php-format +msgid "Notices tagged with %s" +msgstr "Alioù merket gant %s" + +#: actions/apitimelinetag.php:104 actions/tagrss.php:64 +#, php-format +msgid "Updates tagged with %1$s on %2$s!" +msgstr "" + +#: actions/apiusershow.php:96 +msgid "Not found." +msgstr "N'eo ket bet kavet." + +#: actions/attachment.php:73 +msgid "No such attachment." +msgstr "N'eo ket bet kavet ar restr stag." + +#: actions/avatarbynickname.php:59 actions/blockedfromgroup.php:73 +#: actions/editgroup.php:84 actions/groupdesignsettings.php:84 +#: actions/grouplogo.php:86 actions/groupmembers.php:76 +#: actions/grouprss.php:91 actions/showgroup.php:121 +msgid "No nickname." +msgstr "Lesanv ebet." + +#: actions/avatarbynickname.php:64 +msgid "No size." +msgstr "Ment ebet." + +#: actions/avatarbynickname.php:69 +msgid "Invalid size." +msgstr "Ment direizh." + +#: actions/avatarsettings.php:67 actions/showgroup.php:229 +#: lib/accountsettingsaction.php:112 +msgid "Avatar" +msgstr "Avatar" + +#: actions/avatarsettings.php:78 +#, php-format +msgid "You can upload your personal avatar. The maximum file size is %s." +msgstr "" + +#: actions/avatarsettings.php:106 actions/avatarsettings.php:185 +#: actions/remotesubscribe.php:191 actions/userauthorization.php:72 +#: actions/userrss.php:103 +msgid "User without matching profile" +msgstr "Implijer hep profil klotaus" + +#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 +#: actions/grouplogo.php:254 +msgid "Avatar settings" +msgstr "Arventennoù an avatar" + +#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 +#: actions/grouplogo.php:202 actions/grouplogo.php:262 +msgid "Original" +msgstr "Orin" + +#: actions/avatarsettings.php:142 actions/avatarsettings.php:217 +#: actions/grouplogo.php:213 actions/grouplogo.php:274 +msgid "Preview" +msgstr "Rakwelet" + +#: actions/avatarsettings.php:149 actions/showapplication.php:252 +#: lib/deleteuserform.php:66 lib/noticelist.php:655 +msgid "Delete" +msgstr "Diverkañ" + +#: actions/avatarsettings.php:166 actions/grouplogo.php:236 +msgid "Upload" +msgstr "Enporzhiañ" + +#: actions/avatarsettings.php:231 actions/grouplogo.php:289 +msgid "Crop" +msgstr "Adframmañ" + +#: actions/avatarsettings.php:328 +msgid "Pick a square area of the image to be your avatar" +msgstr "" + +#: actions/avatarsettings.php:343 actions/grouplogo.php:380 +msgid "Lost our file data." +msgstr "Kollet eo bet roadennoù." + +#: actions/avatarsettings.php:366 +msgid "Avatar updated." +msgstr "Hizivaet eo bet an avatar." + +#: actions/avatarsettings.php:369 +msgid "Failed updating avatar." +msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar." + +#: actions/avatarsettings.php:393 +msgid "Avatar deleted." +msgstr "Dilammet eo bet an Avatar." + +#: actions/block.php:69 +msgid "You already blocked that user." +msgstr "Stanket o peus dija an implijer-mañ." + +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 +msgid "Block user" +msgstr "Stankañ an implijer-mañ" + +#: actions/block.php:130 +msgid "" +"Are you sure you want to block this user? Afterwards, they will be " +"unsubscribed from you, unable to subscribe to you in the future, and you " +"will not be notified of any @-replies from them." +msgstr "" + +#: actions/block.php:143 actions/deleteapplication.php:153 +#: actions/deletenotice.php:145 actions/deleteuser.php:150 +#: actions/groupblock.php:178 +msgid "No" +msgstr "Ket" + +#: actions/block.php:143 actions/deleteuser.php:150 +msgid "Do not block this user" +msgstr "Arabat stankañ an implijer-mañ" + +#: actions/block.php:144 actions/deleteapplication.php:158 +#: actions/deletenotice.php:146 actions/deleteuser.php:151 +#: actions/groupblock.php:179 lib/repeatform.php:132 +msgid "Yes" +msgstr "Ya" + +#: actions/block.php:144 actions/groupmembers.php:355 lib/blockform.php:80 +msgid "Block this user" +msgstr "Stankañ an implijer-mañ" + +#: actions/block.php:167 +msgid "Failed to save block information." +msgstr "Diposubl eo enrollañ an titouroù stankañ." + +#: actions/blockedfromgroup.php:80 actions/blockedfromgroup.php:87 +#: actions/editgroup.php:100 actions/foafgroup.php:44 actions/foafgroup.php:62 +#: actions/foafgroup.php:69 actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:102 +#: actions/groupmembers.php:83 actions/groupmembers.php:90 +#: actions/grouprss.php:98 actions/grouprss.php:105 +#: actions/groupunblock.php:86 actions/joingroup.php:82 +#: actions/joingroup.php:93 actions/leavegroup.php:82 +#: actions/leavegroup.php:93 actions/makeadmin.php:86 +#: actions/showgroup.php:138 actions/showgroup.php:146 lib/command.php:212 +#: lib/command.php:260 +msgid "No such group." +msgstr "N'eus ket eus ar strollad-se." + +#: actions/blockedfromgroup.php:97 +#, php-format +msgid "%s blocked profiles" +msgstr "%s profil stanket" + +#: actions/blockedfromgroup.php:100 +#, php-format +msgid "%1$s blocked profiles, page %2$d" +msgstr "%1$s profil stanket, pajenn %2$d" + +#: actions/blockedfromgroup.php:115 +msgid "A list of the users blocked from joining this group." +msgstr "" +"Ur roll eus an implijerien evit pere eo stanket an enskrivadur d'ar strollad." + +#: actions/blockedfromgroup.php:288 +msgid "Unblock user from group" +msgstr "Distankañ implijer ar strollad" + +#: actions/blockedfromgroup.php:320 lib/unblockform.php:69 +msgid "Unblock" +msgstr "Distankañ" + +#: actions/blockedfromgroup.php:320 lib/unblockform.php:80 +msgid "Unblock this user" +msgstr "Distankañ an implijer-se" + +#: actions/bookmarklet.php:50 +msgid "Post to " +msgstr "Postañ war " + +#: actions/confirmaddress.php:75 +msgid "No confirmation code." +msgstr "Kod kadarnaat ebet." + +#: actions/confirmaddress.php:80 +msgid "Confirmation code not found." +msgstr "N'eo ket bet kavet ar c'hod kadarnaat." + +#: actions/confirmaddress.php:85 +msgid "That confirmation code is not for you!" +msgstr "N'eo ket ar c'hod-se evidoc'h !" + +#: actions/confirmaddress.php:90 +#, php-format +msgid "Unrecognized address type %s" +msgstr "N'eo ket bet anavezet seurt ar chomlec'h %s" + +#: actions/confirmaddress.php:94 +msgid "That address has already been confirmed." +msgstr "Kadarnaet eo bet dija ar chomlec'h-mañ." + +#: actions/confirmaddress.php:114 actions/emailsettings.php:296 +#: actions/emailsettings.php:427 actions/imsettings.php:258 +#: actions/imsettings.php:401 actions/othersettings.php:174 +#: actions/profilesettings.php:283 actions/smssettings.php:278 +#: actions/smssettings.php:420 +msgid "Couldn't update user." +msgstr "Diposubl eo hizivaat an implijer." + +#: actions/confirmaddress.php:126 actions/emailsettings.php:391 +#: actions/imsettings.php:363 actions/smssettings.php:382 +msgid "Couldn't delete email confirmation." +msgstr "Diposubl eo dilemel ar postel kadarnadur." + +#: actions/confirmaddress.php:144 +msgid "Confirm address" +msgstr "Chomlec'h kadarnaet" + +#: actions/confirmaddress.php:159 +#, php-format +msgid "The address \"%s\" has been confirmed for your account." +msgstr "Kadarnaet eo bet ar chomlec'h \"%s\" evit ho kont." + +#: actions/conversation.php:99 +msgid "Conversation" +msgstr "Kaozeadenn" + +#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 +msgid "Notices" +msgstr "Ali" + +#: actions/deleteapplication.php:63 +msgid "You must be logged in to delete an application." +msgstr "Rankout a reoc'h bezañ kevreet evit dilemel ur poellad." + +#: actions/deleteapplication.php:71 +msgid "Application not found." +msgstr "N'eo ket bet kavet ar poellad" + +#: actions/deleteapplication.php:78 actions/editapplication.php:77 +#: actions/showapplication.php:94 +msgid "You are not the owner of this application." +msgstr "N'oc'h ket perc'henn ar poellad-se." + +#: actions/deleteapplication.php:102 actions/editapplication.php:127 +#: actions/newapplication.php:110 actions/showapplication.php:118 +#: lib/action.php:1217 +msgid "There was a problem with your session token." +msgstr "" + +#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 +msgid "Delete application" +msgstr "Dilemel ar poelad" + +#: actions/deleteapplication.php:149 +msgid "" +"Are you sure you want to delete this application? This will clear all data " +"about the application from the database, including all existing user " +"connections." +msgstr "" + +#: actions/deleteapplication.php:156 +msgid "Do not delete this application" +msgstr "Arabat eo dilemel ar poellad-mañ" + +#: actions/deleteapplication.php:160 +msgid "Delete this application" +msgstr "Dilemel ar poelad-se" + +#. TRANS: Client error message +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96 +#: actions/tagother.php:33 actions/unsubscribe.php:52 +#: lib/adminpanelaction.php:73 lib/profileformaction.php:63 +#: lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Nann-luget." + +#: actions/deletenotice.php:71 +msgid "Can't delete this notice." +msgstr "Diposupl eo dilemel an ali-mañ." + +#: actions/deletenotice.php:103 +msgid "" +"You are about to permanently delete a notice. Once this is done, it cannot " +"be undone." +msgstr "" + +#: actions/deletenotice.php:109 actions/deletenotice.php:141 +msgid "Delete notice" +msgstr "Dilemel un ali" + +#: actions/deletenotice.php:144 +msgid "Are you sure you want to delete this notice?" +msgstr "Ha sur oc'h ho peus c'hoant dilemel an ali-mañ ?" + +#: actions/deletenotice.php:145 +msgid "Do not delete this notice" +msgstr "Arabat dilemel an ali-mañ" + +#: actions/deletenotice.php:146 lib/noticelist.php:655 +msgid "Delete this notice" +msgstr "Dilemel an ali-mañ" + +#: actions/deleteuser.php:67 +msgid "You cannot delete users." +msgstr "Ne c'helloc'h ket diverkañ implijerien" + +#: actions/deleteuser.php:74 +msgid "You can only delete local users." +msgstr "Ne c'helloc'h nemet dilemel an implijerien lec'hel." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "Diverkañ an implijer" + +#: actions/deleteuser.php:136 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:151 lib/deleteuserform.php:77 +msgid "Delete this user" +msgstr "Diverkañ an implijer-se" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/groupnav.php:119 +msgid "Design" +msgstr "Design" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "Arventennoù design evit al lec'hienn StatusNet-mañ." + +#: actions/designadminpanel.php:275 +msgid "Invalid logo URL." +msgstr "URL fall evit al logo." + +#: actions/designadminpanel.php:279 +#, php-format +msgid "Theme not available: %s" +msgstr "N'eus ket tu kaout an dodenn : %s" + +#: actions/designadminpanel.php:375 +msgid "Change logo" +msgstr "Cheñch al logo" + +#: actions/designadminpanel.php:380 +msgid "Site logo" +msgstr "Logo al lec'hienn" + +#: actions/designadminpanel.php:387 +msgid "Change theme" +msgstr "Lakaat un dodenn all" + +#: actions/designadminpanel.php:404 +msgid "Site theme" +msgstr "Dodenn al lec'hienn" + +#: actions/designadminpanel.php:405 +msgid "Theme for the site." +msgstr "Dodenn evit al lec'hienn." + +#: actions/designadminpanel.php:417 lib/designsettings.php:101 +msgid "Change background image" +msgstr "Kemmañ ar skeudenn foñs" + +#: actions/designadminpanel.php:422 actions/designadminpanel.php:497 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Background" + +#: actions/designadminpanel.php:427 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" + +#: actions/designadminpanel.php:457 lib/designsettings.php:139 +msgid "On" +msgstr "Gweredekaet" + +#: actions/designadminpanel.php:473 lib/designsettings.php:155 +msgid "Off" +msgstr "Diweredekaet" + +#: actions/designadminpanel.php:474 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Gweredekaat pe diweredekaat ar skeudenn foñs." + +#: actions/designadminpanel.php:479 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:488 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Kemmañ al livioù" + +#: actions/designadminpanel.php:510 lib/designsettings.php:191 +msgid "Content" +msgstr "Endalc'h" + +#: actions/designadminpanel.php:523 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Barenn kostez" + +#: actions/designadminpanel.php:536 lib/designsettings.php:217 +msgid "Text" +msgstr "Testenn" + +#: actions/designadminpanel.php:549 lib/designsettings.php:230 +msgid "Links" +msgstr "Liammoù" + +#: actions/designadminpanel.php:577 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Implijout an talvoudoù dre ziouer" + +#: actions/designadminpanel.php:578 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "Adlakaat an neuz dre ziouer." + +#: actions/designadminpanel.php:584 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Adlakaat an arventennoù dre ziouer" + +#: actions/designadminpanel.php:586 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 +#: actions/tagother.php:154 actions/useradminpanel.php:294 +#: lib/applicationeditform.php:333 lib/applicationeditform.php:334 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Enrollañ" + +#: actions/designadminpanel.php:587 lib/designsettings.php:257 +msgid "Save design" +msgstr "Enrollañ an design" + +#: actions/disfavor.php:81 +msgid "This notice is not a favorite!" +msgstr "N'eo ket an ali-mañ ur pennroll !" + +#: actions/disfavor.php:94 +msgid "Add to favorites" +msgstr "Ouzhpennañ d'ar pennrolloù" + +#: actions/doc.php:158 +#, php-format +msgid "No such document \"%s\"" +msgstr "N'eo ket bet kavet ar restr \"%s\"" + +#: actions/editapplication.php:54 +msgid "Edit Application" +msgstr "Kemmañ ar poellad" + +#: actions/editapplication.php:66 +msgid "You must be logged in to edit an application." +msgstr "Ret eo bezañ kevreet evit kemmañ ur poellad." + +#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 +#: actions/showapplication.php:87 +msgid "No such application." +msgstr "N'eus ket eus an arload-mañ." + +#: actions/editapplication.php:161 +msgid "Use this form to edit your application." +msgstr "Implijit ar furmskrid-mañ evit kemmañ ho poellad." + +#: actions/editapplication.php:177 actions/newapplication.php:159 +msgid "Name is required." +msgstr "Ret eo lakaat un anv." + +#: actions/editapplication.php:180 actions/newapplication.php:165 +msgid "Name is too long (max 255 chars)." +msgstr "Re hir eo an anv (255 arouezenn d'ar muiañ)." + +#: actions/editapplication.php:183 actions/newapplication.php:162 +msgid "Name already in use. Try another one." +msgstr "Implijet eo dija an anv-mañ. Klaskit unan all." + +#: actions/editapplication.php:186 actions/newapplication.php:168 +msgid "Description is required." +msgstr "Ezhomm 'zo un deskrivadur." + +#: actions/editapplication.php:194 +msgid "Source URL is too long." +msgstr "Mammenn URL re hir." + +#: actions/editapplication.php:200 actions/newapplication.php:185 +msgid "Source URL is not valid." +msgstr "N'eo ket mat an URL mammenn." + +#: actions/editapplication.php:203 actions/newapplication.php:188 +msgid "Organization is required." +msgstr "Ezhomm 'zo eus an aozadur." + +#: actions/editapplication.php:206 actions/newapplication.php:191 +msgid "Organization is too long (max 255 chars)." +msgstr "Re hir eo an aozadur (255 arouezenn d'ar muiañ)." + +#: actions/editapplication.php:209 actions/newapplication.php:194 +msgid "Organization homepage is required." +msgstr "Ret eo kaout pajenn degemer an aozadur." + +#: actions/editapplication.php:218 actions/newapplication.php:206 +msgid "Callback is too long." +msgstr "Rez hir eo ar c'hounadur (Callback)." + +#: actions/editapplication.php:225 actions/newapplication.php:215 +msgid "Callback URL is not valid." +msgstr "N'eo ket mat an URL kounadur (Callback)." + +#: actions/editapplication.php:258 +msgid "Could not update application." +msgstr "Diposubl eo hizivaat ar poellad" + +#: actions/editgroup.php:56 +#, php-format +msgid "Edit %s group" +msgstr "Kemmañ ar strollad %s" + +#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65 +msgid "You must be logged in to create a group." +msgstr "Rankout a reoc'h bezañ luget evit krouiñ ur strollad." + +#: actions/editgroup.php:107 actions/editgroup.php:172 +#: actions/groupdesignsettings.php:107 actions/grouplogo.php:109 +msgid "You must be an admin to edit the group." +msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad." + +#: actions/editgroup.php:158 +msgid "Use this form to edit the group." +msgstr "Leunit ar furmskrid-mañ evit kemmañ dibarzhioù ar strollad." + +#: actions/editgroup.php:205 actions/newgroup.php:145 +#, php-format +msgid "description is too long (max %d chars)." +msgstr "re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." + +#: actions/editgroup.php:258 +msgid "Could not update group." +msgstr "Diposubl eo hizivaat ar strollad." + +#: actions/editgroup.php:264 classes/User_group.php:493 +msgid "Could not create aliases." +msgstr "Diposubl eo krouiñ an aliasoù." + +#: actions/editgroup.php:280 +msgid "Options saved." +msgstr "Enrollet eo bet ho dibarzhioù." + +#: actions/emailsettings.php:60 +msgid "Email settings" +msgstr "Arventennoù ar postel" + +#: actions/emailsettings.php:71 +#, php-format +msgid "Manage how you get email from %%site.name%%." +msgstr "Merañ ar posteloù a fell deoc'h resevout a-berzh %%site.name%%." + +#: actions/emailsettings.php:100 actions/imsettings.php:100 +#: actions/smssettings.php:104 +msgid "Address" +msgstr "Chomlec'h" + +#: actions/emailsettings.php:105 +msgid "Current confirmed email address." +msgstr "Chomlec'h postel gwiriekaet er mare-mañ." + +#: actions/emailsettings.php:107 actions/emailsettings.php:140 +#: actions/imsettings.php:108 actions/smssettings.php:115 +#: actions/smssettings.php:158 +msgid "Remove" +msgstr "Dilemel" + +#: actions/emailsettings.php:113 +msgid "" +"Awaiting confirmation on this address. Check your inbox (and spam box!) for " +"a message with further instructions." +msgstr "" + +#: actions/emailsettings.php:117 actions/imsettings.php:120 +#: actions/smssettings.php:126 lib/applicationeditform.php:331 +#: lib/applicationeditform.php:332 +msgid "Cancel" +msgstr "Nullañ" + +#: actions/emailsettings.php:121 +msgid "Email address" +msgstr "Chomlec'h postel" + +#: actions/emailsettings.php:123 +msgid "Email address, like \"UserName@example.org\"" +msgstr "Chomlec'h postel, evel \"AnvImplijer@example.org\"" + +#: actions/emailsettings.php:126 actions/imsettings.php:133 +#: actions/smssettings.php:145 +msgid "Add" +msgstr "Ouzhpennañ" + +#: actions/emailsettings.php:133 actions/smssettings.php:152 +msgid "Incoming email" +msgstr "Postel o tont" + +#: actions/emailsettings.php:138 actions/smssettings.php:157 +msgid "Send email to this address to post new notices." +msgstr "" + +#: actions/emailsettings.php:145 actions/smssettings.php:162 +msgid "Make a new email address for posting to; cancels the old one." +msgstr "" + +#: actions/emailsettings.php:148 actions/smssettings.php:164 +msgid "New" +msgstr "Nevez" + +#: actions/emailsettings.php:153 actions/imsettings.php:139 +#: actions/smssettings.php:169 +msgid "Preferences" +msgstr "Penndibaboù" + +#: actions/emailsettings.php:158 +msgid "Send me notices of new subscriptions through email." +msgstr "" + +#: actions/emailsettings.php:163 +msgid "Send me email when someone adds my notice as a favorite." +msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." + +#: actions/emailsettings.php:169 +msgid "Send me email when someone sends me a private message." +msgstr "Kas din ur postel pa gas unan bennak ur gemennadenn bersonel din." + +#: actions/emailsettings.php:174 +msgid "Send me email when someone sends me an \"@-reply\"." +msgstr "Kas din ur postel pa gas unan bennak ur \"@-respont\" din." + +#: actions/emailsettings.php:179 +msgid "Allow friends to nudge me and send me an email." +msgstr "" + +#: actions/emailsettings.php:185 +msgid "I want to post notices by email." +msgstr "C'hoant am eus kas va alioù dre bostel." + +#: actions/emailsettings.php:191 +msgid "Publish a MicroID for my email address." +msgstr "Embann ur MicroID evit ma chomlec'h postel." + +#: actions/emailsettings.php:302 actions/imsettings.php:264 +#: actions/othersettings.php:180 actions/smssettings.php:284 +msgid "Preferences saved." +msgstr "Penndibaboù enrollet" + +#: actions/emailsettings.php:320 +msgid "No email address." +msgstr "N'eus chomlec'h postel ebet." + +#: actions/emailsettings.php:327 +msgid "Cannot normalize that email address" +msgstr "" + +#: actions/emailsettings.php:331 actions/register.php:201 +#: actions/siteadminpanel.php:144 +msgid "Not a valid email address." +msgstr "N'eo ket ur chomlec'h postel reizh." + +#: actions/emailsettings.php:334 +msgid "That is already your email address." +msgstr "Ho postel eo dija." + +#: actions/emailsettings.php:337 +msgid "That email address already belongs to another user." +msgstr "" + +#: actions/emailsettings.php:353 actions/imsettings.php:319 +#: actions/smssettings.php:337 +msgid "Couldn't insert confirmation code." +msgstr "" + +#: actions/emailsettings.php:359 +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/emailsettings.php:379 actions/imsettings.php:351 +#: actions/smssettings.php:370 +msgid "No pending confirmation to cancel." +msgstr "" + +#: actions/emailsettings.php:383 actions/imsettings.php:355 +msgid "That is the wrong IM address." +msgstr "N'eo ket mat ar chomlec'h postelerezh prim." + +#: actions/emailsettings.php:395 actions/imsettings.php:367 +#: actions/smssettings.php:386 +msgid "Confirmation cancelled." +msgstr "Nullet eo bet ar gadarnadenn." + +#: actions/emailsettings.php:413 +msgid "That is not your email address." +msgstr "N'eo ket ho postel." + +#: actions/emailsettings.php:432 actions/imsettings.php:408 +#: actions/smssettings.php:425 +msgid "The address was removed." +msgstr "Dilamet eo bet ar chomlec'h." + +#: actions/emailsettings.php:446 actions/smssettings.php:518 +msgid "No incoming email address." +msgstr "" + +#: actions/emailsettings.php:456 actions/emailsettings.php:478 +#: actions/smssettings.php:528 actions/smssettings.php:552 +msgid "Couldn't update user record." +msgstr "" + +#: actions/emailsettings.php:459 actions/smssettings.php:531 +msgid "Incoming email address removed." +msgstr "" + +#: actions/emailsettings.php:481 actions/smssettings.php:555 +msgid "New incoming email address added." +msgstr "" + +#: actions/favor.php:79 +msgid "This notice is already a favorite!" +msgstr "Ouzhpennet eo bet an ali-mañ d'ho pennrolloù dija !" + +#: actions/favor.php:92 lib/disfavorform.php:140 +msgid "Disfavor favorite" +msgstr "" + +#: actions/favorited.php:65 lib/popularnoticesection.php:91 +#: lib/publicgroupnav.php:93 +msgid "Popular notices" +msgstr "Alioù poblek" + +#: actions/favorited.php:67 +#, php-format +msgid "Popular notices, page %d" +msgstr "Alioù poblek, pajenn %d" + +#: actions/favorited.php:79 +msgid "The most popular notices on the site right now." +msgstr "An alioù ar brudetañ el lec'hienn er mare-mañ." + +#: actions/favorited.php:150 +msgid "Favorite notices appear on this page but no one has favorited one yet." +msgstr "" + +#: actions/favorited.php:153 +msgid "" +"Be the first to add a notice to your favorites by clicking the fave button " +"next to any notice you like." +msgstr "" + +#: actions/favorited.php:156 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to add a " +"notice to your favorites!" +msgstr "" + +#: actions/favoritesrss.php:111 actions/showfavorites.php:77 +#: lib/personalgroupnav.php:115 +#, php-format +msgid "%s's favorite notices" +msgstr "Alioù pennrollet eus %s" + +#: actions/favoritesrss.php:115 +#, php-format +msgid "Updates favored by %1$s on %2$s!" +msgstr "Hizivadennoù brientek gant %1$s war %2$s !" + +#: actions/featured.php:69 lib/featureduserssection.php:87 +#: lib/publicgroupnav.php:89 +msgid "Featured users" +msgstr "" + +#: actions/featured.php:71 +#, php-format +msgid "Featured users, page %d" +msgstr "" + +#: actions/featured.php:99 +#, php-format +msgid "A selection of some great users on %s" +msgstr "Un dibab eus implijerien vat e %s" + +#: actions/file.php:34 +msgid "No notice ID." +msgstr "ID ali ebet." + +#: actions/file.php:38 +msgid "No notice." +msgstr "Ali ebet." + +#: actions/file.php:42 +msgid "No attachments." +msgstr "N'eus restr stag ebet." + +#: actions/file.php:51 +msgid "No uploaded attachments." +msgstr "" + +#: actions/finishremotesubscribe.php:69 +msgid "Not expecting this response!" +msgstr "Ne oa ket gortozet ar respont-mañ !" + +#: actions/finishremotesubscribe.php:80 +msgid "User being listened to does not exist." +msgstr "" + +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +msgid "You can use the local subscription!" +msgstr "" + +#: actions/finishremotesubscribe.php:99 +msgid "That user has blocked you from subscribing." +msgstr "An implijer-se en deus ho stanket evit en enskrivañ." + +#: actions/finishremotesubscribe.php:110 +msgid "You are not authorized." +msgstr "N'oc'h ket aotreet." + +#: actions/finishremotesubscribe.php:113 +msgid "Could not convert request token to access token." +msgstr "" + +#: actions/finishremotesubscribe.php:118 +msgid "Remote service uses unknown version of OMB protocol." +msgstr "" + +#: actions/finishremotesubscribe.php:138 lib/oauthstore.php:306 +msgid "Error updating remote profile" +msgstr "" + +#: actions/getfile.php:79 +msgid "No such file." +msgstr "Restr ezvezant." + +#: actions/getfile.php:83 +msgid "Cannot read file." +msgstr "Diposupl eo lenn ar restr." + +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Fichenn direizh." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "An implijer-mañ n'eus profil ebet dezhañ." + +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "N'eo bet resisaet profil ebet" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: actions/unsubscribe.php:84 lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "N'eus profil ebet gant an ID-mañ." + +#: actions/groupblock.php:81 actions/groupunblock.php:81 +#: actions/makeadmin.php:81 +msgid "No group specified." +msgstr "N'eo bet resisaet strollad ebet" + +#: actions/groupblock.php:91 +msgid "Only an admin can block group members." +msgstr "N'eus neme ur merour a c'hell stankañ izili ur strollad." + +#: actions/groupblock.php:95 +msgid "User is already blocked from group." +msgstr "An implijer-mañ a zo stanket dija eus ar strollad." + +#: actions/groupblock.php:100 +msgid "User is not a member of group." +msgstr "N'eo ket an implijer-mañ ezel eus ur strollad." + +#: actions/groupblock.php:136 actions/groupmembers.php:323 +msgid "Block user from group" +msgstr "Stankañ an implijer-mañ eus ar strollad" + +#: actions/groupblock.php:162 +#, php-format +msgid "" +"Are you sure you want to block user \"%1$s\" from the group \"%2$s\"? They " +"will be removed from the group, unable to post, and unable to subscribe to " +"the group in the future." +msgstr "" + +#: actions/groupblock.php:178 +msgid "Do not block this user from this group" +msgstr "Arabat stankañ an implijer-mañ eus ar strollad." + +#: actions/groupblock.php:179 +msgid "Block this user from this group" +msgstr "Stankañ an implijer-mañ eus ar strollad-se" + +#: actions/groupblock.php:196 +msgid "Database error blocking user from group." +msgstr "" + +#: actions/groupbyid.php:74 actions/userbyid.php:70 +msgid "No ID." +msgstr "ID ebet" + +#: actions/groupdesignsettings.php:68 +msgid "You must be logged in to edit a group." +msgstr "" + +#: actions/groupdesignsettings.php:144 +msgid "Group design" +msgstr "Design ar strollad" + +#: actions/groupdesignsettings.php:155 +msgid "" +"Customize the way your group looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:186 +#: lib/designsettings.php:391 lib/designsettings.php:413 +msgid "Couldn't update your design." +msgstr "Diposubl eo hizivaat ho design." + +#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +msgid "Design preferences saved." +msgstr "Enrollet eo bet an arventennoù design." + +#: actions/grouplogo.php:142 actions/grouplogo.php:195 +msgid "Group logo" +msgstr "Logo ar strollad" + +#: actions/grouplogo.php:153 +#, php-format +msgid "" +"You can upload a logo image for your group. The maximum file size is %s." +msgstr "" + +#: actions/grouplogo.php:181 +msgid "User without matching profile." +msgstr "" + +#: actions/grouplogo.php:365 +msgid "Pick a square area of the image to be the logo." +msgstr "" + +#: actions/grouplogo.php:399 +msgid "Logo updated." +msgstr "Logo hizivaet." + +#: actions/grouplogo.php:401 +msgid "Failed updating logo." +msgstr "N'eo ket bet kaset da benn an hizivadenn." + +#: actions/groupmembers.php:100 lib/groupnav.php:92 +#, php-format +msgid "%s group members" +msgstr "Izili ar strollad %s" + +#: actions/groupmembers.php:103 +#, php-format +msgid "%1$s group members, page %2$d" +msgstr "Izili ar strollad %1$s, pajenn %2$d" + +#: actions/groupmembers.php:118 +msgid "A list of the users in this group." +msgstr "Roll an implijerien enrollet er strollad-mañ." + +#: actions/groupmembers.php:182 lib/groupnav.php:107 +msgid "Admin" +msgstr "Merañ" + +#: actions/groupmembers.php:355 lib/blockform.php:69 +msgid "Block" +msgstr "Stankañ" + +#: actions/groupmembers.php:450 +msgid "Make user an admin of the group" +msgstr "Lakaat an implijer da vezañ ur merour eus ar strollad" + +#: actions/groupmembers.php:482 +msgid "Make Admin" +msgstr "Lakaat ur merour" + +#: actions/groupmembers.php:482 +msgid "Make this user an admin" +msgstr "Lakaat an implijer-mañ da verour" + +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Oberezhioù %s" + +#: actions/grouprss.php:140 +#, php-format +msgid "Updates from members of %1$s on %2$s!" +msgstr "Hizivadenn izili %1$s e %2$s !" + +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 +#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 +msgid "Groups" +msgstr "Strolladoù" + +#: actions/groups.php:64 +#, php-format +msgid "Groups, page %d" +msgstr "Strollad, pajenn %d" + +#: actions/groups.php:90 +#, php-format +msgid "" +"%%%%site.name%%%% groups let you find and talk with people of similar " +"interests. After you join a group you can send messages to all other members " +"using the syntax \"!groupname\". Don't see a group you like? Try [searching " +"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" +"%%%%)" +msgstr "" + +#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 +msgid "Create a new group" +msgstr "Krouiñ ur strollad nevez" + +#: actions/groupsearch.php:52 +#, php-format +msgid "" +"Search for groups on %%site.name%% by their name, location, or description. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/groupsearch.php:58 +msgid "Group search" +msgstr "Klask strolladoù" + +#: actions/groupsearch.php:79 actions/noticesearch.php:117 +#: actions/peoplesearch.php:83 +msgid "No results." +msgstr "Disoc'h ebet." + +#: actions/groupsearch.php:82 +#, php-format +msgid "" +"If you can't find the group you're looking for, you can [create it](%%action." +"newgroup%%) yourself." +msgstr "" +"Ma ne gavoc'h ket ar strollad emaoc'h o klask, neuze e c'helloc'h [krouiñ " +"anezhañ](%%action.newgroup%%)." + +#: actions/groupsearch.php:85 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and [create the group](%%" +"action.newgroup%%) yourself!" +msgstr "" + +#: actions/groupunblock.php:91 +msgid "Only an admin can unblock group members." +msgstr "N'eus nemet ur merour a c'hell distankañ izili ur strollad." + +#: actions/groupunblock.php:95 +msgid "User is not blocked from group." +msgstr "N'eo ket stanket an implijer-mañ eus ar strollad." + +#: actions/groupunblock.php:128 actions/unblock.php:86 +msgid "Error removing the block." +msgstr "Ur fazi a zo bet e-pad nulladenn ar stankadenn." + +#: actions/imsettings.php:59 +msgid "IM settings" +msgstr "Arventennoù ar bostelerezh prim" + +#: actions/imsettings.php:70 +#, php-format +msgid "" +"You can send and receive notices through Jabber/GTalk [instant messages](%%" +"doc.im%%). Configure your address and settings below." +msgstr "" + +#: actions/imsettings.php:89 +msgid "IM is not available." +msgstr "Dizimplijadus eo ar bostelerezh prim" + +#: actions/imsettings.php:106 +msgid "Current confirmed Jabber/GTalk address." +msgstr "Chomlec'h Jabber/GTalk kadarnaet er mare-mañ." + +#: actions/imsettings.php:114 +#, php-format +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 "" + +#: actions/imsettings.php:124 +msgid "IM address" +msgstr "Chomlec'h postelerezh prim" + +#: actions/imsettings.php:126 +#, php-format +msgid "" +"Jabber or GTalk address, like \"UserName@example.org\". First, make sure to " +"add %s to your buddy list in your IM client or on GTalk." +msgstr "" + +#: actions/imsettings.php:143 +msgid "Send me notices through Jabber/GTalk." +msgstr "Kas din an alioù dre Jabber/GTalk." + +#: actions/imsettings.php:148 +msgid "Post a notice when my Jabber/GTalk status changes." +msgstr "" + +#: actions/imsettings.php:153 +msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." +msgstr "" + +#: actions/imsettings.php:159 +msgid "Publish a MicroID for my Jabber/GTalk address." +msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk." + +#: actions/imsettings.php:285 +msgid "No Jabber ID." +msgstr "ID Jabber ebet." + +#: actions/imsettings.php:292 +msgid "Cannot normalize that Jabber ID" +msgstr "Diposubl eo implijout an ID Jabber-mañ" + +#: actions/imsettings.php:296 +msgid "Not a valid Jabber ID" +msgstr "N'eo ket un ID Jabber reizh." + +#: actions/imsettings.php:299 +msgid "That is already your Jabber ID." +msgstr "Ho ID Jabber eo dija" + +#: actions/imsettings.php:302 +msgid "Jabber ID already belongs to another user." +msgstr "Implijet eo an Jabber ID-mañ gant un implijer all." + +#: actions/imsettings.php:327 +#, php-format +msgid "" +"A confirmation code was sent to the IM address you added. You must approve %" +"s for sending messages to you." +msgstr "" + +#: actions/imsettings.php:387 +msgid "That is not your Jabber ID." +msgstr "N'eo ket ho ID Jabber." + +#: actions/inbox.php:59 +#, php-format +msgid "Inbox for %1$s - page %2$d" +msgstr "Boest degemer %1$s - pajenn %2$d" + +#: actions/inbox.php:62 +#, php-format +msgid "Inbox for %s" +msgstr "Bost resevout %s" + +#: actions/inbox.php:115 +msgid "This is your inbox, which lists your incoming private messages." +msgstr "" + +#: actions/invite.php:39 +msgid "Invites have been disabled." +msgstr "Diweredekaat eo bet ar bedadennoù." + +#: actions/invite.php:41 +#, php-format +msgid "You must be logged in to invite other users to use %s" +msgstr "" + +#: actions/invite.php:72 +#, php-format +msgid "Invalid email address: %s" +msgstr "Fall eo ar postel : %s" + +#: actions/invite.php:110 +msgid "Invitation(s) sent" +msgstr "Kaset eo bet ar bedadenn(où)" + +#: actions/invite.php:112 +msgid "Invite new users" +msgstr "Pediñ implijerien nevez" + +#: actions/invite.php:128 +msgid "You are already subscribed to these users:" +msgstr "Koumanantet oc'h dija d'an implijerien-mañ :" + +#: actions/invite.php:131 actions/invite.php:139 lib/command.php:306 +#, php-format +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: actions/invite.php:136 +msgid "" +"These people are already users and you were automatically subscribed to them:" +msgstr "" +"Implijerien eo dija an dud-mañ ha koumanantet oc'h bet ez emgefre d'an " +"implijerien da-heul :" + +#: actions/invite.php:144 +msgid "Invitation(s) sent to the following people:" +msgstr "Pedadennoù bet kaset d'an implijerien da-heul :" + +#: actions/invite.php:150 +msgid "" +"You will be notified when your invitees accept the invitation and register " +"on the site. Thanks for growing the community!" +msgstr "" + +#: actions/invite.php:162 +msgid "" +"Use this form to invite your friends and colleagues to use this service." +msgstr "" + +#: actions/invite.php:187 +msgid "Email addresses" +msgstr "Chomlec'hioù postel" + +#: actions/invite.php:189 +msgid "Addresses of friends to invite (one per line)" +msgstr "Chomlec'hioù an implijerien da bediñ (unan dre linenn)" + +#: actions/invite.php:192 +msgid "Personal message" +msgstr "Kemenadenn bersonel" + +#: actions/invite.php:194 +msgid "Optionally add a personal message to the invitation." +msgstr "" + +#. TRANS: Send button for inviting friends +#: actions/invite.php:198 +msgctxt "BUTTON" +msgid "Send" +msgstr "Kas" + +#: actions/invite.php:227 +#, php-format +msgid "%1$s has invited you to join them on %2$s" +msgstr "%1$s a bed ac'hanoc'h d'en em enskrivañ war %2$s" + +#: actions/invite.php:229 +#, php-format +msgid "" +"%1$s has invited you to join them on %2$s (%3$s).\n" +"\n" +"%2$s is a micro-blogging service that lets you keep up-to-date with people " +"you know and people who interest you.\n" +"\n" +"You can also share news about yourself, your thoughts, or your life online " +"with people who know about you. It's also great for meeting new people who " +"share your interests.\n" +"\n" +"%1$s said:\n" +"\n" +"%4$s\n" +"\n" +"You can see %1$s's profile page on %2$s here:\n" +"\n" +"%5$s\n" +"\n" +"If you'd like to try the service, click on the link below to accept the " +"invitation.\n" +"\n" +"%6$s\n" +"\n" +"If not, you can ignore this message. Thanks for your patience and your " +"time.\n" +"\n" +"Sincerely, %2$s\n" +msgstr "" + +#: actions/joingroup.php:60 +msgid "You must be logged in to join a group." +msgstr "Rankout a reoc'h bezañ luget evit mont en ur strollad." + +#: actions/joingroup.php:88 actions/leavegroup.php:88 +msgid "No nickname or ID." +msgstr "Lesanv pe ID ebet." + +#: actions/joingroup.php:141 +#, php-format +msgid "%1$s joined group %2$s" +msgstr "%1$s a zo bet er strollad %2$s" + +#: actions/leavegroup.php:60 +msgid "You must be logged in to leave a group." +msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat ur strollad" + +#: actions/leavegroup.php:100 lib/command.php:265 +msgid "You are not a member of that group." +msgstr "N'oc'h ket un ezel eus ar strollad-mañ." + +#: actions/leavegroup.php:137 +#, php-format +msgid "%1$s left group %2$s" +msgstr "%1$s en deus kuitaet ar strollad %2$s" + +#: actions/login.php:80 actions/otp.php:62 actions/register.php:137 +msgid "Already logged in." +msgstr "Kevreet oc'h dija." + +#: actions/login.php:126 +msgid "Incorrect username or password." +msgstr "Anv implijer pe ger-tremen direizh." + +#: actions/login.php:132 actions/otp.php:120 +msgid "Error setting user. You are probably not authorized." +msgstr "" +"Ur fazi 'zo bet e-pad hizivadenn an implijer. Moarvat n'oc'h ket aotreet " +"evit en ober." + +#: actions/login.php:188 actions/login.php:241 lib/logingroupnav.php:79 +msgid "Login" +msgstr "Kevreañ" + +#: actions/login.php:227 +msgid "Login to site" +msgstr "Kevreañ d'al lec'hienn" + +#: actions/login.php:236 actions/register.php:478 +msgid "Remember me" +msgstr "Kaout soñj" + +#: actions/login.php:237 actions/register.php:480 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Digeriñ va dalc'h war-eeun ar wechoù o tont ; arabat en ober war " +"urzhiataeroù rannet pe publik !" + +#: actions/login.php:247 +msgid "Lost or forgotten password?" +msgstr "Ha kollet o peus ho ker-tremen ?" + +#: actions/login.php:266 +msgid "" +"For security reasons, please re-enter your user name and password before " +"changing your settings." +msgstr "" +"Evit abegoù a surentezh, mar plij adlakait hoc'h anv implijer hag ho ker-" +"tremen a-benn enrollañ ho penndibaboù." + +#: actions/login.php:270 +#, php-format +msgid "" +"Login with your username and password. Don't have a username yet? [Register]" +"(%%action.register%%) a new account." +msgstr "" +"Kevreit gant ho anv implijer hag ho ker tremen. N'o peus ket a anv implijer " +"evit c'hoazh ? [Krouit](%%action.register%%) ur gont nevez." + +#: actions/makeadmin.php:92 +msgid "Only an admin can make another user an admin." +msgstr "N'eus nemet ur merour a c'hall lakaat un implijer all da vezañ merour." + +#: actions/makeadmin.php:96 +#, php-format +msgid "%1$s is already an admin for group \"%2$s\"." +msgstr "%1$s a zo dija merour ar strollad \"%2$s\"." + +#: actions/makeadmin.php:133 +#, php-format +msgid "Can't get membership record for %1$s in group %2$s." +msgstr "" + +#: actions/makeadmin.php:146 +#, php-format +msgid "Can't make %1$s an admin for group %2$s." +msgstr "Diposubl eo lakaat %1$s da merour ar strollad %2$s." + +#: actions/microsummary.php:69 +msgid "No current status" +msgstr "Statud ebet er mare-mañ" + +#: actions/newapplication.php:52 +msgid "New Application" +msgstr "Poellad nevez" + +#: actions/newapplication.php:64 +msgid "You must be logged in to register an application." +msgstr "Ret eo deoc'h bezañ luget evit enrollañ ur poellad." + +#: actions/newapplication.php:143 +msgid "Use this form to register a new application." +msgstr "Implijit ar furmskrid-mañ evit enskrivañ ur poellad nevez." + +#: actions/newapplication.php:176 +msgid "Source URL is required." +msgstr "Ezhomm 'zo eus ar vammenn URL." + +#: actions/newapplication.php:258 actions/newapplication.php:267 +msgid "Could not create application." +msgstr "N'eo ket posubl krouiñ ar poellad." + +#: actions/newgroup.php:53 +msgid "New group" +msgstr "Strollad nevez" + +#: actions/newgroup.php:110 +msgid "Use this form to create a new group." +msgstr "Implijit ar furmskrid-mañ a-benn krouiñ ur strollad nevez." + +#: actions/newmessage.php:71 actions/newmessage.php:231 +msgid "New message" +msgstr "Kemennadenn nevez" + +#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:358 +msgid "You can't send a message to this user." +msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." + +#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:342 +#: lib/command.php:475 +msgid "No content!" +msgstr "Goullo eo !" + +#: actions/newmessage.php:158 +msgid "No recipient specified." +msgstr "N'o peus ket lakaet a resever." + +#: actions/newmessage.php:164 lib/command.php:361 +msgid "" +"Don't send a message to yourself; just say it to yourself quietly instead." +msgstr "" +"Na gasit ket a gemennadenn deoc'h c'hwi ho unan ; lavarit an traoù-se en ho " +"penn kentoc'h." + +#: actions/newmessage.php:181 +msgid "Message sent" +msgstr "Kaset eo bet ar gemenadenn" + +#: actions/newmessage.php:185 +#, php-format +msgid "Direct message to %s sent." +msgstr "Kaset eo bet da %s ar gemennadenn war-eeun." + +#: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170 +msgid "Ajax Error" +msgstr "Fazi Ajax" + +#: actions/newnotice.php:69 +msgid "New notice" +msgstr "Ali nevez" + +#: actions/newnotice.php:211 +msgid "Notice posted" +msgstr "Ali embannet" + +#: actions/noticesearch.php:68 +#, php-format +msgid "" +"Search for notices on %%site.name%% by their contents. Separate search terms " +"by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/noticesearch.php:78 +msgid "Text search" +msgstr "Klask un destenn" + +#: actions/noticesearch.php:91 +#, php-format +msgid "Search results for \"%1$s\" on %2$s" +msgstr "Disoc'hoù ar c'hlask evit \"%1$s\" e %2$s" + +#: actions/noticesearch.php:121 +#, php-format +msgid "" +"Be the first to [post on this topic](%%%%action.newnotice%%%%?" +"status_textarea=%s)!" +msgstr "" + +#: actions/noticesearch.php:124 +#, php-format +msgid "" +"Why not [register an account](%%%%action.register%%%%) and be the first to " +"[post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!" +msgstr "" + +#: actions/noticesearchrss.php:96 +#, php-format +msgid "Updates with \"%s\"" +msgstr "Hizivadenn gant \"%s\"" + +#: actions/noticesearchrss.php:98 +#, php-format +msgid "Updates matching search term \"%1$s\" on %2$s!" +msgstr "" + +#: actions/nudge.php:85 +msgid "" +"This user doesn't allow nudges or hasn't confirmed or set his email yet." +msgstr "" + +#: actions/nudge.php:94 +msgid "Nudge sent" +msgstr "Kaset eo bet ar blinkadenn" + +#: actions/nudge.php:97 +msgid "Nudge sent!" +msgstr "Kaset eo bet ar blinkadenn !" + +#: actions/oauthappssettings.php:59 +msgid "You must be logged in to list your applications." +msgstr "Rankout a reoc'h bezañ kevreet evit rollañ ho poelladoù." + +#: actions/oauthappssettings.php:74 +msgid "OAuth applications" +msgstr "Poelladoù OAuth" + +#: actions/oauthappssettings.php:85 +msgid "Applications you have registered" +msgstr "Ar poelladoù o peus enrollet" + +#: actions/oauthappssettings.php:135 +#, php-format +msgid "You have not registered any applications yet." +msgstr "N'o peus enrollet poellad ebet evit poent." + +#: actions/oauthconnectionssettings.php:72 +msgid "Connected applications" +msgstr "Poeladoù kevreet." + +#: actions/oauthconnectionssettings.php:83 +msgid "You have allowed the following applications to access you account." +msgstr "" + +#: actions/oauthconnectionssettings.php:175 +msgid "You are not a user of that application." +msgstr "N'oc'h ket un implijer eus ar poellad-mañ." + +#: actions/oauthconnectionssettings.php:186 +msgid "Unable to revoke access for app: " +msgstr "Dibosupl eo nullañ moned ar poellad : " + +#: actions/oauthconnectionssettings.php:198 +#, php-format +msgid "You have not authorized any applications to use your account." +msgstr "" + +#: actions/oauthconnectionssettings.php:211 +msgid "Developers can edit the registration settings for their applications " +msgstr "" + +#: actions/oembed.php:79 actions/shownotice.php:100 +msgid "Notice has no profile" +msgstr "N'en deus ket an ali a profil" + +#: actions/oembed.php:86 actions/shownotice.php:180 +#, php-format +msgid "%1$s's status on %2$s" +msgstr "Statud %1$s war %2$s" + +#: actions/oembed.php:157 +msgid "content type " +msgstr "seurt an danvez " + +#: actions/oembed.php:160 +msgid "Only " +msgstr "Hepken " + +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 +msgid "Not a supported data format." +msgstr "" + +#: actions/opensearch.php:64 +msgid "People Search" +msgstr "Klask tud" + +#: actions/opensearch.php:67 +msgid "Notice Search" +msgstr "Klask alioù" + +#: actions/othersettings.php:60 +msgid "Other settings" +msgstr "Arventennoù all" + +#: actions/othersettings.php:71 +msgid "Manage various other options." +msgstr "Dibarzhioù all da gefluniañ." + +#: actions/othersettings.php:108 +msgid " (free service)" +msgstr " (servij digoust)" + +#: actions/othersettings.php:116 +msgid "Shorten URLs with" +msgstr "" + +#: actions/othersettings.php:117 +msgid "Automatic shortening service to use." +msgstr "" + +#: actions/othersettings.php:122 +msgid "View profile designs" +msgstr "" + +#: actions/othersettings.php:123 +msgid "Show or hide profile designs." +msgstr "" + +#: actions/othersettings.php:153 +msgid "URL shortening service is too long (max 50 chars)." +msgstr "" + +#: actions/otp.php:69 +msgid "No user ID specified." +msgstr "N'eus bet diferet ID implijer ebet." + +#: actions/otp.php:83 +msgid "No login token specified." +msgstr "" + +#: actions/otp.php:90 +msgid "No login token requested." +msgstr "" + +#: actions/otp.php:95 +msgid "Invalid login token specified." +msgstr "" + +#: actions/otp.php:104 +msgid "Login token expired." +msgstr "" + +#: actions/outbox.php:58 +#, php-format +msgid "Outbox for %1$s - page %2$d" +msgstr "Boest kas %1$s - pajenn %2$d" + +#: actions/outbox.php:61 +#, php-format +msgid "Outbox for %s" +msgstr "Boest kas %s" + +#: actions/outbox.php:116 +msgid "This is your outbox, which lists private messages you have sent." +msgstr "" + +#: actions/passwordsettings.php:58 +msgid "Change password" +msgstr "Cheñch ger-tremen" + +#: actions/passwordsettings.php:69 +msgid "Change your password." +msgstr "Kemmañ ho ger tremen." + +#: actions/passwordsettings.php:96 actions/recoverpassword.php:231 +msgid "Password change" +msgstr "Kemmañ ar ger-tremen" + +#: actions/passwordsettings.php:104 +msgid "Old password" +msgstr "Ger-tremen kozh" + +#: actions/passwordsettings.php:108 actions/recoverpassword.php:235 +msgid "New password" +msgstr "Ger-tremen nevez" + +#: actions/passwordsettings.php:109 +msgid "6 or more characters" +msgstr "6 arouezenn pe muioc'h" + +#: actions/passwordsettings.php:112 actions/recoverpassword.php:239 +#: actions/register.php:433 actions/smssettings.php:134 +msgid "Confirm" +msgstr "Kadarnaat" + +#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +msgid "Same as password above" +msgstr "Memestra eget ar ger tremen a-us" + +#: actions/passwordsettings.php:117 +msgid "Change" +msgstr "Kemmañ" + +#: actions/passwordsettings.php:154 actions/register.php:230 +msgid "Password must be 6 or more characters." +msgstr "" + +#: actions/passwordsettings.php:157 actions/register.php:233 +msgid "Passwords don't match." +msgstr "Ne glot ket ar gerioù-tremen." + +#: actions/passwordsettings.php:165 +msgid "Incorrect old password" +msgstr "ger-termen kozh amreizh" + +#: actions/passwordsettings.php:181 +msgid "Error saving user; invalid." +msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." + +#: actions/passwordsettings.php:186 actions/recoverpassword.php:368 +msgid "Can't save new password." +msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." + +#: actions/passwordsettings.php:192 actions/recoverpassword.php:211 +msgid "Password saved." +msgstr "Ger-tremen enrollet." + +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 +msgid "Paths" +msgstr "Hentoù" + +#: actions/pathsadminpanel.php:70 +msgid "Path and server settings for this StatusNet site." +msgstr "" + +#: actions/pathsadminpanel.php:157 +#, php-format +msgid "Theme directory not readable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:163 +#, php-format +msgid "Avatar directory not writable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:169 +#, php-format +msgid "Background directory not writable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:177 +#, php-format +msgid "Locales directory not readable: %s" +msgstr "" + +#: actions/pathsadminpanel.php:183 +msgid "Invalid SSL server. The maximum length is 255 characters." +msgstr "" + +#: actions/pathsadminpanel.php:234 actions/siteadminpanel.php:58 +msgid "Site" +msgstr "Lec'hien" + +#: actions/pathsadminpanel.php:238 +msgid "Server" +msgstr "Servijer" + +#: actions/pathsadminpanel.php:238 +msgid "Site's server hostname." +msgstr "" + +#: actions/pathsadminpanel.php:242 +msgid "Path" +msgstr "Hent" + +#: actions/pathsadminpanel.php:242 +msgid "Site path" +msgstr "Hent al lec'hien" + +#: actions/pathsadminpanel.php:246 +msgid "Path to locales" +msgstr "" + +#: actions/pathsadminpanel.php:246 +msgid "Directory path to locales" +msgstr "" + +#: actions/pathsadminpanel.php:250 +msgid "Fancy URLs" +msgstr "URLioù brav" + +#: actions/pathsadminpanel.php:252 +msgid "Use fancy (more readable and memorable) URLs?" +msgstr "" + +#: actions/pathsadminpanel.php:259 +msgid "Theme" +msgstr "Danvez" + +#: actions/pathsadminpanel.php:264 +msgid "Theme server" +msgstr "Servijer danvezioù" + +#: actions/pathsadminpanel.php:268 +msgid "Theme path" +msgstr "Hentad an tem" + +#: actions/pathsadminpanel.php:272 +msgid "Theme directory" +msgstr "" + +#: actions/pathsadminpanel.php:279 +msgid "Avatars" +msgstr "Avataroù" + +#: actions/pathsadminpanel.php:284 +msgid "Avatar server" +msgstr "Servijer avatar" + +#: actions/pathsadminpanel.php:288 +msgid "Avatar path" +msgstr "" + +#: actions/pathsadminpanel.php:292 +msgid "Avatar directory" +msgstr "" + +#: actions/pathsadminpanel.php:301 +msgid "Backgrounds" +msgstr "Backgroundoù" + +#: actions/pathsadminpanel.php:305 +msgid "Background server" +msgstr "Servijer ar backgroundoù" + +#: actions/pathsadminpanel.php:309 +msgid "Background path" +msgstr "" + +#: actions/pathsadminpanel.php:313 +msgid "Background directory" +msgstr "" + +#: actions/pathsadminpanel.php:320 +msgid "SSL" +msgstr "SSL" + +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 +msgid "Never" +msgstr "Morse" + +#: actions/pathsadminpanel.php:324 +msgid "Sometimes" +msgstr "A-wechoù" + +#: actions/pathsadminpanel.php:325 +msgid "Always" +msgstr "Atav" + +#: actions/pathsadminpanel.php:329 +msgid "Use SSL" +msgstr "Implij SSl" + +#: actions/pathsadminpanel.php:330 +msgid "When to use SSL" +msgstr "" + +#: actions/pathsadminpanel.php:335 +msgid "SSL server" +msgstr "Servijer SSL" + +#: actions/pathsadminpanel.php:336 +msgid "Server to direct SSL requests to" +msgstr "" + +#: actions/pathsadminpanel.php:352 +msgid "Save paths" +msgstr "Enrollañ an hentadoù." + +#: actions/peoplesearch.php:52 +#, php-format +msgid "" +"Search for people on %%site.name%% by their name, location, or interests. " +"Separate the terms by spaces; they must be 3 characters or more." +msgstr "" + +#: actions/peoplesearch.php:58 +msgid "People search" +msgstr "Klask tud" + +#: actions/peopletag.php:70 +#, php-format +msgid "Not a valid people tag: %s" +msgstr "N'eo ket reizh ar merk-se : %s" + +#: actions/peopletag.php:144 +#, php-format +msgid "Users self-tagged with %1$s - page %2$d" +msgstr "" + +#: actions/postnotice.php:95 +msgid "Invalid notice content" +msgstr "" + +#: actions/postnotice.php:101 +#, php-format +msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "" + +#: actions/profilesettings.php:60 +msgid "Profile settings" +msgstr "Arventennoù ar profil" + +#: actions/profilesettings.php:71 +msgid "" +"You can update your personal profile info here so people know more about you." +msgstr "" + +#: actions/profilesettings.php:99 +msgid "Profile information" +msgstr "" + +#: actions/profilesettings.php:108 lib/groupeditform.php:154 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" + +#: actions/profilesettings.php:111 actions/register.php:448 +#: actions/showgroup.php:255 actions/tagother.php:104 +#: lib/groupeditform.php:157 lib/userprofile.php:149 +msgid "Full name" +msgstr "Anv klok" + +#: actions/profilesettings.php:115 actions/register.php:453 +#: lib/applicationeditform.php:228 lib/groupeditform.php:161 +msgid "Homepage" +msgstr "Pajenn degemer" + +#: actions/profilesettings.php:117 actions/register.php:455 +msgid "URL of your homepage, blog, or profile on another site" +msgstr "" + +#: actions/profilesettings.php:122 actions/register.php:461 +#, php-format +msgid "Describe yourself and your interests in %d chars" +msgstr "" + +#: actions/profilesettings.php:125 actions/register.php:464 +msgid "Describe yourself and your interests" +msgstr "" + +#: actions/profilesettings.php:127 actions/register.php:466 +msgid "Bio" +msgstr "Buhezskrid" + +#: actions/profilesettings.php:132 actions/register.php:471 +#: actions/showgroup.php:264 actions/tagother.php:112 +#: actions/userauthorization.php:166 lib/groupeditform.php:177 +#: lib/userprofile.php:164 +msgid "Location" +msgstr "Lec'hiadur" + +#: actions/profilesettings.php:134 actions/register.php:473 +msgid "Where you are, like \"City, State (or Region), Country\"" +msgstr "" + +#: actions/profilesettings.php:138 +msgid "Share my current location when posting notices" +msgstr "" + +#: actions/profilesettings.php:145 actions/tagother.php:149 +#: actions/tagother.php:209 lib/subscriptionlist.php:106 +#: lib/subscriptionlist.php:108 lib/userprofile.php:209 +msgid "Tags" +msgstr "Balizennoù" + +#: actions/profilesettings.php:147 +msgid "" +"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" +msgstr "" + +#: actions/profilesettings.php:151 +msgid "Language" +msgstr "Yezh" + +#: actions/profilesettings.php:152 +msgid "Preferred language" +msgstr "Yezh d'ober ganti da gentañ" + +#: actions/profilesettings.php:161 +msgid "Timezone" +msgstr "Takad eur" + +#: actions/profilesettings.php:162 +msgid "What timezone are you normally in?" +msgstr "" + +#: actions/profilesettings.php:167 +msgid "" +"Automatically subscribe to whoever subscribes to me (best for non-humans)" +msgstr "" + +#: actions/profilesettings.php:228 actions/register.php:223 +#, php-format +msgid "Bio is too long (max %d chars)." +msgstr "" + +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 +msgid "Timezone not selected." +msgstr "N'eo bet dibabet gwerzhid-eur ebet." + +#: actions/profilesettings.php:241 +msgid "Language is too long (max 50 chars)." +msgstr "" + +#: actions/profilesettings.php:253 actions/tagother.php:178 +#, php-format +msgid "Invalid tag: \"%s\"" +msgstr "Balizenn direizh : \"%s\"" + +#: actions/profilesettings.php:306 +msgid "Couldn't update user for autosubscribe." +msgstr "" + +#: actions/profilesettings.php:363 +msgid "Couldn't save location prefs." +msgstr "" + +#: actions/profilesettings.php:375 +msgid "Couldn't save profile." +msgstr "Diposubl eo enrollañ ar profil." + +#: actions/profilesettings.php:383 +msgid "Couldn't save tags." +msgstr "Diposubl eo enrollañ ar balizennoù." + +#. TRANS: Message after successful saving of administrative settings. +#: actions/profilesettings.php:391 lib/adminpanelaction.php:141 +msgid "Settings saved." +msgstr "Enrollet eo bet an arventennoù." + +#: actions/public.php:83 +#, php-format +msgid "Beyond the page limit (%s)" +msgstr "" + +#: actions/public.php:92 +msgid "Could not retrieve public stream." +msgstr "" + +#: actions/public.php:130 +#, php-format +msgid "Public timeline, page %d" +msgstr "" + +#: actions/public.php:132 lib/publicgroupnav.php:79 +msgid "Public timeline" +msgstr "" + +#: actions/public.php:160 +msgid "Public Stream Feed (RSS 1.0)" +msgstr "" + +#: actions/public.php:164 +msgid "Public Stream Feed (RSS 2.0)" +msgstr "" + +#: actions/public.php:168 +msgid "Public Stream Feed (Atom)" +msgstr "" + +#: actions/public.php:188 +#, php-format +msgid "" +"This is the public timeline for %%site.name%% but no one has posted anything " +"yet." +msgstr "" + +#: actions/public.php:191 +msgid "Be the first to post!" +msgstr "Bezit an hini gentañ da bostañ !" + +#: actions/public.php:195 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post!" +msgstr "" + +#: actions/public.php:242 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool. [Join now](%%action.register%%) to share notices about yourself with " +"friends, family, and colleagues! ([Read more](%%doc.help%%))" +msgstr "" + +#: actions/public.php:247 +#, php-format +msgid "" +"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-" +"blogging) service based on the Free Software [StatusNet](http://status.net/) " +"tool." +msgstr "" + +#: actions/publictagcloud.php:57 +msgid "Public tag cloud" +msgstr "" + +#: actions/publictagcloud.php:63 +#, php-format +msgid "These are most popular recent tags on %s " +msgstr "" + +#: actions/publictagcloud.php:69 +#, php-format +msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." +msgstr "" + +#: actions/publictagcloud.php:72 +msgid "Be the first to post one!" +msgstr "" + +#: actions/publictagcloud.php:75 +#, php-format +msgid "" +"Why not [register an account](%%action.register%%) and be the first to post " +"one!" +msgstr "" + +#: actions/publictagcloud.php:134 +msgid "Tag cloud" +msgstr "" + +#: actions/recoverpassword.php:36 +msgid "You are already logged in!" +msgstr "Luget oc'h dija !" + +#: actions/recoverpassword.php:62 +msgid "No such recovery code." +msgstr "Kod adtapout nann-kavet." + +#: actions/recoverpassword.php:66 +msgid "Not a recovery code." +msgstr "N'eo ket ur c'hod adtapout an dra-mañ." + +#: actions/recoverpassword.php:73 +msgid "Recovery code for unknown user." +msgstr "" + +#: actions/recoverpassword.php:86 +msgid "Error with confirmation code." +msgstr "" + +#: actions/recoverpassword.php:97 +msgid "This confirmation code is too old. Please start again." +msgstr "" + +#: actions/recoverpassword.php:111 +msgid "Could not update user with confirmed email address." +msgstr "" + +#: actions/recoverpassword.php:152 +msgid "" +"If you have forgotten or lost your password, you can get a new one sent to " +"the email address you have stored in your account." +msgstr "" + +#: actions/recoverpassword.php:158 +msgid "You have been identified. Enter a new password below. " +msgstr "" + +#: actions/recoverpassword.php:188 +msgid "Password recovery" +msgstr "Adtapout ar ger-tremen" + +#: actions/recoverpassword.php:191 +msgid "Nickname or email address" +msgstr "" + +#: actions/recoverpassword.php:193 +msgid "Your nickname on this server, or your registered email address." +msgstr "" + +#: actions/recoverpassword.php:199 actions/recoverpassword.php:200 +msgid "Recover" +msgstr "Adtapout" + +#: actions/recoverpassword.php:208 +msgid "Reset password" +msgstr "Adderaouekaat ar ger-tremen" + +#: actions/recoverpassword.php:209 +msgid "Recover password" +msgstr "Adtapout ar ger-tremen" + +#: actions/recoverpassword.php:210 actions/recoverpassword.php:322 +msgid "Password recovery requested" +msgstr "Goulennet eo an adtapout gerioù-tremen" + +#: actions/recoverpassword.php:213 +msgid "Unknown action" +msgstr "Ober dianav" + +#: actions/recoverpassword.php:236 +msgid "6 or more characters, and don't forget it!" +msgstr "6 arouezenn pe muioc'h, ha n'e zisoñjit ket !" + +#: actions/recoverpassword.php:243 +msgid "Reset" +msgstr "Adderaouekaat" + +#: actions/recoverpassword.php:252 +msgid "Enter a nickname or email address." +msgstr "Lakait ul lesanv pe ur chomlec'h postel." + +#: actions/recoverpassword.php:272 +msgid "No user with that email address or username." +msgstr "" + +#: actions/recoverpassword.php:287 +msgid "No registered email address for that user." +msgstr "" + +#: actions/recoverpassword.php:301 +msgid "Error saving address confirmation." +msgstr "" + +#: actions/recoverpassword.php:325 +msgid "" +"Instructions for recovering your password have been sent to the email " +"address registered to your account." +msgstr "" + +#: actions/recoverpassword.php:344 +msgid "Unexpected password reset." +msgstr "" + +#: actions/recoverpassword.php:352 +msgid "Password must be 6 chars or more." +msgstr "" + +#: actions/recoverpassword.php:356 +msgid "Password and confirmation do not match." +msgstr "" + +#: actions/recoverpassword.php:375 actions/register.php:248 +msgid "Error setting user." +msgstr "" + +#: actions/recoverpassword.php:382 +msgid "New password successfully saved. You are now logged in." +msgstr "" + +#: actions/register.php:85 actions/register.php:189 actions/register.php:405 +msgid "Sorry, only invited people can register." +msgstr "" + +#: actions/register.php:92 +msgid "Sorry, invalid invitation code." +msgstr "Digarezit, kod pedadenn direizh." + +#: actions/register.php:112 +msgid "Registration successful" +msgstr "" + +#: actions/register.php:114 actions/register.php:503 lib/logingroupnav.php:85 +msgid "Register" +msgstr "Krouiñ ur gont" + +#: actions/register.php:135 +msgid "Registration not allowed." +msgstr "" + +#: actions/register.php:198 +msgid "You can't register if you don't agree to the license." +msgstr "" + +#: actions/register.php:212 +msgid "Email address already exists." +msgstr "Implijet eo dija ar chomlec'h postel-se." + +#: actions/register.php:243 actions/register.php:265 +msgid "Invalid username or password." +msgstr "" + +#: actions/register.php:343 +msgid "" +"With this form you can create a new account. You can then post notices and " +"link up to friends and colleagues. " +msgstr "" + +#: actions/register.php:425 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +msgstr "" + +#: actions/register.php:430 +msgid "6 or more characters. Required." +msgstr "6 arouezenn pe muioc'h. Rekis." + +#: actions/register.php:434 +msgid "Same as password above. Required." +msgstr "Memestra hag ar ger-tremen a-us. Rekis." + +#: actions/register.php:438 actions/register.php:442 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 +msgid "Email" +msgstr "Postel" + +#: actions/register.php:439 actions/register.php:443 +msgid "Used only for updates, announcements, and password recovery" +msgstr "" + +#: actions/register.php:450 +msgid "Longer name, preferably your \"real\" name" +msgstr "" + +#: actions/register.php:494 +msgid "My text and files are available under " +msgstr "" + +#: actions/register.php:496 +msgid "Creative Commons Attribution 3.0" +msgstr "" + +#: actions/register.php:497 +msgid "" +" except this private data: password, email address, IM address, and phone " +"number." +msgstr "" + +#: actions/register.php:538 +#, php-format +msgid "" +"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " +"want to...\n" +"\n" +"* Go to [your profile](%2$s) and post your first message.\n" +"* Add a [Jabber/GTalk address](%%%%action.imsettings%%%%) so you can send " +"notices through instant messages.\n" +"* [Search for people](%%%%action.peoplesearch%%%%) that you may know or that " +"share your interests. \n" +"* Update your [profile settings](%%%%action.profilesettings%%%%) to tell " +"others more about you. \n" +"* Read over the [online docs](%%%%doc.help%%%%) for features you may have " +"missed. \n" +"\n" +"Thanks for signing up and we hope you enjoy using this service." +msgstr "" + +#: actions/register.php:562 +msgid "" +"(You should receive a message by email momentarily, with instructions on how " +"to confirm your email address.)" +msgstr "" + +#: actions/remotesubscribe.php:98 +#, php-format +msgid "" +"To subscribe, you can [login](%%action.login%%), or [register](%%action." +"register%%) a new account. If you already have an account on a [compatible " +"microblogging site](%%doc.openmublog%%), enter your profile URL below." +msgstr "" + +#: actions/remotesubscribe.php:112 +msgid "Remote subscribe" +msgstr "" + +#: actions/remotesubscribe.php:124 +msgid "Subscribe to a remote user" +msgstr "" + +#: actions/remotesubscribe.php:129 +msgid "User nickname" +msgstr "" + +#: actions/remotesubscribe.php:130 +msgid "Nickname of the user you want to follow" +msgstr "" + +#: actions/remotesubscribe.php:133 +msgid "Profile URL" +msgstr "" + +#: actions/remotesubscribe.php:134 +msgid "URL of your profile on another compatible microblogging service" +msgstr "" + +#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: lib/userprofile.php:394 +msgid "Subscribe" +msgstr "En em enskrivañ" + +#: actions/remotesubscribe.php:159 +msgid "Invalid profile URL (bad format)" +msgstr "" + +#: actions/remotesubscribe.php:168 +msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)." +msgstr "" + +#: actions/remotesubscribe.php:176 +msgid "That’s a local profile! Login to subscribe." +msgstr "" + +#: actions/remotesubscribe.php:183 +msgid "Couldn’t get a request token." +msgstr "" + +#: actions/repeat.php:57 +msgid "Only logged-in users can repeat notices." +msgstr "" + +#: actions/repeat.php:64 actions/repeat.php:71 +msgid "No notice specified." +msgstr "N'eus bet diferet ali ebet." + +#: actions/repeat.php:76 +msgid "You can't repeat your own notice." +msgstr "Ne c'helloc'h ket adkemer ho ali deoc'h." + +#: actions/repeat.php:90 +msgid "You already repeated that notice." +msgstr "Adkemeret o peus dija an ali-mañ." + +#: actions/repeat.php:114 lib/noticelist.php:674 +msgid "Repeated" +msgstr "Adlavaret" + +#: actions/repeat.php:119 +msgid "Repeated!" +msgstr "Adlavaret !" + +#: actions/replies.php:126 actions/repliesrss.php:68 +#: lib/personalgroupnav.php:105 +#, php-format +msgid "Replies to %s" +msgstr "Respontoù da %s" + +#: actions/replies.php:128 +#, php-format +msgid "Replies to %1$s, page %2$d" +msgstr "Respontoù da %1$s, pajenn %2$d" + +#: actions/replies.php:145 +#, php-format +msgid "Replies feed for %s (RSS 1.0)" +msgstr "" + +#: actions/replies.php:152 +#, php-format +msgid "Replies feed for %s (RSS 2.0)" +msgstr "" + +#: actions/replies.php:159 +#, php-format +msgid "Replies feed for %s (Atom)" +msgstr "" + +#: actions/replies.php:199 +#, php-format +msgid "" +"This is the timeline showing replies to %1$s but %2$s hasn't received a " +"notice to his attention yet." +msgstr "" + +#: actions/replies.php:204 +#, php-format +msgid "" +"You can engage other users in a conversation, subscribe to more people or " +"[join groups](%%action.groups%%)." +msgstr "" + +#: actions/replies.php:206 +#, php-format +msgid "" +"You can try to [nudge %1$s](../%2$s) or [post something to his or her " +"attention](%%%%action.newnotice%%%%?status_textarea=%3$s)." +msgstr "" + +#: actions/repliesrss.php:72 +#, php-format +msgid "Replies to %1$s on %2$s!" +msgstr "" + +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Ne c'helloc'h ket kas kemennadennoù d'an implijer-mañ." + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + +#: actions/rsd.php:146 actions/version.php:157 +msgid "StatusNet" +msgstr "StatusNet" + +#: actions/sandbox.php:65 actions/unsandbox.php:65 +msgid "You cannot sandbox users on this site." +msgstr "" + +#: actions/sandbox.php:72 +msgid "User is already sandboxed." +msgstr "" + +#. TRANS: Menu item for site administration +#: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 +msgid "Sessions" +msgstr "Dalc'hoù" + +#: actions/sessionsadminpanel.php:65 +msgid "Session settings for this StatusNet site." +msgstr "" + +#: actions/sessionsadminpanel.php:175 +msgid "Handle sessions" +msgstr "Merañ an dalc'hoù" + +#: actions/sessionsadminpanel.php:177 +msgid "Whether to handle sessions ourselves." +msgstr "" + +#: actions/sessionsadminpanel.php:181 +msgid "Session debugging" +msgstr "" + +#: actions/sessionsadminpanel.php:183 +msgid "Turn on debugging output for sessions." +msgstr "" + +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/useradminpanel.php:294 +msgid "Save site settings" +msgstr "" + +#: actions/showapplication.php:82 +msgid "You must be logged in to view an application." +msgstr "" + +#: actions/showapplication.php:157 +msgid "Application profile" +msgstr "" + +#: actions/showapplication.php:159 lib/applicationeditform.php:180 +msgid "Icon" +msgstr "" + +#: actions/showapplication.php:169 actions/version.php:195 +#: lib/applicationeditform.php:195 +msgid "Name" +msgstr "Anv" + +#: actions/showapplication.php:178 lib/applicationeditform.php:222 +msgid "Organization" +msgstr "" + +#: actions/showapplication.php:187 actions/version.php:198 +#: lib/applicationeditform.php:209 lib/groupeditform.php:172 +msgid "Description" +msgstr "" + +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 +msgid "Statistics" +msgstr "Stadegoù" + +#: actions/showapplication.php:203 +#, php-format +msgid "Created by %1$s - %2$s access by default - %3$d users" +msgstr "" + +#: actions/showapplication.php:213 +msgid "Application actions" +msgstr "" + +#: actions/showapplication.php:236 +msgid "Reset key & secret" +msgstr "" + +#: actions/showapplication.php:261 +msgid "Application info" +msgstr "" + +#: actions/showapplication.php:263 +msgid "Consumer key" +msgstr "" + +#: actions/showapplication.php:268 +msgid "Consumer secret" +msgstr "" + +#: actions/showapplication.php:273 +msgid "Request token URL" +msgstr "" + +#: actions/showapplication.php:278 +msgid "Access token URL" +msgstr "" + +#: actions/showapplication.php:283 +msgid "Authorize URL" +msgstr "" + +#: actions/showapplication.php:288 +msgid "" +"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " +"signature method." +msgstr "" + +#: actions/showapplication.php:309 +msgid "Are you sure you want to reset your consumer key and secret?" +msgstr "" + +#: actions/showfavorites.php:79 +#, php-format +msgid "%1$s's favorite notices, page %2$d" +msgstr "" + +#: actions/showfavorites.php:132 +msgid "Could not retrieve favorite notices." +msgstr "" + +#: actions/showfavorites.php:171 +#, php-format +msgid "Feed for favorites of %s (RSS 1.0)" +msgstr "" + +#: actions/showfavorites.php:178 +#, php-format +msgid "Feed for favorites of %s (RSS 2.0)" +msgstr "" + +#: actions/showfavorites.php:185 +#, php-format +msgid "Feed for favorites of %s (Atom)" +msgstr "" + +#: actions/showfavorites.php:206 +msgid "" +"You haven't chosen any favorite notices yet. Click the fave button on " +"notices you like to bookmark them for later or shed a spotlight on them." +msgstr "" + +#: actions/showfavorites.php:208 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Post something interesting " +"they would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:212 +#, php-format +msgid "" +"%s hasn't added any notices to his favorites yet. Why not [register an " +"account](%%%%action.register%%%%) and then post something interesting they " +"would add to their favorites :)" +msgstr "" + +#: actions/showfavorites.php:243 +msgid "This is a way to share what you like." +msgstr "" + +#: actions/showgroup.php:82 lib/groupnav.php:86 +#, php-format +msgid "%s group" +msgstr "strollad %s" + +#: actions/showgroup.php:84 +#, php-format +msgid "%1$s group, page %2$d" +msgstr "" + +#: actions/showgroup.php:226 +msgid "Group profile" +msgstr "Profil ar strollad" + +#: actions/showgroup.php:271 actions/tagother.php:118 +#: actions/userauthorization.php:175 lib/userprofile.php:177 +msgid "URL" +msgstr "URL" + +#: actions/showgroup.php:282 actions/tagother.php:128 +#: actions/userauthorization.php:187 lib/userprofile.php:194 +msgid "Note" +msgstr "Notenn" + +#: actions/showgroup.php:292 lib/groupeditform.php:184 +msgid "Aliases" +msgstr "Aliasoù" + +#: actions/showgroup.php:301 +msgid "Group actions" +msgstr "Oberoù ar strollad" + +#: actions/showgroup.php:337 +#, php-format +msgid "Notice feed for %s group (RSS 1.0)" +msgstr "" + +#: actions/showgroup.php:343 +#, php-format +msgid "Notice feed for %s group (RSS 2.0)" +msgstr "" + +#: actions/showgroup.php:349 +#, php-format +msgid "Notice feed for %s group (Atom)" +msgstr "" + +#: actions/showgroup.php:354 +#, php-format +msgid "FOAF for %s group" +msgstr "" + +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 +msgid "Members" +msgstr "Izili" + +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 +#: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 +msgid "(None)" +msgstr "(hini ebet)" + +#: actions/showgroup.php:401 +msgid "All members" +msgstr "An holl izili" + +#: actions/showgroup.php:441 +msgid "Created" +msgstr "Krouet" + +#: actions/showgroup.php:457 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. [Join now](%%%%action.register%%%%) to become part " +"of this group and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showgroup.php:463 +#, php-format +msgid "" +"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. Its members share short messages about " +"their life and interests. " +msgstr "" + +#: actions/showgroup.php:491 +msgid "Admins" +msgstr "Merourien" + +#: actions/showmessage.php:81 +msgid "No such message." +msgstr "N'eus ket eus ar gemennadenn-se." + +#: actions/showmessage.php:98 +msgid "Only the sender and recipient may read this message." +msgstr "" + +#: actions/showmessage.php:108 +#, php-format +msgid "Message to %1$s on %2$s" +msgstr "" + +#: actions/showmessage.php:113 +#, php-format +msgid "Message from %1$s on %2$s" +msgstr "" + +#: actions/shownotice.php:90 +msgid "Notice deleted." +msgstr "" + +#: actions/showstream.php:73 +#, php-format +msgid " tagged %s" +msgstr " merket %s" + +#: actions/showstream.php:79 +#, php-format +msgid "%1$s, page %2$d" +msgstr "" + +#: actions/showstream.php:122 +#, php-format +msgid "Notice feed for %1$s tagged %2$s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:129 +#, php-format +msgid "Notice feed for %s (RSS 1.0)" +msgstr "" + +#: actions/showstream.php:136 +#, php-format +msgid "Notice feed for %s (RSS 2.0)" +msgstr "" + +#: actions/showstream.php:143 +#, php-format +msgid "Notice feed for %s (Atom)" +msgstr "" + +#: actions/showstream.php:148 +#, php-format +msgid "FOAF for %s" +msgstr "" + +#: actions/showstream.php:200 +#, php-format +msgid "This is the timeline for %1$s but %2$s hasn't posted anything yet." +msgstr "" + +#: actions/showstream.php:205 +msgid "" +"Seen anything interesting recently? You haven't posted any notices yet, now " +"would be a good time to start :)" +msgstr "" + +#: actions/showstream.php:207 +#, php-format +msgid "" +"You can try to nudge %1$s or [post something to his or her attention](%%%%" +"action.newnotice%%%%?status_textarea=%2$s)." +msgstr "" + +#: actions/showstream.php:243 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " +"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" +msgstr "" + +#: actions/showstream.php:248 +#, php-format +msgid "" +"**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." +"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " +"[StatusNet](http://status.net/) tool. " +msgstr "" + +#: actions/showstream.php:305 +#, php-format +msgid "Repeat of %s" +msgstr "" + +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +msgid "User is already silenced." +msgstr "" + +#: actions/siteadminpanel.php:69 +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Arventennoù design evit al lec'hienn StatusNet-mañ." + +#: actions/siteadminpanel.php:133 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:141 +msgid "You must have a valid contact email address." +msgstr "" + +#: actions/siteadminpanel.php:159 +#, php-format +msgid "Unknown language \"%s\"." +msgstr "" + +#: actions/siteadminpanel.php:165 +msgid "Minimum text limit is 140 characters." +msgstr "" + +#: actions/siteadminpanel.php:171 +msgid "Dupe limit must 1 or more seconds." +msgstr "" + +#: actions/siteadminpanel.php:221 +msgid "General" +msgstr "Hollek" + +#: actions/siteadminpanel.php:224 +msgid "Site name" +msgstr "Anv al lec'hienn" + +#: actions/siteadminpanel.php:225 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:229 +msgid "Brought by" +msgstr "Degaset gant" + +#: actions/siteadminpanel.php:230 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:234 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:235 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:239 +msgid "Contact email address for your site" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Local" +msgstr "Lec'hel" + +#: actions/siteadminpanel.php:256 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:257 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Yezh d'ober ganti da gentañ" + +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" + +#: actions/siteadminpanel.php:271 +msgid "Limits" +msgstr "Bevennoù" + +#: actions/siteadminpanel.php:274 +msgid "Text limit" +msgstr "" + +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." +msgstr "" + +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" +msgstr "" + +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." +msgstr "" + +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Ali" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Kemennadenn nevez" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Diposubl eo enrollañ an titouroù stankañ." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Eilañ an ali" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Dilemel un ali" + +#: actions/smssettings.php:58 +msgid "SMS settings" +msgstr "Arventennoù SMS" + +#: actions/smssettings.php:69 +#, php-format +msgid "You can receive SMS messages through email from %%site.name%%." +msgstr "" + +#: actions/smssettings.php:91 +msgid "SMS is not available." +msgstr "Dizimplijadus eo an SMS." + +#: actions/smssettings.php:112 +msgid "Current confirmed SMS-enabled phone number." +msgstr "" + +#: actions/smssettings.php:123 +msgid "Awaiting confirmation on this phone number." +msgstr "" + +#: actions/smssettings.php:130 +msgid "Confirmation code" +msgstr "Kod kadarnaat" + +#: actions/smssettings.php:131 +msgid "Enter the code you received on your phone." +msgstr "" + +#: actions/smssettings.php:138 +msgid "SMS phone number" +msgstr "Niverenn bellgomz evit an SMS" + +#: actions/smssettings.php:140 +msgid "Phone number, no punctuation or spaces, with area code" +msgstr "" + +#: actions/smssettings.php:174 +msgid "" +"Send me notices through SMS; I understand I may incur exorbitant charges " +"from my carrier." +msgstr "" + +#: actions/smssettings.php:306 +msgid "No phone number." +msgstr "Niverenn bellgomz ebet." + +#: actions/smssettings.php:311 +msgid "No carrier selected." +msgstr "" + +#: actions/smssettings.php:318 +msgid "That is already your phone number." +msgstr "" + +#: actions/smssettings.php:321 +msgid "That phone number already belongs to another user." +msgstr "" + +#: actions/smssettings.php:347 +msgid "" +"A confirmation code was sent to the phone number you added. Check your phone " +"for the code and instructions on how to use it." +msgstr "" + +#: actions/smssettings.php:374 +msgid "That is the wrong confirmation number." +msgstr "" + +#: actions/smssettings.php:405 +msgid "That is not your phone number." +msgstr "" + +#: actions/smssettings.php:465 +msgid "Mobile carrier" +msgstr "" + +#: actions/smssettings.php:469 +msgid "Select a carrier" +msgstr "" + +#: actions/smssettings.php:476 +#, php-format +msgid "" +"Mobile carrier for your phone. If you know a carrier that accepts SMS over " +"email but isn't listed here, send email to let us know at %s." +msgstr "" + +#: actions/smssettings.php:498 +msgid "No code entered" +msgstr "N'eo bet lakaet kod ebet" + +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Stankter" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Enrollañ an arventennoù moned" + +#: actions/subedit.php:70 +msgid "You are not subscribed to that profile." +msgstr "" + +#: actions/subedit.php:83 classes/Subscription.php:89 +#: classes/Subscription.php:116 +msgid "Could not save subscription." +msgstr "" + +#: actions/subscribe.php:77 +msgid "This action only accepts POST requests." +msgstr "" + +#: actions/subscribe.php:107 +msgid "No such profile." +msgstr "" + +#: actions/subscribe.php:117 +msgid "You cannot subscribe to an OMB 0.1 remote profile with this action." +msgstr "" + +#: actions/subscribe.php:145 +msgid "Subscribed" +msgstr "" + +#: actions/subscribers.php:50 +#, php-format +msgid "%s subscribers" +msgstr "" + +#: actions/subscribers.php:52 +#, php-format +msgid "%1$s subscribers, page %2$d" +msgstr "" + +#: actions/subscribers.php:63 +msgid "These are the people who listen to your notices." +msgstr "" + +#: actions/subscribers.php:67 +#, php-format +msgid "These are the people who listen to %s's notices." +msgstr "" + +#: actions/subscribers.php:108 +msgid "" +"You have no subscribers. Try subscribing to people you know and they might " +"return the favor" +msgstr "" + +#: actions/subscribers.php:110 +#, php-format +msgid "%s has no subscribers. Want to be the first?" +msgstr "" + +#: actions/subscribers.php:114 +#, php-format +msgid "" +"%s has no subscribers. Why not [register an account](%%%%action.register%%%" +"%) and be the first?" +msgstr "" + +#: actions/subscriptions.php:52 +#, php-format +msgid "%s subscriptions" +msgstr "" + +#: actions/subscriptions.php:54 +#, php-format +msgid "%1$s subscriptions, page %2$d" +msgstr "" + +#: actions/subscriptions.php:65 +msgid "These are the people whose notices you listen to." +msgstr "" + +#: actions/subscriptions.php:69 +#, php-format +msgid "These are the people whose notices %s listens to." +msgstr "" + +#: actions/subscriptions.php:126 +#, php-format +msgid "" +"You're not listening to anyone's notices right now, try subscribing to " +"people you know. Try [people search](%%action.peoplesearch%%), look for " +"members in groups you're interested in and in our [featured users](%%action." +"featured%%). If you're a [Twitter user](%%action.twittersettings%%), you can " +"automatically subscribe to people you already follow there." +msgstr "" + +#: actions/subscriptions.php:128 actions/subscriptions.php:132 +#, php-format +msgid "%s is not listening to anyone." +msgstr "" + +#: actions/subscriptions.php:199 +msgid "Jabber" +msgstr "Jabber" + +#: actions/subscriptions.php:204 lib/connectsettingsaction.php:115 +msgid "SMS" +msgstr "SMS" + +#: actions/tag.php:69 +#, php-format +msgid "Notices tagged with %1$s, page %2$d" +msgstr "" + +#: actions/tag.php:87 +#, php-format +msgid "Notice feed for tag %s (RSS 1.0)" +msgstr "" + +#: actions/tag.php:93 +#, php-format +msgid "Notice feed for tag %s (RSS 2.0)" +msgstr "" + +#: actions/tag.php:99 +#, php-format +msgid "Notice feed for tag %s (Atom)" +msgstr "" + +#: actions/tagother.php:39 +msgid "No ID argument." +msgstr "" + +#: actions/tagother.php:65 +#, php-format +msgid "Tag %s" +msgstr "" + +#: actions/tagother.php:77 lib/userprofile.php:75 +msgid "User profile" +msgstr "" + +#: actions/tagother.php:81 actions/userauthorization.php:132 +#: lib/userprofile.php:102 +msgid "Photo" +msgstr "Skeudenn" + +#: actions/tagother.php:141 +msgid "Tag user" +msgstr "" + +#: actions/tagother.php:151 +msgid "" +"Tags for this user (letters, numbers, -, ., and _), comma- or space- " +"separated" +msgstr "" + +#: actions/tagother.php:193 +msgid "" +"You can only tag people you are subscribed to or who are subscribed to you." +msgstr "" + +#: actions/tagother.php:200 +msgid "Could not save tags." +msgstr "" + +#: actions/tagother.php:236 +msgid "Use this form to add tags to your subscribers or subscriptions." +msgstr "" + +#: actions/tagrss.php:35 +msgid "No such tag." +msgstr "" + +#: actions/twitapitrends.php:85 +msgid "API method under construction." +msgstr "" + +#: actions/unblock.php:59 +msgid "You haven't blocked that user." +msgstr "" + +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "" + +#: actions/unsilence.php:72 +msgid "User is not silenced." +msgstr "" + +#: actions/unsubscribe.php:77 +msgid "No profile id in request." +msgstr "" + +#: actions/unsubscribe.php:98 +msgid "Unsubscribed" +msgstr "" + +#: actions/updateprofile.php:64 actions/userauthorization.php:337 +#, php-format +msgid "" +"Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." +msgstr "" + +#. TRANS: User admin panel title +#: actions/useradminpanel.php:59 +msgctxt "TITLE" +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:70 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:149 +msgid "Invalid bio limit. Must be numeric." +msgstr "" + +#: actions/useradminpanel.php:155 +msgid "Invalid welcome text. Max length is 255 characters." +msgstr "" + +#: actions/useradminpanel.php:165 +#, php-format +msgid "Invalid default subscripton: '%1$s' is not user." +msgstr "" + +#: actions/useradminpanel.php:218 lib/accountsettingsaction.php:108 +#: lib/personalgroupnav.php:109 +msgid "Profile" +msgstr "Profil" + +#: actions/useradminpanel.php:222 +msgid "Bio Limit" +msgstr "Bevenn ar bio" + +#: actions/useradminpanel.php:223 +msgid "Maximum length of a profile bio in characters." +msgstr "" + +#: actions/useradminpanel.php:231 +msgid "New users" +msgstr "Implijerien nevez" + +#: actions/useradminpanel.php:235 +msgid "New user welcome" +msgstr "Degemer an implijerien nevez" + +#: actions/useradminpanel.php:236 +msgid "Welcome text for new users (Max 255 chars)." +msgstr "" + +#: actions/useradminpanel.php:241 +msgid "Default subscription" +msgstr "" + +#: actions/useradminpanel.php:242 +msgid "Automatically subscribe new users to this user." +msgstr "" + +#: actions/useradminpanel.php:251 +msgid "Invitations" +msgstr "Pedadennoù" + +#: actions/useradminpanel.php:256 +msgid "Invitations enabled" +msgstr "" + +#: actions/useradminpanel.php:258 +msgid "Whether to allow users to invite new users." +msgstr "" + +#: actions/userauthorization.php:105 +msgid "Authorize subscription" +msgstr "" + +#: actions/userauthorization.php:110 +msgid "" +"Please check these details to make sure that you want to subscribe to this " +"user’s notices. If you didn’t just ask to subscribe to someone’s notices, " +"click “Rejectâ€." +msgstr "" + +#: actions/userauthorization.php:196 actions/version.php:165 +msgid "License" +msgstr "Aotre implijout" + +#: actions/userauthorization.php:217 +msgid "Accept" +msgstr "Degemer" + +#: actions/userauthorization.php:218 lib/subscribeform.php:115 +#: lib/subscribeform.php:139 +msgid "Subscribe to this user" +msgstr "" + +#: actions/userauthorization.php:219 +msgid "Reject" +msgstr "Disteurel" + +#: actions/userauthorization.php:220 +msgid "Reject this subscription" +msgstr "" + +#: actions/userauthorization.php:232 +msgid "No authorization request!" +msgstr "" + +#: actions/userauthorization.php:254 +msgid "Subscription authorized" +msgstr "" + +#: actions/userauthorization.php:256 +msgid "" +"The subscription has been authorized, but no callback URL was passed. Check " +"with the site’s instructions for details on how to authorize the " +"subscription. Your subscription token is:" +msgstr "" + +#: actions/userauthorization.php:266 +msgid "Subscription rejected" +msgstr "" + +#: actions/userauthorization.php:268 +msgid "" +"The subscription has been rejected, but no callback URL was passed. Check " +"with the site’s instructions for details on how to fully reject the " +"subscription." +msgstr "" + +#: actions/userauthorization.php:303 +#, php-format +msgid "Listener URI ‘%s’ not found here." +msgstr "" + +#: actions/userauthorization.php:308 +#, php-format +msgid "Listenee URI ‘%s’ is too long." +msgstr "" + +#: actions/userauthorization.php:314 +#, php-format +msgid "Listenee URI ‘%s’ is a local user." +msgstr "" + +#: actions/userauthorization.php:329 +#, php-format +msgid "Profile URL ‘%s’ is for a local user." +msgstr "" + +#: actions/userauthorization.php:345 +#, php-format +msgid "Avatar URL ‘%s’ is not valid." +msgstr "" + +#: actions/userauthorization.php:350 +#, php-format +msgid "Can’t read avatar URL ‘%s’." +msgstr "" + +#: actions/userauthorization.php:355 +#, php-format +msgid "Wrong image type for avatar URL ‘%s’." +msgstr "" + +#: actions/userdesignsettings.php:76 lib/designsettings.php:65 +msgid "Profile design" +msgstr "" + +#: actions/userdesignsettings.php:87 lib/designsettings.php:76 +msgid "" +"Customize the way your profile looks with a background image and a colour " +"palette of your choice." +msgstr "" + +#: actions/userdesignsettings.php:282 +msgid "Enjoy your hotdog!" +msgstr "" + +#: actions/usergroups.php:64 +#, php-format +msgid "%1$s groups, page %2$d" +msgstr "" + +#: actions/usergroups.php:130 +msgid "Search for more groups" +msgstr "Klask muioc'h a strolladoù" + +#: actions/usergroups.php:157 +#, php-format +msgid "%s is not a member of any group." +msgstr "" + +#: actions/usergroups.php:162 +#, php-format +msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." +msgstr "" + +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Hizivadennoù eus %1$s e %2$s!" + +#: actions/version.php:73 +#, php-format +msgid "StatusNet %s" +msgstr "StatusNet %s" + +#: actions/version.php:153 +#, php-format +msgid "" +"This site is powered by %1$s version %2$s, Copyright 2008-2010 StatusNet, " +"Inc. and contributors." +msgstr "" + +#: actions/version.php:161 +msgid "Contributors" +msgstr "Aozerien" + +#: actions/version.php:168 +msgid "" +"StatusNet 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. " +msgstr "" + +#: actions/version.php:174 +msgid "" +"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. " +msgstr "" + +#: actions/version.php:180 +#, php-format +msgid "" +"You should have received a copy of the GNU Affero General Public License " +"along with this program. If not, see %s." +msgstr "" + +#: actions/version.php:189 +msgid "Plugins" +msgstr "Pluginoù" + +#: actions/version.php:196 lib/action.php:767 +msgid "Version" +msgstr "Stumm" + +#: actions/version.php:197 +msgid "Author(s)" +msgstr "Aozer(ien)" + +#: classes/File.php:144 +#, php-format +msgid "" +"No file may be larger than %d bytes and the file you sent was %d bytes. Try " +"to upload a smaller version." +msgstr "" + +#: classes/File.php:154 +#, php-format +msgid "A file this large would exceed your user quota of %d bytes." +msgstr "" + +#: classes/File.php:161 +#, php-format +msgid "A file this large would exceed your monthly quota of %d bytes." +msgstr "" + +#: classes/Group_member.php:41 +msgid "Group join failed." +msgstr "C'hwitet eo bet an enskrivadur d'ar strollad." + +#: classes/Group_member.php:53 +msgid "Not part of group." +msgstr "N'eo ezel eus strollad ebet." + +#: classes/Group_member.php:60 +msgid "Group leave failed." +msgstr "C'hwitet eo bet an disenskrivadur d'ar strollad." + +#: classes/Local_group.php:41 +msgid "Could not update local group." +msgstr "" + +#: classes/Login_token.php:76 +#, php-format +msgid "Could not create login token for %s" +msgstr "" + +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 +msgid "Could not insert message." +msgstr "Diposubl eo ensoc'hañ ur gemenadenn" + +#: classes/Message.php:71 +msgid "Could not update message with new URI." +msgstr "" + +#: classes/Notice.php:172 +#, php-format +msgid "DB error inserting hashtag: %s" +msgstr "" + +#: classes/Notice.php:241 +msgid "Problem saving notice. Too long." +msgstr "" + +#: classes/Notice.php:245 +msgid "Problem saving notice. Unknown user." +msgstr "" + +#: classes/Notice.php:250 +msgid "" +"Too many notices too fast; take a breather and post again in a few minutes." +msgstr "" + +#: classes/Notice.php:256 +msgid "" +"Too many duplicate messages too quickly; take a breather and post again in a " +"few minutes." +msgstr "" + +#: classes/Notice.php:262 +msgid "You are banned from posting notices on this site." +msgstr "" + +#: classes/Notice.php:328 classes/Notice.php:354 +msgid "Problem saving notice." +msgstr "" + +#: classes/Notice.php:927 +msgid "Problem saving group inbox." +msgstr "" + +#: classes/Notice.php:1459 +#, php-format +msgid "RT @%1$s %2$s" +msgstr "RT @%1$s %2$s" + +#: classes/Subscription.php:66 lib/oauthstore.php:465 +msgid "You have been banned from subscribing." +msgstr "" + +#: classes/Subscription.php:70 +msgid "Already subscribed!" +msgstr "" + +#: classes/Subscription.php:74 +msgid "User has blocked you." +msgstr "" + +#: classes/Subscription.php:157 +msgid "Not subscribed!" +msgstr "" + +#: classes/Subscription.php:163 +msgid "Couldn't delete self-subscription." +msgstr "" + +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Diposubl eo dilemel ar postel kadarnadur." + +#: classes/Subscription.php:201 lib/subs.php:69 +msgid "Couldn't delete subscription." +msgstr "" + +#: classes/User.php:373 +#, php-format +msgid "Welcome to %1$s, @%2$s!" +msgstr "" + +#: classes/User_group.php:477 +msgid "Could not create group." +msgstr "" + +#: classes/User_group.php:486 +msgid "Could not set group URI." +msgstr "" + +#: classes/User_group.php:507 +msgid "Could not set group membership." +msgstr "" + +#: classes/User_group.php:521 +msgid "Could not save local group info." +msgstr "" + +#: lib/accountsettingsaction.php:108 +msgid "Change your profile settings" +msgstr "" + +#: lib/accountsettingsaction.php:112 +msgid "Upload an avatar" +msgstr "" + +#: lib/accountsettingsaction.php:116 +msgid "Change your password" +msgstr "Cheñch ar ger-tremen" + +#: lib/accountsettingsaction.php:120 +msgid "Change email handling" +msgstr "" + +#: lib/accountsettingsaction.php:124 +msgid "Design your profile" +msgstr "" + +#: lib/accountsettingsaction.php:128 +msgid "Other" +msgstr "All" + +#: lib/accountsettingsaction.php:128 +msgid "Other options" +msgstr "" + +#: lib/action.php:144 +#, php-format +msgid "%1$s - %2$s" +msgstr "%1$s - %2$s" + +#: lib/action.php:159 +msgid "Untitled page" +msgstr "" + +#: lib/action.php:424 +msgid "Primary site navigation" +msgstr "" + +#. TRANS: Tooltip for main menu option "Personal" +#: lib/action.php:430 +msgctxt "TOOLTIP" +msgid "Personal profile and friends timeline" +msgstr "" + +#: lib/action.php:433 +msgctxt "MENU" +msgid "Personal" +msgstr "" + +#. TRANS: Tooltip for main menu option "Account" +#: lib/action.php:435 +msgctxt "TOOLTIP" +msgid "Change your email, avatar, password, profile" +msgstr "" + +#. TRANS: Tooltip for main menu option "Services" +#: lib/action.php:440 +msgctxt "TOOLTIP" +msgid "Connect to services" +msgstr "" + +#: lib/action.php:443 +#, fuzzy +msgid "Connect" +msgstr "Endalc'h" + +#. TRANS: Tooltip for menu option "Admin" +#: lib/action.php:446 +msgctxt "TOOLTIP" +msgid "Change site configuration" +msgstr "" + +#: lib/action.php:449 +msgctxt "MENU" +msgid "Admin" +msgstr "" + +#. TRANS: Tooltip for main menu option "Invite" +#: lib/action.php:453 +#, php-format +msgctxt "TOOLTIP" +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#: lib/action.php:456 +msgctxt "MENU" +msgid "Invite" +msgstr "" + +#. TRANS: Tooltip for main menu option "Logout" +#: lib/action.php:462 +msgctxt "TOOLTIP" +msgid "Logout from the site" +msgstr "" + +#: lib/action.php:465 +msgctxt "MENU" +msgid "Logout" +msgstr "" + +#. TRANS: Tooltip for main menu option "Register" +#: lib/action.php:470 +msgctxt "TOOLTIP" +msgid "Create an account" +msgstr "" + +#: lib/action.php:473 +msgctxt "MENU" +msgid "Register" +msgstr "" + +#. TRANS: Tooltip for main menu option "Login" +#: lib/action.php:476 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "" + +#: lib/action.php:479 +msgctxt "MENU" +msgid "Login" +msgstr "" + +#. TRANS: Tooltip for main menu option "Help" +#: lib/action.php:482 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "" + +#: lib/action.php:485 +msgctxt "MENU" +msgid "Help" +msgstr "" + +#. TRANS: Tooltip for main menu option "Search" +#: lib/action.php:488 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "" + +#: lib/action.php:491 +msgctxt "MENU" +msgid "Search" +msgstr "" + +#. TRANS: DT element for site notice. String is hidden in default CSS. +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 +msgid "Site notice" +msgstr "" + +#: lib/action.php:579 +msgid "Local views" +msgstr "" + +#: lib/action.php:645 +msgid "Page notice" +msgstr "" + +#: lib/action.php:747 +msgid "Secondary site navigation" +msgstr "" + +#: lib/action.php:752 +msgid "Help" +msgstr "Skoazell" + +#: lib/action.php:754 +msgid "About" +msgstr "Diwar-benn" + +#: lib/action.php:756 +msgid "FAQ" +msgstr "FAG" + +#: lib/action.php:760 +msgid "TOS" +msgstr "" + +#: lib/action.php:763 +msgid "Privacy" +msgstr "Prevezded" + +#: lib/action.php:765 +msgid "Source" +msgstr "Mammenn" + +#: lib/action.php:769 +msgid "Contact" +msgstr "Darempred" + +#: lib/action.php:771 +msgid "Badge" +msgstr "" + +#: lib/action.php:799 +msgid "StatusNet software license" +msgstr "" + +#: lib/action.php:802 +#, php-format +msgid "" +"**%%site.name%%** is a microblogging service brought to you by [%%site." +"broughtby%%](%%site.broughtbyurl%%). " +msgstr "" + +#: lib/action.php:804 +#, php-format +msgid "**%%site.name%%** is a microblogging service. " +msgstr "" + +#: lib/action.php:806 +#, php-format +msgid "" +"It runs the [StatusNet](http://status.net/) microblogging software, version %" +"s, available under the [GNU Affero General Public License](http://www.fsf." +"org/licensing/licenses/agpl-3.0.html)." +msgstr "" + +#: lib/action.php:821 +msgid "Site content license" +msgstr "" + +#: lib/action.php:826 +#, php-format +msgid "Content and data of %1$s are private and confidential." +msgstr "" + +#: lib/action.php:831 +#, php-format +msgid "Content and data copyright by %1$s. All rights reserved." +msgstr "" + +#: lib/action.php:834 +msgid "Content and data copyright by contributors. All rights reserved." +msgstr "" + +#: lib/action.php:847 +msgid "All " +msgstr "Pep tra " + +#: lib/action.php:853 +msgid "license." +msgstr "aotre implijout." + +#: lib/action.php:1152 +msgid "Pagination" +msgstr "Pajennadur" + +#: lib/action.php:1161 +msgid "After" +msgstr "War-lerc'h" + +#: lib/action.php:1169 +msgid "Before" +msgstr "Kent" + +#: lib/activity.php:453 +msgid "Can't handle remote content yet." +msgstr "" + +#: lib/activity.php:481 +msgid "Can't handle embedded XML content yet." +msgstr "" + +#: lib/activity.php:485 +msgid "Can't handle embedded Base64 content yet." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:98 +msgid "You cannot make changes to this site." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:110 +msgid "Changes to that panel are not allowed." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:229 +msgid "showForm() not implemented." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:259 +msgid "saveSettings() not implemented." +msgstr "" + +#. TRANS: Client error message +#: lib/adminpanelaction.php:283 +msgid "Unable to delete design setting." +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:348 +msgid "Basic site configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:350 +msgctxt "MENU" +msgid "Site" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:356 +msgid "Design configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:358 +msgctxt "MENU" +msgid "Design" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:364 +msgid "User configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Implijer" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:372 +msgid "Access configuration" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:380 +msgid "Paths configuration" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:388 +msgid "Sessions configuration" +msgstr "" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 +#, fuzzy +msgid "Edit site notice" +msgstr "Eilañ an ali" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +msgid "Snapshots configuration" +msgstr "" + +#: lib/apiauth.php:94 +msgid "API resource requires read-write access, but you only have read access." +msgstr "" + +#: lib/apiauth.php:272 +#, php-format +msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" +msgstr "" + +#: lib/applicationeditform.php:136 +msgid "Edit application" +msgstr "Kemmañ an arload" + +#: lib/applicationeditform.php:184 +msgid "Icon for this application" +msgstr "" + +#: lib/applicationeditform.php:204 +#, php-format +msgid "Describe your application in %d characters" +msgstr "" + +#: lib/applicationeditform.php:207 +msgid "Describe your application" +msgstr "" + +#: lib/applicationeditform.php:216 +msgid "Source URL" +msgstr "Mammenn URL" + +#: lib/applicationeditform.php:218 +msgid "URL of the homepage of this application" +msgstr "" + +#: lib/applicationeditform.php:224 +msgid "Organization responsible for this application" +msgstr "" + +#: lib/applicationeditform.php:230 +msgid "URL for the homepage of the organization" +msgstr "" + +#: lib/applicationeditform.php:236 +msgid "URL to redirect to after authentication" +msgstr "" + +#: lib/applicationeditform.php:258 +msgid "Browser" +msgstr "Merdeer" + +#: lib/applicationeditform.php:274 +msgid "Desktop" +msgstr "" + +#: lib/applicationeditform.php:275 +msgid "Type of application, browser or desktop" +msgstr "" + +#: lib/applicationeditform.php:297 +msgid "Read-only" +msgstr "" + +#: lib/applicationeditform.php:315 +msgid "Read-write" +msgstr "" + +#: lib/applicationeditform.php:316 +msgid "Default access for this application: read-only, or read-write" +msgstr "" + +#: lib/applicationlist.php:154 +msgid "Revoke" +msgstr "" + +#: lib/attachmentlist.php:87 +msgid "Attachments" +msgstr "" + +#: lib/attachmentlist.php:265 +msgid "Author" +msgstr "Aozer" + +#: lib/attachmentlist.php:278 +msgid "Provider" +msgstr "Pourvezer" + +#: lib/attachmentnoticesection.php:67 +msgid "Notices where this attachment appears" +msgstr "" + +#: lib/attachmenttagcloudsection.php:48 +msgid "Tags for this attachment" +msgstr "" + +#: lib/authenticationplugin.php:220 lib/authenticationplugin.php:225 +msgid "Password changing failed" +msgstr "" + +#: lib/authenticationplugin.php:235 +msgid "Password changing is not allowed" +msgstr "" + +#: lib/channel.php:138 lib/channel.php:158 +msgid "Command results" +msgstr "" + +#: lib/channel.php:210 lib/mailhandler.php:142 +msgid "Command complete" +msgstr "" + +#: lib/channel.php:221 +msgid "Command failed" +msgstr "" + +#: lib/command.php:44 +msgid "Sorry, this command is not yet implemented." +msgstr "" + +#: lib/command.php:88 +#, php-format +msgid "Could not find a user with nickname %s" +msgstr "" + +#: lib/command.php:92 +msgid "It does not make a lot of sense to nudge yourself!" +msgstr "" + +#: lib/command.php:99 +#, php-format +msgid "Nudge sent to %s" +msgstr "" + +#: lib/command.php:126 +#, php-format +msgid "" +"Subscriptions: %1$s\n" +"Subscribers: %2$s\n" +"Notices: %3$s" +msgstr "" + +#: lib/command.php:152 lib/command.php:390 lib/command.php:451 +msgid "Notice with that id does not exist" +msgstr "" + +#: lib/command.php:168 lib/command.php:406 lib/command.php:467 +#: lib/command.php:523 +msgid "User has no last notice" +msgstr "" + +#: lib/command.php:190 +msgid "Notice marked as fave." +msgstr "" + +#: lib/command.php:217 +msgid "You are already a member of that group" +msgstr "" + +#: lib/command.php:231 +#, php-format +msgid "Could not join user %s to group %s" +msgstr "" + +#: lib/command.php:236 +#, php-format +msgid "%s joined group %s" +msgstr "%s zo emezelet er strollad %s" + +#: lib/command.php:275 +#, php-format +msgid "Could not remove user %s to group %s" +msgstr "" + +#: lib/command.php:280 +#, php-format +msgid "%s left group %s" +msgstr "%s {{Gender:.|en|he}} deus kuitaet ar strollad %s" + +#: lib/command.php:309 +#, php-format +msgid "Fullname: %s" +msgstr "Anv klok : %s" + +#: lib/command.php:312 lib/mail.php:254 +#, php-format +msgid "Location: %s" +msgstr "" + +#: lib/command.php:315 lib/mail.php:256 +#, php-format +msgid "Homepage: %s" +msgstr "" + +#: lib/command.php:318 +#, php-format +msgid "About: %s" +msgstr "Diwar-benn : %s" + +#: lib/command.php:349 +#, php-format +msgid "Message too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:367 +#, php-format +msgid "Direct message to %s sent" +msgstr "" + +#: lib/command.php:369 +msgid "Error sending direct message." +msgstr "" + +#: lib/command.php:413 +msgid "Cannot repeat your own notice" +msgstr "" + +#: lib/command.php:418 +msgid "Already repeated that notice" +msgstr "" + +#: lib/command.php:426 +#, php-format +msgid "Notice from %s repeated" +msgstr "" + +#: lib/command.php:428 +msgid "Error repeating notice." +msgstr "" + +#: lib/command.php:482 +#, php-format +msgid "Notice too long - maximum is %d characters, you sent %d" +msgstr "" + +#: lib/command.php:491 +#, php-format +msgid "Reply to %s sent" +msgstr "" + +#: lib/command.php:493 +msgid "Error saving notice." +msgstr "" + +#: lib/command.php:547 +msgid "Specify the name of the user to subscribe to" +msgstr "" + +#: lib/command.php:554 lib/command.php:589 +msgid "No such user" +msgstr "" + +#: lib/command.php:561 +#, php-format +msgid "Subscribed to %s" +msgstr "" + +#: lib/command.php:582 lib/command.php:685 +msgid "Specify the name of the user to unsubscribe from" +msgstr "" + +#: lib/command.php:595 +#, php-format +msgid "Unsubscribed from %s" +msgstr "" + +#: lib/command.php:613 lib/command.php:636 +msgid "Command not yet implemented." +msgstr "" + +#: lib/command.php:616 +msgid "Notification off." +msgstr "" + +#: lib/command.php:618 +msgid "Can't turn off notification." +msgstr "" + +#: lib/command.php:639 +msgid "Notification on." +msgstr "" + +#: lib/command.php:641 +msgid "Can't turn on notification." +msgstr "" + +#: lib/command.php:654 +msgid "Login command is disabled" +msgstr "" + +#: lib/command.php:665 +#, php-format +msgid "This link is useable only once, and is good for only 2 minutes: %s" +msgstr "" + +#: lib/command.php:692 +#, php-format +msgid "Unsubscribed %s" +msgstr "" + +#: lib/command.php:709 +msgid "You are not subscribed to anyone." +msgstr "" + +#: lib/command.php:711 +#, fuzzy +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "You are subscribed to this person:" +msgstr[1] "You are subscribed to these people:" + +#: lib/command.php:731 +msgid "No one is subscribed to you." +msgstr "" + +#: lib/command.php:733 +#, fuzzy +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "This person is subscribed to you:" +msgstr[1] "These people are subscribed to you:" + +#: lib/command.php:753 +msgid "You are not a member of any groups." +msgstr "" + +#: lib/command.php:755 +#, fuzzy +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "You are a member of this group:" +msgstr[1] "You are a member of these groups:" + +#: lib/command.php:769 +msgid "" +"Commands:\n" +"on - turn on notifications\n" +"off - turn off notifications\n" +"help - show this help\n" +"follow <nickname> - subscribe to user\n" +"groups - lists the groups you have joined\n" +"subscriptions - list the people you follow\n" +"subscribers - list the people that follow you\n" +"leave <nickname> - unsubscribe from user\n" +"d <nickname> <text> - direct message to user\n" +"get <nickname> - get last notice from user\n" +"whois <nickname> - get profile info on user\n" +"lose <nickname> - force user to stop following you\n" +"fav <nickname> - add user's last notice as a 'fave'\n" +"fav #<notice_id> - add notice with the given id as a 'fave'\n" +"repeat #<notice_id> - repeat a notice with a given id\n" +"repeat <nickname> - repeat the last notice from user\n" +"reply #<notice_id> - reply to notice with a given id\n" +"reply <nickname> - reply to the last notice from user\n" +"join <group> - join group\n" +"login - Get a link to login to the web interface\n" +"drop <group> - leave group\n" +"stats - get your stats\n" +"stop - same as 'off'\n" +"quit - same as 'off'\n" +"sub <nickname> - same as 'follow'\n" +"unsub <nickname> - same as 'leave'\n" +"last <nickname> - same as 'get'\n" +"on <nickname> - not yet implemented.\n" +"off <nickname> - not yet implemented.\n" +"nudge <nickname> - remind a user to update.\n" +"invite <phone number> - not yet implemented.\n" +"track <word> - not yet implemented.\n" +"untrack <word> - not yet implemented.\n" +"track off - not yet implemented.\n" +"untrack all - not yet implemented.\n" +"tracks - not yet implemented.\n" +"tracking - not yet implemented.\n" +msgstr "" + +#: lib/common.php:148 +msgid "No configuration file found. " +msgstr "" + +#: lib/common.php:149 +msgid "I looked for configuration files in the following places: " +msgstr "" + +#: lib/common.php:151 +msgid "You may wish to run the installer to fix this." +msgstr "" + +#: lib/common.php:152 +msgid "Go to the installer." +msgstr "" + +#: lib/connectsettingsaction.php:110 +msgid "IM" +msgstr "IM" + +#: lib/connectsettingsaction.php:111 +msgid "Updates by instant messenger (IM)" +msgstr "" + +#: lib/connectsettingsaction.php:116 +msgid "Updates by SMS" +msgstr "" + +#: lib/connectsettingsaction.php:120 +msgid "Connections" +msgstr "" + +#: lib/connectsettingsaction.php:121 +msgid "Authorized connected applications" +msgstr "" + +#: lib/dberroraction.php:60 +msgid "Database error" +msgstr "" + +#: lib/designsettings.php:105 +msgid "Upload file" +msgstr "" + +#: lib/designsettings.php:109 +msgid "" +"You can upload your personal background image. The maximum file size is 2MB." +msgstr "" + +#: lib/designsettings.php:418 +msgid "Design defaults restored." +msgstr "" + +#: lib/disfavorform.php:114 lib/disfavorform.php:140 +msgid "Disfavor this notice" +msgstr "" + +#: lib/favorform.php:114 lib/favorform.php:140 +msgid "Favor this notice" +msgstr "" + +#: lib/favorform.php:140 +msgid "Favor" +msgstr "" + +#: lib/feed.php:85 +msgid "RSS 1.0" +msgstr "RSS 1.0" + +#: lib/feed.php:87 +msgid "RSS 2.0" +msgstr "RSS 2.0" + +#: lib/feed.php:89 +msgid "Atom" +msgstr "Atom" + +#: lib/feed.php:91 +msgid "FOAF" +msgstr "Mignon ur mignon (FOAF)" + +#: lib/feedlist.php:64 +msgid "Export data" +msgstr "" + +#: lib/galleryaction.php:121 +msgid "Filter tags" +msgstr "Silañ ar balizennoù" + +#: lib/galleryaction.php:131 +msgid "All" +msgstr "An holl" + +#: lib/galleryaction.php:139 +msgid "Select tag to filter" +msgstr "" + +#: lib/galleryaction.php:140 +msgid "Tag" +msgstr "Merk" + +#: lib/galleryaction.php:141 +msgid "Choose a tag to narrow list" +msgstr "" + +#: lib/galleryaction.php:143 +msgid "Go" +msgstr "Mont" + +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + +#: lib/groupeditform.php:163 +msgid "URL of the homepage or blog of the group or topic" +msgstr "" + +#: lib/groupeditform.php:168 +msgid "Describe the group or topic" +msgstr "" + +#: lib/groupeditform.php:170 +#, php-format +msgid "Describe the group or topic in %d characters" +msgstr "" + +#: lib/groupeditform.php:179 +msgid "" +"Location for the group, if any, like \"City, State (or Region), Country\"" +msgstr "" + +#: lib/groupeditform.php:187 +#, php-format +msgid "Extra nicknames for the group, comma- or space- separated, max %d" +msgstr "" + +#: lib/groupnav.php:85 +msgid "Group" +msgstr "Strollad" + +#: lib/groupnav.php:101 +msgid "Blocked" +msgstr "Stanket" + +#: lib/groupnav.php:102 +#, php-format +msgid "%s blocked users" +msgstr "%s implijer stanket" + +#: lib/groupnav.php:108 +#, php-format +msgid "Edit %s group properties" +msgstr "" + +#: lib/groupnav.php:113 +msgid "Logo" +msgstr "Logo" + +#: lib/groupnav.php:114 +#, php-format +msgid "Add or edit %s logo" +msgstr "" + +#: lib/groupnav.php:120 +#, php-format +msgid "Add or edit %s design" +msgstr "" + +#: lib/groupsbymemberssection.php:71 +msgid "Groups with most members" +msgstr "" + +#: lib/groupsbypostssection.php:71 +msgid "Groups with most posts" +msgstr "" + +#: lib/grouptagcloudsection.php:56 +#, php-format +msgid "Tags in %s group's notices" +msgstr "" + +#: lib/htmloutputter.php:103 +msgid "This page is not available in a media type you accept" +msgstr "" + +#: lib/imagefile.php:75 +#, php-format +msgid "That file is too big. The maximum file size is %s." +msgstr "" + +#: lib/imagefile.php:80 +msgid "Partial upload." +msgstr "" + +#: lib/imagefile.php:88 lib/mediafile.php:170 +msgid "System error uploading file." +msgstr "" + +#: lib/imagefile.php:96 +msgid "Not an image or corrupt file." +msgstr "" + +#: lib/imagefile.php:109 +msgid "Unsupported image file format." +msgstr "" + +#: lib/imagefile.php:122 +msgid "Lost our file." +msgstr "" + +#: lib/imagefile.php:166 lib/imagefile.php:231 +msgid "Unknown file type" +msgstr "" + +#: lib/imagefile.php:251 +msgid "MB" +msgstr "Mo" + +#: lib/imagefile.php:253 +msgid "kB" +msgstr "Ko" + +#: lib/jabber.php:220 +#, php-format +msgid "[%s]" +msgstr "[%s]" + +#: lib/jabber.php:400 +#, php-format +msgid "Unknown inbox source %d." +msgstr "" + +#: lib/joinform.php:114 +msgid "Join" +msgstr "Stagañ" + +#: lib/leaveform.php:114 +msgid "Leave" +msgstr "Kuitañ" + +#: lib/logingroupnav.php:80 +msgid "Login with a username and password" +msgstr "" + +#: lib/logingroupnav.php:86 +msgid "Sign up for a new account" +msgstr "" + +#: lib/mail.php:172 +msgid "Email address confirmation" +msgstr "" + +#: lib/mail.php:174 +#, php-format +msgid "" +"Hey, %s.\n" +"\n" +"Someone just entered this email address on %s.\n" +"\n" +"If it was you, and you want to confirm your entry, use the URL below:\n" +"\n" +"\t%s\n" +"\n" +"If not, just ignore this message.\n" +"\n" +"Thanks for your time, \n" +"%s\n" +msgstr "" + +#: lib/mail.php:236 +#, php-format +msgid "%1$s is now listening to your notices on %2$s." +msgstr "" + +#: lib/mail.php:241 +#, php-format +msgid "" +"%1$s is now listening to your notices on %2$s.\n" +"\n" +"\t%3$s\n" +"\n" +"%4$s%5$s%6$s\n" +"Faithfully yours,\n" +"%7$s.\n" +"\n" +"----\n" +"Change your email address or notification options at %8$s\n" +msgstr "" + +#: lib/mail.php:258 +#, php-format +msgid "Bio: %s" +msgstr "" + +#: lib/mail.php:286 +#, php-format +msgid "New email address for posting to %s" +msgstr "" + +#: lib/mail.php:289 +#, php-format +msgid "" +"You have a new posting address on %1$s.\n" +"\n" +"Send email to %2$s to post new messages.\n" +"\n" +"More email instructions at %3$s.\n" +"\n" +"Faithfully yours,\n" +"%4$s" +msgstr "" + +#: lib/mail.php:413 +#, php-format +msgid "%s status" +msgstr "Statud %s" + +#: lib/mail.php:439 +msgid "SMS confirmation" +msgstr "" + +#: lib/mail.php:463 +#, php-format +msgid "You've been nudged by %s" +msgstr "" + +#: lib/mail.php:467 +#, php-format +msgid "" +"%1$s (%2$s) is wondering what you are up to these days and is inviting you " +"to post some news.\n" +"\n" +"So let's hear from you :)\n" +"\n" +"%3$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%4$s\n" +msgstr "" + +#: lib/mail.php:510 +#, php-format +msgid "New private message from %s" +msgstr "Kemenadenn personel nevez a-berzh %s" + +#: lib/mail.php:514 +#, php-format +msgid "" +"%1$s (%2$s) sent you a private message:\n" +"\n" +"------------------------------------------------------\n" +"%3$s\n" +"------------------------------------------------------\n" +"\n" +"You can reply to their message here:\n" +"\n" +"%4$s\n" +"\n" +"Don't reply to this email; it won't get to them.\n" +"\n" +"With kind regards,\n" +"%5$s\n" +msgstr "" + +#: lib/mail.php:559 +#, php-format +msgid "%s (@%s) added your notice as a favorite" +msgstr "" + +#: lib/mail.php:561 +#, php-format +msgid "" +"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" +"\n" +"The URL of your notice is:\n" +"\n" +"%3$s\n" +"\n" +"The text of your notice is:\n" +"\n" +"%4$s\n" +"\n" +"You can see the list of %1$s's favorites here:\n" +"\n" +"%5$s\n" +"\n" +"Faithfully yours,\n" +"%6$s\n" +msgstr "" + +#: lib/mail.php:624 +#, php-format +msgid "%s (@%s) sent a notice to your attention" +msgstr "" + +#: lib/mail.php:626 +#, php-format +msgid "" +"%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" +"\n" +"The notice is here:\n" +"\n" +"\t%3$s\n" +"\n" +"It reads:\n" +"\n" +"\t%4$s\n" +"\n" +msgstr "" + +#: lib/mailbox.php:89 +msgid "Only the user can read their own mailboxes." +msgstr "" + +#: lib/mailbox.php:139 +msgid "" +"You have no private messages. You can send private message to engage other " +"users in conversation. People can send you messages for your eyes only." +msgstr "" + +#: lib/mailbox.php:227 lib/noticelist.php:482 +msgid "from" +msgstr "eus" + +#: lib/mailhandler.php:37 +msgid "Could not parse message." +msgstr "" + +#: lib/mailhandler.php:42 +msgid "Not a registered user." +msgstr "" + +#: lib/mailhandler.php:46 +msgid "Sorry, that is not your incoming email address." +msgstr "" + +#: lib/mailhandler.php:50 +msgid "Sorry, no incoming email allowed." +msgstr "" + +#: lib/mailhandler.php:228 +#, php-format +msgid "Unsupported message type: %s" +msgstr "" + +#: lib/mediafile.php:98 lib/mediafile.php:123 +msgid "There was a database error while saving your file. Please try again." +msgstr "" + +#: lib/mediafile.php:142 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "" + +#: lib/mediafile.php:147 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form." +msgstr "" + +#: lib/mediafile.php:152 +msgid "The uploaded file was only partially uploaded." +msgstr "" + +#: lib/mediafile.php:159 +msgid "Missing a temporary folder." +msgstr "" + +#: lib/mediafile.php:162 +msgid "Failed to write file to disk." +msgstr "" + +#: lib/mediafile.php:165 +msgid "File upload stopped by extension." +msgstr "" + +#: lib/mediafile.php:179 lib/mediafile.php:216 +msgid "File exceeds user's quota." +msgstr "" + +#: lib/mediafile.php:196 lib/mediafile.php:233 +msgid "File could not be moved to destination directory." +msgstr "" + +#: lib/mediafile.php:201 lib/mediafile.php:237 +msgid "Could not determine file's MIME type." +msgstr "" + +#: lib/mediafile.php:270 +#, php-format +msgid " Try using another %s format." +msgstr "" + +#: lib/mediafile.php:275 +#, php-format +msgid "%s is not a supported file type on this server." +msgstr "" + +#: lib/messageform.php:120 +msgid "Send a direct notice" +msgstr "" + +#: lib/messageform.php:146 +msgid "To" +msgstr "Da" + +#: lib/messageform.php:159 lib/noticeform.php:185 +msgid "Available characters" +msgstr "" + +#: lib/messageform.php:178 lib/noticeform.php:236 +msgctxt "Send button for sending notice" +msgid "Send" +msgstr "" + +#: lib/noticeform.php:160 +msgid "Send a notice" +msgstr "Kas un ali" + +#: lib/noticeform.php:173 +#, php-format +msgid "What's up, %s?" +msgstr "Penaos 'mañ kont, %s ?" + +#: lib/noticeform.php:192 +msgid "Attach" +msgstr "Stagañ" + +#: lib/noticeform.php:196 +msgid "Attach a file" +msgstr "Stagañ ur restr" + +#: lib/noticeform.php:212 +msgid "Share my location" +msgstr "" + +#: lib/noticeform.php:215 +msgid "Do not share my location" +msgstr "" + +#: lib/noticeform.php:216 +msgid "" +"Sorry, retrieving your geo location is taking longer than expected, please " +"try again later" +msgstr "" + +#: lib/noticelist.php:429 +#, php-format +msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" +msgstr "" + +#: lib/noticelist.php:430 +msgid "N" +msgstr "N" + +#: lib/noticelist.php:430 +msgid "S" +msgstr "S" + +#: lib/noticelist.php:431 +msgid "E" +msgstr "R" + +#: lib/noticelist.php:431 +msgid "W" +msgstr "K" + +#: lib/noticelist.php:438 +msgid "at" +msgstr "e" + +#: lib/noticelist.php:566 +msgid "in context" +msgstr "" + +#: lib/noticelist.php:601 +msgid "Repeated by" +msgstr "" + +#: lib/noticelist.php:628 +msgid "Reply to this notice" +msgstr "" + +#: lib/noticelist.php:629 +msgid "Reply" +msgstr "Respont" + +#: lib/noticelist.php:673 +msgid "Notice repeated" +msgstr "" + +#: lib/nudgeform.php:116 +msgid "Nudge this user" +msgstr "Kas ur blinkadenn d'an implijer-mañ" + +#: lib/nudgeform.php:128 +msgid "Nudge" +msgstr "Blinkadenn" + +#: lib/nudgeform.php:128 +msgid "Send a nudge to this user" +msgstr "Kas ur blinkadenn d'an implijer-mañ" + +#: lib/oauthstore.php:283 +msgid "Error inserting new profile" +msgstr "" + +#: lib/oauthstore.php:291 +msgid "Error inserting avatar" +msgstr "" + +#: lib/oauthstore.php:311 +msgid "Error inserting remote profile" +msgstr "" + +#: lib/oauthstore.php:345 +msgid "Duplicate notice" +msgstr "Eilañ an ali" + +#: lib/oauthstore.php:490 +msgid "Couldn't insert new subscription." +msgstr "" + +#: lib/personalgroupnav.php:99 +msgid "Personal" +msgstr "Hiniennel" + +#: lib/personalgroupnav.php:104 +msgid "Replies" +msgstr "Respontoù" + +#: lib/personalgroupnav.php:114 +msgid "Favorites" +msgstr "Pennrolloù" + +#: lib/personalgroupnav.php:125 +msgid "Inbox" +msgstr "Boest resev" + +#: lib/personalgroupnav.php:126 +msgid "Your incoming messages" +msgstr "ar gemennadennoù o peus resevet" + +#: lib/personalgroupnav.php:130 +msgid "Outbox" +msgstr "Boest kas" + +#: lib/personalgroupnav.php:131 +msgid "Your sent messages" +msgstr "Ar c'hemenadennoù kaset ganeoc'h" + +#: lib/personaltagcloudsection.php:56 +#, php-format +msgid "Tags in %s's notices" +msgstr "" + +#: lib/plugin.php:114 +msgid "Unknown" +msgstr "Dianav" + +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 +msgid "Subscriptions" +msgstr "Koumanantoù" + +#: lib/profileaction.php:126 +msgid "All subscriptions" +msgstr "" + +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 +msgid "Subscribers" +msgstr "Ar re koumanantet" + +#: lib/profileaction.php:159 +msgid "All subscribers" +msgstr "An holl re koumanantet" + +#: lib/profileaction.php:180 +msgid "User ID" +msgstr "ID an implijer" + +#: lib/profileaction.php:185 +msgid "Member since" +msgstr "Ezel abaoe" + +#: lib/profileaction.php:247 +msgid "All groups" +msgstr "An holl strolladoù" + +#: lib/profileformaction.php:123 +msgid "No return-to arguments." +msgstr "" + +#: lib/profileformaction.php:137 +msgid "Unimplemented method." +msgstr "" + +#: lib/publicgroupnav.php:78 +msgid "Public" +msgstr "Foran" + +#: lib/publicgroupnav.php:82 +msgid "User groups" +msgstr "Strolladoù implijerien" + +#: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 +msgid "Recent tags" +msgstr "" + +#: lib/publicgroupnav.php:88 +msgid "Featured" +msgstr "" + +#: lib/publicgroupnav.php:92 +msgid "Popular" +msgstr "Poblek" + +#: lib/repeatform.php:107 +msgid "Repeat this notice?" +msgstr "Adkregiñ gant an ali-mañ ?" + +#: lib/repeatform.php:132 +msgid "Repeat this notice" +msgstr "Adkregiñ gant an ali-mañ" + +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Stankañ an implijer-mañ eus ar strollad-se" + +#: lib/router.php:671 +msgid "No single user defined for single-user mode." +msgstr "" + +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "Poull-traezh" + +#: lib/sandboxform.php:78 +msgid "Sandbox this user" +msgstr "" + +#: lib/searchaction.php:120 +msgid "Search site" +msgstr "Klask el lec'hienn" + +#: lib/searchaction.php:126 +msgid "Keyword(s)" +msgstr "Ger(ioù) alc'hwez" + +#: lib/searchaction.php:127 +msgid "Search" +msgstr "Klask" + +#: lib/searchaction.php:162 +msgid "Search help" +msgstr "Skoazell diwar-benn ar c'hlask" + +#: lib/searchgroupnav.php:80 +msgid "People" +msgstr "Tud" + +#: lib/searchgroupnav.php:81 +msgid "Find people on this site" +msgstr "Klask tud el lec'hienn-mañ" + +#: lib/searchgroupnav.php:83 +msgid "Find content of notices" +msgstr "Klask alioù en danvez" + +#: lib/searchgroupnav.php:85 +msgid "Find groups on this site" +msgstr "Klask strolladoù el lec'hienn-mañ" + +#: lib/section.php:89 +msgid "Untitled section" +msgstr "" + +#: lib/section.php:106 +msgid "More..." +msgstr "Muioc'h..." + +#: lib/silenceform.php:67 +msgid "Silence" +msgstr "Didrouz" + +#: lib/silenceform.php:78 +msgid "Silence this user" +msgstr "" + +#: lib/subgroupnav.php:83 +#, php-format +msgid "People %s subscribes to" +msgstr "" + +#: lib/subgroupnav.php:91 +#, php-format +msgid "People subscribed to %s" +msgstr "" + +#: lib/subgroupnav.php:99 +#, php-format +msgid "Groups %s is a member of" +msgstr "" + +#: lib/subgroupnav.php:105 +msgid "Invite" +msgstr "Pediñ" + +#: lib/subgroupnav.php:106 +#, php-format +msgid "Invite friends and colleagues to join you on %s" +msgstr "" + +#: lib/subscriberspeopleselftagcloudsection.php:48 +#: lib/subscriptionspeopleselftagcloudsection.php:48 +msgid "People Tagcloud as self-tagged" +msgstr "" + +#: lib/subscriberspeopletagcloudsection.php:48 +#: lib/subscriptionspeopletagcloudsection.php:48 +msgid "People Tagcloud as tagged" +msgstr "" + +#: lib/tagcloudsection.php:56 +msgid "None" +msgstr "Hini ebet" + +#: lib/topposterssection.php:74 +msgid "Top posters" +msgstr "" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +msgid "Unsandbox this user" +msgstr "" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +msgid "Unsilence this user" +msgstr "" + +#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 +msgid "Unsubscribe from this user" +msgstr "" + +#: lib/unsubscribeform.php:137 +msgid "Unsubscribe" +msgstr "" + +#: lib/userprofile.php:116 +msgid "Edit Avatar" +msgstr "Kemmañ an Avatar" + +#: lib/userprofile.php:236 +msgid "User actions" +msgstr "Obererezh an implijer" + +#: lib/userprofile.php:251 +msgid "Edit profile settings" +msgstr "" + +#: lib/userprofile.php:252 +msgid "Edit" +msgstr "Aozañ" + +#: lib/userprofile.php:275 +msgid "Send a direct message to this user" +msgstr "Kas ur gemennadenn war-eeun d'an implijer-mañ" + +#: lib/userprofile.php:276 +msgid "Message" +msgstr "Kemennadenn" + +#: lib/userprofile.php:314 +msgid "Moderate" +msgstr "Habaskaat" + +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Strolladoù implijerien" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Merourien" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Habaskaat" + +#: lib/util.php:1015 +msgid "a few seconds ago" +msgstr "un nebeud eilennoù zo" + +#: lib/util.php:1017 +msgid "about a minute ago" +msgstr "1 vunutenn zo well-wazh" + +#: lib/util.php:1019 +#, php-format +msgid "about %d minutes ago" +msgstr "%d munutenn zo well-wazh" + +#: lib/util.php:1021 +msgid "about an hour ago" +msgstr "1 eurvezh zo well-wazh" + +#: lib/util.php:1023 +#, php-format +msgid "about %d hours ago" +msgstr "%d eurvezh zo well-wazh" + +#: lib/util.php:1025 +msgid "about a day ago" +msgstr "1 devezh zo well-wazh" + +#: lib/util.php:1027 +#, php-format +msgid "about %d days ago" +msgstr "%d devezh zo well-wazh" + +#: lib/util.php:1029 +msgid "about a month ago" +msgstr "miz zo well-wazh" + +#: lib/util.php:1031 +#, php-format +msgid "about %d months ago" +msgstr "%d miz zo well-wazh" + +#: lib/util.php:1033 +msgid "about a year ago" +msgstr "bloaz zo well-wazh" + +#: lib/webcolor.php:82 +#, php-format +msgid "%s is not a valid color!" +msgstr "" + +#: lib/webcolor.php:123 +#, php-format +msgid "%s is not a valid color! Use 3 or 6 hex chars." +msgstr "" + +#: lib/xmppmanager.php:402 +#, php-format +msgid "Message too long - maximum is %1$d characters, you sent %2$d." +msgstr "" +"Re hir eo ar gemennadenn - ar ment brasañ a zo %1$d arouezenn, %2$d " +"arouezenn o peus lakaet." diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 8b12f44a9..f38b97ccf 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:15+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:02+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accés" @@ -124,7 +125,7 @@ msgstr "%s perfils blocats, pà gina %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,7 +182,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Un mateix i amics" @@ -208,11 +209,11 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "No s'ha trobat el mètode API!" @@ -586,7 +587,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Compte" @@ -677,18 +678,6 @@ msgstr "%s / Preferits de %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s actualitzacions favorites per %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s lÃnia temporal" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualitzacions de %1$s a %2$s!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -699,12 +688,12 @@ msgstr "%1$s / Notificacions contestant a %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s notificacions que responen a notificacions de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s lÃnia temporal pública" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s notificacions de tots!" @@ -952,7 +941,7 @@ msgid "Conversation" msgstr "Conversa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avisos" @@ -974,7 +963,7 @@ msgstr "No sou un membre del grup." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." @@ -1169,8 +1158,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1298,7 +1288,7 @@ msgstr "la descripció és massa llarga (mà x. %d carà cters)." msgid "Could not update group." msgstr "No s'ha pogut actualitzar el grup." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "No s'han pogut crear els à lies." @@ -1427,7 +1417,7 @@ msgid "Cannot normalize that email address" msgstr "No es pot normalitzar l'adreça electrònica." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adreça de correu electrònic no và lida." @@ -1616,6 +1606,25 @@ msgstr "No existeix el fitxer." msgid "Cannot read file." msgstr "No es pot llegir el fitxer." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Mida invà lida." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "No pots enviar un missatge a aquest usuari." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "L'usuari ja està silenciat." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1763,12 +1772,18 @@ msgstr "Fes-lo administrador" msgid "Make this user an admin" msgstr "Fes l'usuari administrador" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s lÃnia temporal" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualitzacions dels membres de %1$s el %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grups" @@ -2387,8 +2402,8 @@ msgstr "tipus de contingut " msgid "Only " msgstr "Només " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Format de data no suportat." @@ -2534,7 +2549,8 @@ msgstr "No es pot guardar la nova contrasenya." msgid "Password saved." msgstr "Contrasenya guardada." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Camins" @@ -2654,7 +2670,7 @@ msgstr "Directori de fons" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Mai" @@ -2711,11 +2727,11 @@ msgstr "Etiqueta no và lida per a la gent: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuaris que s'han etiquetat %s - pà gina %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "El contingut de l'avÃs és invà lid" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2797,7 +2813,7 @@ msgstr "" "Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " "por espais" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2825,7 +2841,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia és massa llarga (mà x. %d carà cters)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Franja horà ria no seleccionada." @@ -3138,7 +3154,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contrasenya de dalt. Requerit." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correu electrònic" @@ -3244,7 +3260,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del teu perfil en un altre servei de microblogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscriure's" @@ -3349,6 +3365,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostes a %1$s el %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "No podeu silenciar els usuaris d'aquest lloc." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuari sense perfil coincident" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3364,7 +3390,9 @@ msgstr "No pots enviar un missatge a aquest usuari." msgid "User is already sandboxed." msgstr "Un usuari t'ha bloquejat." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessions" @@ -3389,7 +3417,7 @@ msgstr "Depuració de la sessió" msgid "Turn on debugging output for sessions." msgstr "Activa la sortida de depuració per a les sessions." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Desa els parà metres del lloc" @@ -3423,8 +3451,8 @@ msgstr "Paginació" msgid "Description" msgstr "Descripció" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "EstadÃstiques" @@ -3558,45 +3586,45 @@ msgstr "Àlies" msgid "Group actions" msgstr "Accions del grup" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed d'avisos del grup %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Safata de sortida per %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Cap)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tots els membres" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "S'ha creat" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3606,7 +3634,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3617,7 +3645,7 @@ msgstr "" "**%s** és un grup d'usuaris a %%%%site.name%%%%, un servei de [microblogging]" "(http://ca.wikipedia.org/wiki/Microblogging)" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administradors" @@ -3732,149 +3760,140 @@ msgid "User is already silenced." msgstr "L'usuari ja està silenciat." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Parà metres bà sic d'aquest lloc basat en l'StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "El nom del lloc ha de tenir una longitud superior a zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Heu de tenir una adreça electrònica de contacte và lida" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, fuzzy, php-format msgid "Unknown language \"%s\"." msgstr "Llengua desconeguda «%s»" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nom del lloc" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "El nom del vostre lloc, com ara «El microblog de l'empresa»" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "El text que s'utilitza a l'enllaç dels crèdits al peu de cada pà gina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Adreça electrònica de contacte del vostre lloc" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fus horari per defecte" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fus horari per defecte del lloc; normalment UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Llengua per defecte del lloc" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantà nies" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "En una tasca planificada" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantà nies de dades" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Freqüència" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Les instantà nies s'enviaran a aquest URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "LÃmits" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "LÃmits del text" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "LÃmit de duplicats" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quant de temps cal que esperin els usuaris (en segons) per enviar el mateix " "de nou." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "AvÃs del lloc" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nou missatge" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "No s'ha pogut guardar la teva configuració de Twitter!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "AvÃs del lloc" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "AvÃs del lloc" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Parà metres de l'SMS" @@ -3978,6 +3997,66 @@ msgstr "" msgid "No code entered" msgstr "No hi ha cap codi entrat" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantà nies" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Canvia la configuració del lloc" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "En una tasca planificada" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantà nies de dades" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Freqüència" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Les instantà nies s'enviaran a aquest URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Desa els parà metres del lloc" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "No està s subscrit a aquest perfil." @@ -4185,7 +4264,7 @@ msgstr "No id en el perfil sol·licitat." msgid "Unsubscribed" msgstr "No subscrit" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4389,16 +4468,22 @@ msgstr "%s membre/s en el grup, pà gina %d" msgid "Search for more groups" msgstr "Cerca més grups" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s no és membre de cap grup." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualitzacions de %1$s a %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4442,7 +4527,7 @@ msgstr "" msgid "Plugins" msgstr "Connectors" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Sessions" @@ -4511,23 +4596,23 @@ msgstr "No s'ha pogut inserir el missatge amb la nova URI." msgid "DB error inserting hashtag: %s" msgstr "Hashtag de l'error de la base de dades:%s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problema en guardar l'avÃs." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema al guardar la notificació. Usuari desconegut." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Masses notificacions massa rà pid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4536,20 +4621,20 @@ msgstr "" "Masses notificacions massa rà pid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema en guardar l'avÃs." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema en guardar l'avÃs." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4576,7 +4661,12 @@ msgstr "No està s subscrit!" msgid "Couldn't delete self-subscription." msgstr "No s'ha pogut eliminar la subscripció." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "No s'ha pogut eliminar la subscripció." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "No s'ha pogut eliminar la subscripció." @@ -4585,20 +4675,20 @@ msgstr "No s'ha pogut eliminar la subscripció." msgid "Welcome to %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "No s'ha pogut crear el grup." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "No s'ha pogut establir la pertinença d'aquest grup." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "No s'ha pogut establir la pertinença d'aquest grup." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "No s'ha pogut guardar la subscripció." @@ -4641,194 +4731,188 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Pà gina sense titol" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegació primà ria del lloc" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal i lÃnia temporal dels amics" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Compte" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "No s'ha pogut redirigir al servidor: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connexió" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Canvia la configuració del lloc" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amics i companys perquè participin a %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convida" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Finalitza la sessió del lloc" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Finalitza la sessió" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un compte" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registre" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Inicia una sessió al lloc" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inici de sessió" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca gent o text" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "AvÃs del lloc" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Notificació pà gina" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegació del lloc secundà ria" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ajuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Quant a" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Preguntes més freqüents" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privadesa" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Font" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacte" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "InsÃgnia" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4837,12 +4921,12 @@ msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** és un servei de microblogging." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4853,53 +4937,53 @@ msgstr "" "%s, disponible sota la [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Llicència de contingut del lloc" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tot " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "llicència." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginació" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Posteriors" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Anteriors" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4915,97 +4999,86 @@ msgid "Changes to that panel are not allowed." msgstr "Registre no permès." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Comanda encara no implementada." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Comanda encara no implementada." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "No s'ha pogut guardar la teva configuració de Twitter!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuració bà sica del lloc" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Lloc" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuració del disseny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Disseny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Configuració dels camins" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuari" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Configuració del disseny" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accés" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuració dels camins" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Camins" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Configuració del disseny" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessions" +msgid "Edit site notice" +msgstr "AvÃs del lloc" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuració dels camins" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5500,6 +5573,11 @@ msgstr "Elegeix una etiqueta para reduir la llista" msgid "Go" msgstr "Vés-hi" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL del teu web, blog del grup u tema" @@ -6047,10 +6125,6 @@ msgstr "Respostes" msgid "Favorites" msgstr "Preferits" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuari" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Safata d'entrada" @@ -6077,7 +6151,7 @@ msgstr "Etiquetes en les notificacions de %s's" msgid "Unknown" msgstr "Acció desconeguda" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscripcions" @@ -6085,23 +6159,23 @@ msgstr "Subscripcions" msgid "All subscriptions" msgstr "Totes les subscripcions" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptors" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tots els subscriptors" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID de l'usuari" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membre des de" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tots els grups" @@ -6143,7 +6217,12 @@ msgstr "Repeteix l'avÃs" msgid "Repeat this notice" msgstr "Repeteix l'avÃs" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloca l'usuari del grup" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6300,47 +6379,64 @@ msgstr "Missatge" msgid "Moderate" msgstr "Modera" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil de l'usuari" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administradors" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modera" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "fa pocs segons" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "fa un minut" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "fa %d minuts" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "fa una hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "fa %d hores" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "fa un dia" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "fa %d dies" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "fa un mes" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "fa %d mesos" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "fa un any" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 9137d3708..f4d284ee9 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:27+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:05+0000\n" "Language-Team: Czech\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n< =4) ? 1 : 2 ;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "PÅ™ijmout" @@ -124,7 +125,7 @@ msgstr "%s a přátelé" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -179,7 +180,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s a přátelé" @@ -207,11 +208,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "PotvrzujÃcà kód nebyl nalezen" @@ -580,7 +581,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "O nás" @@ -673,18 +674,6 @@ msgstr "%1 statusů na %2" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Mikroblog od %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -695,12 +684,12 @@ msgstr "%1 statusů na %2" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "UmÃstÄ›nÃ" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "SdÄ›lenÃ" @@ -976,7 +965,7 @@ msgstr "Neodeslal jste nám profil" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1175,8 +1164,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1301,7 +1291,7 @@ msgstr "Text je pÅ™ÃliÅ¡ dlouhý (maximálnà délka je 140 zanků)" msgid "Could not update group." msgstr "Nelze aktualizovat uživatele" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Nelze uložin informace o obrázku" @@ -1424,7 +1414,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Nenà platnou mailovou adresou." @@ -1619,6 +1609,25 @@ msgstr "Žádné takové oznámenÃ." msgid "Cannot read file." msgstr "Žádné takové oznámenÃ." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Neplatná velikost" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Neodeslal jste nám profil" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Uživatel nemá profil." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1770,12 +1779,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mikroblog od %s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Skupiny" @@ -2357,8 +2372,8 @@ msgstr "PÅ™ipojit" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2506,7 +2521,8 @@ msgstr "Nelze uložit nové heslo" msgid "Password saved." msgstr "Heslo uloženo" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2632,7 +2648,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Obnovit" @@ -2691,11 +2707,11 @@ msgstr "Nenà platnou mailovou adresou." msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblog od %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Neplatný obsah sdÄ›lenÃ" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2774,7 +2790,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Jazyk" @@ -2800,7 +2816,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Text je pÅ™ÃliÅ¡ dlouhý (maximálnà délka je 140 zanků)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3107,7 +3123,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3198,7 +3214,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Adresa profilu na jiných kompatibilnÃch mikroblozÃch." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "OdebÃrat" @@ -3301,6 +3317,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "OdpovÄ›di na %s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Neodeslal jste nám profil" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Uživatel nemá profil." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3316,7 +3342,9 @@ msgstr "Neodeslal jste nám profil" msgid "User is already sandboxed." msgstr "Uživatel nemá profil." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3340,7 +3368,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3376,8 +3404,8 @@ msgstr "UmÃstÄ›nÃ" msgid "Description" msgstr "OdbÄ›ry" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiky" @@ -3510,47 +3538,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed sdÄ›lenà pro %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed sdÄ›lenà pro %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed sdÄ›lenà pro %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Feed sdÄ›lenà pro %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "ÄŒlenem od" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "VytvoÅ™it" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3560,7 +3588,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3569,7 +3597,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3681,149 +3709,137 @@ msgid "User is already silenced." msgstr "Uživatel nemá profil." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Nenà platnou mailovou adresou." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Nové sdÄ›lenÃ" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Žádný registrovaný email pro tohoto uživatele." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "UmÃstÄ›nÃ" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" -msgstr "" - -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Nové sdÄ›lenÃ" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" msgstr "" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Problém pÅ™i ukládánà sdÄ›lenÃ" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Nové sdÄ›lenÃ" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Nové sdÄ›lenÃ" #: actions/smssettings.php:58 #, fuzzy @@ -3921,6 +3937,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "OdbÄ›ry" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "NastavenÃ" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4129,7 +4205,7 @@ msgstr "Nebylo vráceno žádné URL profilu od servu." msgid "Unsubscribed" msgstr "Odhlásit" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4336,16 +4412,22 @@ msgstr "VÅ¡echny odbÄ›ry" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Neodeslal jste nám profil" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4389,7 +4471,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "OsobnÃ" @@ -4457,41 +4539,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Problém pÅ™i ukládánà sdÄ›lenÃ" -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Problém pÅ™i ukládánà sdÄ›lenÃ" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problém pÅ™i ukládánà sdÄ›lenÃ" -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problém pÅ™i ukládánà sdÄ›lenÃ" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4519,7 +4601,12 @@ msgstr "NepÅ™ihlášen!" msgid "Couldn't delete self-subscription." msgstr "Nelze smazat odebÃránÃ" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Nelze smazat odebÃránÃ" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Nelze smazat odebÃránÃ" @@ -4528,22 +4615,22 @@ msgstr "Nelze smazat odebÃránÃ" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Nelze uložin informace o obrázku" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Nelze vytvoÅ™it odebÃrat" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Nelze vytvoÅ™it odebÃrat" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Nelze vytvoÅ™it odebÃrat" @@ -4587,192 +4674,186 @@ msgstr "%1 statusů na %2" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "OsobnÃ" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "ZmÄ›nit heslo" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "O nás" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Nelze pÅ™esmÄ›rovat na server: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "PÅ™ipojit" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "OdbÄ›ry" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Neplatná velikost" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Odhlásit" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "VytvoÅ™it nový úÄet" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrovat" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "PÅ™ihlásit" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomoci mi!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "NápovÄ›da" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Hledat" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Nové sdÄ›lenÃ" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Nové sdÄ›lenÃ" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "OdbÄ›ry" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "NápovÄ›da" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "O nás" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "SoukromÃ" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Zdroj" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4781,12 +4862,12 @@ msgstr "" "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** je služba mikroblogů." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4797,56 +4878,56 @@ msgstr "" "dostupná pod [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Nové sdÄ›lenÃ" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« NovÄ›jÅ¡Ã" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Staršà »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4861,95 +4942,86 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Potvrzenà emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Nové sdÄ›lenÃ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Potvrzenà emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Vzhled" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Potvrzenà emailové adresy" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Potvrzenà emailové adresy" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "PÅ™ijmout" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Potvrzenà emailové adresy" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Potvrzenà emailové adresy" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "OsobnÃ" +msgid "Edit site notice" +msgstr "Nové sdÄ›lenÃ" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Potvrzenà emailové adresy" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5456,6 +5528,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6005,10 +6082,6 @@ msgstr "OdpovÄ›di" msgid "Favorites" msgstr "OblÃbené" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -6034,7 +6107,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "OdbÄ›ry" @@ -6042,23 +6115,23 @@ msgstr "OdbÄ›ry" msgid "All subscriptions" msgstr "VÅ¡echny odbÄ›ry" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "OdbÄ›ratelé" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "VÅ¡ichni odbÄ›ratelé" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "ÄŒlenem od" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6102,7 +6175,12 @@ msgstr "Odstranit toto oznámenÃ" msgid "Repeat this notice" msgstr "Odstranit toto oznámenÃ" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Žádný takový uživatel." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6264,47 +6342,62 @@ msgstr "Zpráva" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Uživatel nemá profil." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "pÅ™ed pár sekundami" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "asi pÅ™ed minutou" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "asi pÅ™ed %d minutami" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "asi pÅ™ed hodinou" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "asi pÅ™ed %d hodinami" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "asi pÅ™ede dnem" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "pÅ™ed %d dny" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "asi pÅ™ed mÄ›sÃcem" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "asi pÅ™ed %d mesÃci" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "asi pÅ™ed rokem" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index a00ec2611..f71b407d5 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -14,19 +14,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:31+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:08+0000\n" "Language-Team: German\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Zugang" @@ -124,7 +125,7 @@ msgstr "%1$s und Freunde, Seite% 2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -189,7 +190,7 @@ msgstr "" "erregen?" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Du und Freunde" @@ -216,11 +217,11 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-Methode nicht gefunden." @@ -581,7 +582,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -672,18 +673,6 @@ msgstr "%s / Favoriten von %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s Aktualisierung in den Favoriten von %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s Zeitleiste" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Aktualisierungen von %1$s auf %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -694,12 +683,12 @@ msgstr "%1$s / Aktualisierungen erwähnen %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Nachrichten von %1$, die auf Nachrichten von %2$ / %3$ antworten." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s öffentliche Zeitleiste" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s Nachrichten von allen!" @@ -945,7 +934,7 @@ msgid "Conversation" msgstr "Unterhaltung" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Nachrichten" @@ -967,7 +956,7 @@ msgstr "Du bist kein Mitglied dieser Gruppe." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Es gab ein Problem mit deinem Sessiontoken." @@ -1161,8 +1150,9 @@ msgstr "Standard wiederherstellen" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1281,7 +1271,7 @@ msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." msgid "Could not update group." msgstr "Konnte Gruppe nicht aktualisieren." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Konnte keinen Favoriten erstellen." @@ -1407,7 +1397,7 @@ msgid "Cannot normalize that email address" msgstr "Konnte diese E-Mail-Adresse nicht normalisieren" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ungültige E-Mail-Adresse." @@ -1594,6 +1584,25 @@ msgstr "Datei nicht gefunden." msgid "Cannot read file." msgstr "Datei konnte nicht gelesen werden." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ungültige Größe." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du kannst diesem Benutzer keine Nachricht schicken." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Nutzer ist bereits ruhig gestellt." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1738,12 +1747,18 @@ msgstr "Zum Admin ernennen" msgid "Make this user an admin" msgstr "Diesen Benutzer zu einem Admin ernennen" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s Zeitleiste" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualisierungen von %1$s auf %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppen" @@ -2369,8 +2384,8 @@ msgstr "Content-Typ " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Kein unterstütztes Datenformat." @@ -2514,7 +2529,8 @@ msgstr "Konnte neues Passwort nicht speichern" msgid "Password saved." msgstr "Passwort gespeichert." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2634,7 +2650,7 @@ msgstr "Hintergrund Verzeichnis" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nie" @@ -2690,11 +2706,11 @@ msgstr "Ungültiger Personen-Tag: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Benutzer die sich selbst mit %1$s getagged haben - Seite %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ungültiger Nachrichteninhalt" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2777,7 +2793,7 @@ msgstr "" "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " "Leerzeichen getrennt" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Sprache" @@ -2805,7 +2821,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Die Biografie ist zu lang (max. %d Zeichen)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Keine Zeitzone ausgewählt." @@ -3115,7 +3131,7 @@ msgid "Same as password above. Required." msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-Mail" @@ -3224,7 +3240,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Profil-URL bei einem anderen kompatiblen Microbloggingdienst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abonnieren" @@ -3329,6 +3345,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Antworten an %1$s auf %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du kannst Nutzer dieser Seite nicht ruhig stellen." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Benutzer ohne passendes Profil" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3343,7 +3369,9 @@ msgstr "Du kannst diesem Benutzer keine Nachricht schicken." msgid "User is already sandboxed." msgstr "Dieser Benutzer hat dich blockiert." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3368,7 +3396,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Site-Einstellungen speichern" @@ -3402,8 +3430,8 @@ msgstr "Seitenerstellung" msgid "Description" msgstr "Beschreibung" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiken" @@ -3537,45 +3565,45 @@ msgstr "" msgid "Group actions" msgstr "Gruppenaktionen" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Nachrichtenfeed der Gruppe %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Nachrichtenfeed der Gruppe %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Postausgang von %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Mitglieder" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Kein)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alle Mitglieder" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Erstellt" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3585,7 +3613,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3598,7 +3626,7 @@ msgstr "" "Freien Software [StatusNet](http://status.net/). Seine Mitglieder erstellen " "kurze Nachrichten über Ihr Leben und Interessen. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratoren" @@ -3716,147 +3744,137 @@ msgid "User is already silenced." msgstr "Nutzer ist bereits ruhig gestellt." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Grundeinstellungen für diese StatusNet Seite." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Der Seiten Name darf nicht leer sein." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Du musst eine gültige E-Mail-Adresse haben." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Unbekannte Sprache „%s“" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Minimale Textlänge ist 140 Zeichen." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Seitenname" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Der Name deiner Seite, sowas wie \"DeinUnternehmen Mircoblog\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Kontakt-E-Mail-Adresse für Deine Site." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Lokale Ansichten" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Bevorzugte Sprache" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequenz" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Seitennachricht" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Neue Nachricht" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Konnte Twitter-Einstellungen nicht speichern." -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Seitennachricht" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Seitennachricht" #: actions/smssettings.php:58 #, fuzzy @@ -3961,6 +3979,66 @@ msgstr "" msgid "No code entered" msgstr "Kein Code eingegeben" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Hauptnavigation" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequenz" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Site-Einstellungen speichern" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Du hast dieses Profil nicht abonniert." @@ -4168,7 +4246,7 @@ msgstr "Keine Profil-ID in der Anfrage." msgid "Unsubscribed" msgstr "Abbestellt" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, fuzzy, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4373,16 +4451,22 @@ msgstr "%s Gruppen-Mitglieder, Seite %d" msgid "Search for more groups" msgstr "Suche nach weiteren Gruppen" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s ist in keiner Gruppe Mitglied." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Aktualisierungen von %1$s auf %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4426,7 +4510,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Eigene" @@ -4496,22 +4580,22 @@ msgstr "Konnte Nachricht nicht mit neuer URI versehen." msgid "DB error inserting hashtag: %s" msgstr "Datenbankfehler beim Einfügen des Hashtags: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem bei Speichern der Nachricht. Sie ist zu lang." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem bei Speichern der Nachricht. Unbekannter Benutzer." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4520,21 +4604,21 @@ msgstr "" "Zu schnell zu viele Nachrichten; atme kurz durch und schicke sie erneut in " "ein paar Minuten ab." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4561,7 +4645,12 @@ msgstr "Nicht abonniert!" msgid "Couldn't delete self-subscription." msgstr "Konnte Abonnement nicht löschen." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Konnte Abonnement nicht löschen." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Konnte Abonnement nicht löschen." @@ -4570,20 +4659,20 @@ msgstr "Konnte Abonnement nicht löschen." msgid "Welcome to %1$s, @%2$s!" msgstr "Herzlich willkommen bei %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Konnte Gruppe nicht erstellen." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Konnte Gruppenmitgliedschaft nicht setzen." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Konnte Abonnement nicht erstellen." @@ -4626,195 +4715,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Seite ohne Titel" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Hauptnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persönliches Profil und Freundes-Zeitleiste" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Eigene" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Konnte nicht zum Server umleiten: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Verbinden" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Hauptnavigation" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Einladen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Von der Seite abmelden" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Abmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Neues Konto erstellen" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrieren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Auf der Seite anmelden" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Suche nach Leuten oder Text" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Suchen" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Seitennachricht" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokale Ansichten" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Neue Nachricht" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Unternavigation" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hilfe" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Ãœber" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "AGB" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privatsphäre" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Quellcode" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Stups" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4823,12 +4906,12 @@ msgstr "" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ist ein Microbloggingdienst." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4839,54 +4922,54 @@ msgstr "" "(Version %s) betrieben, die unter der [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "StatusNet-Software-Lizenz" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 #, fuzzy msgid "All " msgstr "Alle " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "Lizenz." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Seitenerstellung" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Später" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Vorher" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4903,97 +4986,86 @@ msgid "Changes to that panel are not allowed." msgstr "Registrierung nicht gestattet" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() noch nicht implementiert." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() noch nicht implementiert." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Konnte die Design Einstellungen nicht löschen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Bestätigung der E-Mail-Adresse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Seite" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS-Konfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Eigene" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS-Konfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Benutzer" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS-Konfiguration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Zugang" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS-Konfiguration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Pfad" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS-Konfiguration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Eigene" +msgid "Edit site notice" +msgstr "Seitennachricht" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS-Konfiguration" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5491,6 +5563,11 @@ msgstr "Wähle einen Tag, um die Liste einzuschränken" msgid "Go" msgstr "Los geht's" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6086,10 +6163,6 @@ msgstr "Antworten" msgid "Favorites" msgstr "Favoriten" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Benutzer" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Posteingang" @@ -6116,7 +6189,7 @@ msgstr "Tags in %ss Nachrichten" msgid "Unknown" msgstr "Unbekannter Befehl" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" @@ -6124,23 +6197,23 @@ msgstr "Abonnements" msgid "All subscriptions" msgstr "Alle Abonnements" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnenten" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Alle Abonnenten" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Nutzer ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Mitglied seit" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alle Gruppen" @@ -6181,7 +6254,12 @@ msgstr "Diese Nachricht wiederholen?" msgid "Repeat this notice" msgstr "Diese Nachricht wiederholen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Diesen Nutzer von der Gruppe sperren" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6336,47 +6414,64 @@ msgstr "Nachricht" msgid "Moderate" msgstr "Moderieren" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Benutzerprofil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratoren" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderieren" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "vor wenigen Sekunden" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "vor einer Minute" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "vor %d Minuten" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "vor einer Stunde" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "vor %d Stunden" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "vor einem Tag" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "vor %d Tagen" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "vor einem Monat" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "vor %d Monaten" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "vor einem Jahr" diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index ed9ab7803..6b5c3973f 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:33+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:10+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Î Ïόσβαση" @@ -120,7 +121,7 @@ msgstr "%s και οι φίλοι του/της" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -175,7 +176,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Εσείς και οι φίλοι σας" @@ -202,11 +203,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Η μÎθοδος του ΑΡΙ δε βÏÎθηκε!" @@ -570,7 +571,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "ΛογαÏιασμός" @@ -659,18 +660,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "χÏονοδιάγÏαμμα του χÏήστη %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -681,12 +670,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -934,7 +923,7 @@ msgid "Conversation" msgstr "Συζήτηση" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -956,7 +945,7 @@ msgstr "Ομάδες με τα πεÏισσότεÏα μÎλη" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1152,8 +1141,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1278,7 +1268,7 @@ msgstr "Το βιογÏαφικό είναι Ï€Î¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿ (μÎγιστ msgid "Could not update group." msgstr "ΑδÏνατη η αποθήκευση του Ï€Ïοφίλ." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "ΑδÏνατη η αποθήκευση του Ï€Ïοφίλ." @@ -1404,7 +1394,7 @@ msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεÏθυνσης" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -1596,6 +1586,24 @@ msgstr "ΑδÏνατη η αποθήκευση του Ï€Ïοφίλ." msgid "Cannot read file." msgstr "ΑδÏνατη η αποθήκευση του Ï€Ïοφίλ." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Μήνυμα" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ομάδες με τα πεÏισσότεÏα μÎλη" + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1740,12 +1748,18 @@ msgstr "ΔιαχειÏιστής" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "χÏονοδιάγÏαμμα του χÏήστη %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2314,8 +2328,8 @@ msgstr "ΣÏνδεση" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2461,7 +2475,8 @@ msgstr "ΑδÏνατη η αποθήκευση του νÎου κωδικοÏ" msgid "Password saved." msgstr "Ο κωδικός αποθηκεÏτηκε." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2586,7 +2601,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "ΑποχώÏηση" @@ -2641,11 +2656,11 @@ msgstr "" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2722,7 +2737,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2751,7 +2766,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Το βιογÏαφικό είναι Ï€Î¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿ (μÎγιστο 140 χαÏακτ.)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3054,7 +3069,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3159,7 +3174,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3260,6 +3275,15 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "ΑπÎτυχε η ενημÎÏωση του χÏήστη." + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3273,7 +3297,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3297,7 +3323,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3331,8 +3357,8 @@ msgstr "Î Ïοσκλήσεις" msgid "Description" msgstr "ΠεÏιγÏαφή" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "" @@ -3466,45 +3492,45 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "ΑδÏνατη η αποθήκευση του Ï€Ïοφίλ." -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "ÎœÎλη" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "ΔημιουÏγημÎνος" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3514,7 +3540,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3523,7 +3549,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "ΔιαχειÏιστÎÏ‚" @@ -3634,147 +3660,134 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Αδυναμία κανονικοποίησης αυτής της email διεÏθυνσης" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Η διεÏθυνση του εισεÏχόμενου email αφαιÏÎθηκε." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Τοπικός" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "ΔιαγÏαφή μηνÏματος" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" msgstr "" -#: actions/siteadminpanel.php:315 -msgid "Limits" +#: actions/sitenoticeadminpanel.php:103 +msgid "Unable to save site notice." msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "ΔιαγÏαφή μηνÏματος" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Ρυθμίσεις OpenID" #: actions/smssettings.php:58 #, fuzzy @@ -3874,6 +3887,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Επιβεβαίωση διεÏθυνσης email" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Ρυθμίσεις OpenID" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4071,7 +4144,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4266,16 +4339,22 @@ msgstr "ΑδÏνατη η αποθήκευση των νÎων πληÏοφοÏÎ msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4319,7 +4398,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Î Ïοσωπικά" @@ -4387,38 +4466,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "Σφάλμα στη βάση δεδομÎνων κατά την εισαγωγή hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4445,7 +4524,12 @@ msgstr "ΑπÎτυχε η συνδÏομή." msgid "Couldn't delete self-subscription." msgstr "ΑπÎτυχε η διαγÏαφή συνδÏομής." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "ΑπÎτυχε η διαγÏαφή συνδÏομής." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "ΑπÎτυχε η διαγÏαφή συνδÏομής." @@ -4454,21 +4538,21 @@ msgstr "ΑπÎτυχε η διαγÏαφή συνδÏομής." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Δεν ήταν δυνατή η δημιουÏγία ομάδας." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "ΑδÏνατη η αποθήκευση των νÎων πληÏοφοÏιών του Ï€Ïοφίλ" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "ΑδÏνατη η αποθήκευση των νÎων πληÏοφοÏιών του Ï€Ïοφίλ" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "ΑδÏνατη η αποθήκευση των νÎων πληÏοφοÏιών του Ï€Ïοφίλ" @@ -4510,189 +4594,183 @@ msgstr "" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Î Ïοσωπικά" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Αλλάξτε τον κωδικό σας" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "ΛογαÏιασμός" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Αδυναμία ανακατεÏθηνσης στο διακομιστή: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "ΣÏνδεση" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Επιβεβαίωση διεÏθυνσης email" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "ΔιαχειÏιστής" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Î Ïοσκάλεσε φίλους και συναδÎλφους σου να γίνουν μÎλη στο %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Μήνυμα" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "ΑποσÏνδεση" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "ΔημιουÏγία ενός λογαÏιασμοÏ" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "ΠεÏιγÏαφή" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ΣÏνδεση" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Βοηθήστε με!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Βοήθεια" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Βοήθεια" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "ΠεÏί" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ΣυχνÎÏ‚ εÏωτήσεις" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Επικοινωνία" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4701,13 +4779,13 @@ msgstr "" "To **%%site.name%%** είναι μία υπηÏεσία microblogging (μικÏο-ιστολογίου) που " "ÎφεÏε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" "Το **%%site.name%%** είναι μία υπηÏεσία microblogging (μικÏο-ιστολογίου). " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4715,53 +4793,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4776,94 +4854,85 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Επιβεβαίωση διεÏθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Επιβεβαίωση διεÏθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Î Ïοσωπικά" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Επιβεβαίωση διεÏθυνσης email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Επιβεβαίωση διεÏθυνσης email" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Î Ïόσβαση" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Επιβεβαίωση διεÏθυνσης email" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Επιβεβαίωση διεÏθυνσης email" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Î Ïοσωπικά" +msgid "Edit site notice" +msgstr "ΔιαγÏαφή μηνÏματος" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Επιβεβαίωση διεÏθυνσης email" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5356,6 +5425,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5887,10 +5961,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5916,7 +5986,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5924,23 +5994,23 @@ msgstr "" msgid "All subscriptions" msgstr "Όλες οι συνδÏομÎÏ‚" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "ÎœÎλος από" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -5982,7 +6052,12 @@ msgstr "Αδυναμία διαγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… μηνÏματος msgid "Repeat this notice" msgstr "Αδυναμία διαγÏαφής Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… μηνÏματος." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6140,47 +6215,63 @@ msgstr "Μήνυμα" msgid "Moderate" msgstr "" -#: lib/util.php:1013 -msgid "a few seconds ago" +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Î Ïοφίλ χÏήστη" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "ΔιαχειÏιστÎÏ‚" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" msgstr "" #: lib/util.php:1015 -msgid "about a minute ago" +msgid "a few seconds ago" msgstr "" #: lib/util.php:1017 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index d0ba439ba..cac1893e8 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:36+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:13+0000\n" "Language-Team: British English\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Access" @@ -118,7 +119,7 @@ msgstr "%1$s and friends, page %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgstr "" "post a notice to his or her attention." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "You and friends" @@ -207,11 +208,11 @@ msgstr "Updates from %1$s and friends on %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API method not found." @@ -574,7 +575,7 @@ msgstr "" "the ability to <strong>%3$s</strong> your %4$s account data. You should only " "give access to your %4$s account to third parties you trust." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Account" @@ -661,18 +662,6 @@ msgstr "%1$s / Favourites from %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s updates favourited by %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s timeline" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Updates from %1$s on %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -683,12 +672,12 @@ msgstr "%1$s / Updates mentioning %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s updates that reply to updates from %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s public timeline" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates from everyone!" @@ -934,7 +923,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notices" @@ -953,7 +942,7 @@ msgstr "You are not the owner of this application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." @@ -1149,8 +1138,9 @@ msgstr "Reset back to default" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1266,7 +1256,7 @@ msgstr "description is too long (max %d chars)." msgid "Could not update group." msgstr "Could not update group." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Could not create aliases" @@ -1388,7 +1378,7 @@ msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Not a valid e-mail address." @@ -1579,6 +1569,25 @@ msgstr "No such file." msgid "Cannot read file." msgstr "Cannot read file." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Invalid token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "You cannot sandbox users on this site." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "User is already silenced." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1725,12 +1734,18 @@ msgstr "Make admin" msgid "Make this user an admin" msgstr "Make this user an admin" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s timeline" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates from members of %1$s on %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Groups" @@ -2339,8 +2354,8 @@ msgstr "content type " msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Not a supported data format." @@ -2479,7 +2494,8 @@ msgstr "Can't save new password." msgid "Password saved." msgstr "Password saved." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2599,7 +2615,7 @@ msgstr "" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Never" @@ -2654,11 +2670,11 @@ msgstr "Not a valid people tag: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Users self-tagged with %1$s - page %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Invalid notice content" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Notice licence ‘1%$s’ is not compatible with site licence ‘%2$s’." @@ -2736,7 +2752,7 @@ msgid "" msgstr "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Language" @@ -2763,7 +2779,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Bio is too long (max %d chars)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Timezone not selected." @@ -3072,7 +3088,7 @@ msgid "Same as password above. Required." msgstr "Same as password above. Required." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3177,7 +3193,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL of your profile on another compatible microblogging service" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscribe" @@ -3277,6 +3293,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Replies to %1$s on %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "You cannot silence users on this site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "User without matching profile." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3289,7 +3315,9 @@ msgstr "You cannot sandbox users on this site." msgid "User is already sandboxed." msgstr "User is already sandboxed." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3313,7 +3341,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Save site settings" @@ -3344,8 +3372,8 @@ msgstr "Organization" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistics" @@ -3484,45 +3512,45 @@ msgstr "" msgid "Group actions" msgstr "Group actions" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notice feed for %s group (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notice feed for %s group (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notice feed for %s group (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Outbox for %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Members" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(None)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "All members" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Created" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3537,7 +3565,7 @@ msgstr "" "their life and interests. [Join now](%%%%action.register%%%%) to become part " "of this group and many more! ([Read more](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3550,7 +3578,7 @@ msgstr "" "[StatusNet](http://status.net/) tool. Its members share short messages about " "their life and interests. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Admins" @@ -3665,145 +3693,136 @@ msgid "User is already silenced." msgstr "User is already silenced." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." -msgstr "" +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Design settings for this StausNet site." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "You must have a valid contact email address." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Minimum text limit is 140 characters." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Site name" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Contact e-mail address for your site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Default site language" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Site notice" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "New message" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Unable to save your design settings!" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Site notice" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Site notice" #: actions/smssettings.php:58 msgid "SMS settings" @@ -3904,6 +3923,66 @@ msgstr "" msgid "No code entered" msgstr "No code entered" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Change site configuration" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Save site settings" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "You are not subscribed to that profile." @@ -4100,7 +4179,7 @@ msgstr "No profile id in request." msgid "Unsubscribed" msgstr "Unsubscribed" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4301,16 +4380,22 @@ msgstr "%1$s groups, page %2$d" msgid "Search for more groups" msgstr "Search for more groups" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s is not a member of any group." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Updates from %1$s on %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4364,7 +4449,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4427,21 +4512,21 @@ msgstr "Could not update message with new URI." msgid "DB error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem saving notice. Too long." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Too many notices too fast; take a breather and post again in a few minutes." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4449,19 +4534,19 @@ msgstr "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem saving notice." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problem saving group inbox." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4487,7 +4572,12 @@ msgstr "Not subscribed!" msgid "Couldn't delete self-subscription." msgstr "Couldn't delete self-subscription." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Couldn't delete subscription." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Couldn't delete subscription." @@ -4496,19 +4586,19 @@ msgstr "Couldn't delete subscription." msgid "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Could not create group." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Could not set group URI." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Could not set group membership." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Could not save local group info." @@ -4549,194 +4639,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Untitled page" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Primary site navigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personal profile and friends timeline" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Account" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connect to services" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connect" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Change site configuration" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invite" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logout" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Create an account" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Register" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Login" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Search" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Local views" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Help" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "About" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "F.A.Q." -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Source" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contact" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Badge" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4745,12 +4829,12 @@ msgstr "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is a microblogging service." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4761,53 +4845,53 @@ msgstr "" "s, available under the [GNU Affero General Public Licence](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Site content license" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "All " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licence." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "After" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Before" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4822,90 +4906,80 @@ msgid "Changes to that panel are not allowed." msgstr "Changes to that panel are not allowed." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() not implemented." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() not implemented." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Unable to delete design setting." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Basic site configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Design configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "User configuration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "User" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Access configuration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Access" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Paths configuration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Sessions configuration" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Version" +msgid "Edit site notice" +msgstr "Site notice" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Paths configuration" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5387,6 +5461,11 @@ msgstr "Choose a tag to narrow list" msgid "Go" msgstr "Go" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL of the homepage or blog of the group or topic" @@ -5929,10 +6008,6 @@ msgstr "Replies" msgid "Favorites" msgstr "Favourites" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "User" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inbox" @@ -5958,7 +6033,7 @@ msgstr "Tags in %s's notices" msgid "Unknown" msgstr "Unknown" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptions" @@ -5966,23 +6041,23 @@ msgstr "Subscriptions" msgid "All subscriptions" msgstr "All subscriptions" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscribers" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "All subscribers" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "User ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Member since" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "All groups" @@ -6022,7 +6097,12 @@ msgstr "Repeat this notice?" msgid "Repeat this notice" msgstr "Repeat this notice" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Block this user from this group" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6176,47 +6256,63 @@ msgstr "Message" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "User profile" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Admins" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "a few seconds ago" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "about a minute ago" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "about %d minutes ago" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "about an hour ago" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "about %d hours ago" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "about a day ago" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "about %d days ago" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "about a month ago" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "about %d months ago" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "about a year ago" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index fe861905d..4aa92796a 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,19 +13,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:39+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:16+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Acceder" @@ -122,7 +123,7 @@ msgstr "%1$s y amigos, página %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,7 +186,7 @@ msgstr "" "su atención ](%%%%action.newnotice%%%%?status_textarea=%3$s)." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Tú y amigos" @@ -212,11 +213,11 @@ msgstr "¡Actualizaciones de %1$s y amigos en %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Método de API no encontrado." @@ -582,7 +583,7 @@ msgstr "" "permiso para <strong>%3$s</strong> la información de tu cuenta %4$s. Sólo " "debes dar acceso a tu cuenta %4$s a terceras partes en las que confÃes." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Cuenta" @@ -671,18 +672,6 @@ msgstr "%1$s / Favoritos de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualizaciones favoritas de %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "lÃnea temporal de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "¡Actualizaciones de %1$s en %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -693,12 +682,12 @@ msgstr "%1$s / Actualizaciones que mencionan %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "actualizaciones de %1$s en respuesta a las de %2$s / %3$s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "lÃnea temporal pública de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "¡Actualizaciones de todos en %s!" @@ -945,7 +934,7 @@ msgid "Conversation" msgstr "Conversación" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avisos" @@ -964,7 +953,7 @@ msgstr "No eres el propietario de esta aplicación." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." @@ -1160,8 +1149,9 @@ msgstr "Volver a los valores predeterminados" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1277,7 +1267,7 @@ msgstr "La descripción es muy larga (máx. %d caracteres)." msgid "Could not update group." msgstr "No se pudo actualizar el grupo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "No fue posible crear alias." @@ -1402,7 +1392,7 @@ msgid "Cannot normalize that email address" msgstr "No se puede normalizar esta dirección de correo electrónico." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correo electrónico no válido" @@ -1595,6 +1585,25 @@ msgstr "No existe tal archivo." msgid "Cannot read file." msgstr "No se puede leer archivo." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Token inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "No puedes enviar mensaje a este usuario." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "El usuario te ha bloqueado." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1744,12 +1753,18 @@ msgstr "Convertir en administrador" msgid "Make this user an admin" msgstr "Convertir a este usuario en administrador" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "lÃnea temporal de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "¡Actualizaciones de miembros de %1$s en %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2374,8 +2389,8 @@ msgstr "tipo de contenido " msgid "Only " msgstr "Sólo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "No es un formato de dato soportado" @@ -2515,7 +2530,8 @@ msgstr "No se puede guardar la nueva contraseña." msgid "Password saved." msgstr "Se guardó Contraseña." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Rutas" @@ -2637,7 +2653,7 @@ msgstr "Directorio del fondo" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunca" @@ -2693,11 +2709,11 @@ msgstr "No es una etiqueta válida para personas: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto marcados con %s - página %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "El contenido del aviso es inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2776,7 +2792,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2804,7 +2820,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografÃa es muy larga (máx. %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Zona horaria no seleccionada" @@ -3121,7 +3137,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contraseña de arriba. Requerida" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo electrónico" @@ -3228,7 +3244,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Suscribirse" @@ -3326,6 +3342,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respuestas a %1$s en %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "No puedes enviar mensaje a este usuario." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuario sin perfil coincidente." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3340,7 +3366,9 @@ msgstr "No puedes enviar mensaje a este usuario." msgid "User is already sandboxed." msgstr "El usuario te ha bloqueado." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sesiones" @@ -3364,7 +3392,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Guardar la configuración del sitio" @@ -3396,8 +3424,8 @@ msgstr "Organización" msgid "Description" msgstr "Descripción" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "EstadÃsticas" @@ -3530,46 +3558,46 @@ msgstr "Alias" msgid "Group actions" msgstr "Acciones del grupo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed de avisos de grupo %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Bandeja de salida para %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Miembros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ninguno)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Todos los miembros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Creado" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3579,7 +3607,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3590,7 +3618,7 @@ msgstr "" "**%s** es un grupo de usuarios en %%%%site.name%%%%, un servicio [micro-" "blogging](http://en.wikipedia.org/wiki/Micro-blogging) " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administradores" @@ -3705,149 +3733,140 @@ msgid "User is already silenced." msgstr "El usuario te ha bloqueado." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configuración básica de este sitio StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "No es una dirección de correo electrónico válida" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Idioma desconocido \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "La frecuencia de captura debe ser un número." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nombre del sitio" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Nueva dirección de correo para postear a %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Vistas locales" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Zona horaria predeterminada" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Zona horaria predeterminada del sitio; generalmente UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Idioma predeterminado del sitio" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Capturas" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "En un trabajo programado" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Capturas de datos" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frecuencia" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Las capturas se enviarán a este URL" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "LÃmites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "LÃmite de texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Cantidad máxima de caracteres para los mensajes." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "Cuántos segundos es necesario esperar para publicar lo mismo de nuevo." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Aviso de sitio" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nuevo Mensaje " + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "No se pudo grabar tu configuración de diseño." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Aviso de sitio" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Aviso de sitio" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Configuración de SMS" @@ -3950,6 +3969,66 @@ msgstr "" msgid "No code entered" msgstr "No ingresó código" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Capturas" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Cambiar la configuración del sitio" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "La frecuencia de captura debe ser un número." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "En un trabajo programado" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Capturas de datos" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frecuencia" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Las capturas se enviarán a este URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Guardar la configuración del sitio" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "No te has suscrito a ese perfil." @@ -4152,7 +4231,7 @@ msgstr "No hay id de perfil solicitado." msgid "Unsubscribed" msgstr "Desuscrito" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4354,16 +4433,22 @@ msgstr "Miembros del grupo %s, página %d" msgid "Search for more groups" msgstr "Buscar más grupos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "No eres miembro de ese grupo" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "¡Actualizaciones de %1$s en %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4409,7 +4494,7 @@ msgstr "" msgid "Plugins" msgstr "Complementos" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Sesiones" @@ -4476,22 +4561,22 @@ msgstr "No se pudo actualizar mensaje con nuevo URI." msgid "DB error inserting hashtag: %s" msgstr "Error de la BD al insertar la etiqueta clave: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Ha habido un problema al guardar el mensaje. Es muy largo." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Ha habido un problema al guardar el mensaje. Usuario desconocido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4500,20 +4585,20 @@ msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4540,7 +4625,12 @@ msgstr "¡No estás suscrito!" msgid "Couldn't delete self-subscription." msgstr "No se pudo eliminar la suscripción." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "No se pudo eliminar la suscripción." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "No se pudo eliminar la suscripción." @@ -4549,21 +4639,21 @@ msgstr "No se pudo eliminar la suscripción." msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenido a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "No se pudo crear grupo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "No se pudo configurar miembros de grupo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "No se pudo configurar miembros de grupo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "No se ha podido guardar la suscripción." @@ -4605,194 +4695,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Página sin tÃtulo" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegación de sitio primario" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil personal y lÃnea de tiempo de amigos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Cuenta" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conectar a los servicios" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Conectarse" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Cambiar la configuración del sitio" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amigos y colegas a unirse a %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Salir de sitio" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Salir" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrarse" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ingresar a sitio" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ayúdame!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ayuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ayuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Acerca de" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Preguntas Frecuentes" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidad" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fuente" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Insignia" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4801,12 +4885,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblogueo." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4817,55 +4901,55 @@ msgstr "" "disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licencia de contenido del sitio" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Derechos de autor de contenido y datos por los colaboradores. Todos los " "derechos reservados." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Todo" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "Licencia." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginación" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Después" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Antes" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4881,95 +4965,84 @@ msgid "Changes to that panel are not allowed." msgstr "Registro de usuario no permitido." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "TodavÃa no se implementa comando." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "TodavÃa no se implementa comando." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "¡No se pudo guardar tu configuración de Twitter!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuración básica del sitio" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sitio" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuración del diseño" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Diseño" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuración de usuario" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuración de acceso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Acceder" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS confirmación" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Rutas" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuración de sesiones" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sesiones" +msgid "Edit site notice" +msgstr "Aviso de sitio" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS confirmación" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5462,6 +5535,11 @@ msgstr "Elegir tag para reducir lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6012,10 +6090,6 @@ msgstr "Respuestas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Bandeja de Entrada" @@ -6042,7 +6116,7 @@ msgstr "Tags en avisos de %s" msgid "Unknown" msgstr "Acción desconocida" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Suscripciones" @@ -6050,24 +6124,24 @@ msgstr "Suscripciones" msgid "All subscriptions" msgstr "Todas las suscripciones" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Suscriptores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Todos los suscriptores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID de usuario" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Miembro desde" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Todos los grupos" @@ -6110,7 +6184,12 @@ msgstr "Responder este aviso." msgid "Repeat this notice" msgstr "Responder este aviso." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquear este usuario de este grupo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6271,47 +6350,64 @@ msgstr "Mensaje" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil de usuario" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administradores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "hace unos segundos" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "hace un minuto" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "hace %d minutos" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "hace una hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "hace %d horas" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "hace un dÃa" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "hace %d dÃas" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "hace un mes" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "hace %d meses" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "hace un año" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index bb453f582..a68568600 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:45+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:22+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -20,11 +20,12 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "دسترسی" @@ -124,7 +125,7 @@ msgstr "%s کاربران مسدود شده، صÙØه‌ی %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,7 +186,7 @@ msgstr "" "را جلب کنید." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "شما Ùˆ دوستان" @@ -212,11 +213,11 @@ msgstr "به روز رسانی از %1$ Ùˆ دوستان در %2$" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "رابط مورد نظر پیدا نشد." @@ -574,7 +575,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Øساب کاربری" @@ -663,18 +664,6 @@ msgstr "%s / دوست داشتنی از %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s به روز رسانی های دوست داشتنی %s / %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "خط زمانی %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "به روز رسانی‌های %1$s در %2$s" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -685,12 +674,12 @@ msgstr "%$1s / به روز رسانی های شامل %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s به روز رسانی هایی Ú©Ù‡ در پاسخ به $2$s / %3$s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s خط‌زمانی عمومی" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s به روز رسانی های عموم" @@ -939,7 +928,7 @@ msgid "Conversation" msgstr "مکالمه" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "پیام‌ها" @@ -961,7 +950,7 @@ msgstr "شما یک عضو این گروه نیستید." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1160,8 +1149,9 @@ msgstr "برگشت به Øالت پیش گزیده" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1287,7 +1277,7 @@ msgstr "توصی٠بسیار زیاد است (Øداکثر %d ØرÙ)." msgid "Could not update group." msgstr "نمی‌توان گروه را به‌هنگام‌سازی کرد." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "نمی‌توان نام‌های مستعار را ساخت." @@ -1410,7 +1400,7 @@ msgid "Cannot normalize that email address" msgstr "نمی‌توان نشانی را قانونی کرد" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "یک آدرس ایمیل معتبر نیست." @@ -1600,6 +1590,25 @@ msgstr "چنین پرونده‌ای وجود ندارد." msgid "Cannot read file." msgstr "نمی‌توان پرونده را خواند." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "اندازه‌ی نادرست" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "کاربر قبلا ساکت شده است." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1741,12 +1750,18 @@ msgstr "مدیر شود" msgid "Make this user an admin" msgstr "این کاربر یک مدیر شود" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "خط زمانی %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "به روز رسانی کابران %1$s در %2$s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "گروه‌ها" @@ -2340,8 +2355,8 @@ msgstr "نوع Ù…Øتوا " msgid "Only " msgstr " Ùقط" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." @@ -2487,7 +2502,8 @@ msgstr "نمی‌توان گذرواژه جدید را ذخیره کرد." msgid "Password saved." msgstr "گذرواژه ذخیره شد." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "مسیر ها" @@ -2607,7 +2623,7 @@ msgstr "شاخهٔ تصاویر پیش‌زمینه" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "هیچ وقت" @@ -2663,11 +2679,11 @@ msgstr "یک برچسب کاربری معتبر نیست: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "کاربران خود برچسب‌گذاری شده با %s - صÙØÙ‡Ù” %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ù…Øتوای Ø¢Ú¯Ù‡ÛŒ نامعتبر" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2745,7 +2761,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "زبان" @@ -2771,7 +2787,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "منطقه‌ی زمانی انتخاب نشده است." @@ -3073,7 +3089,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "پست الکترونیکی" @@ -3161,7 +3177,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3259,6 +3275,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "شما نمی توانید کاربری را در این سایت ساکت کنید." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "کاربر بدون مشخصات" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3272,7 +3298,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3297,7 +3325,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "" @@ -3332,8 +3360,8 @@ msgstr "صÙØÙ‡ بندى" msgid "Description" msgstr "" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "آمار" @@ -3467,45 +3495,45 @@ msgstr "نام های مستعار" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "اعضا" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "هیچ" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "همه ÛŒ اعضا" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "ساخته شد" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3515,7 +3543,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3524,7 +3552,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3638,149 +3666,140 @@ msgid "User is already silenced." msgstr "کاربر قبلا ساکت شده است." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "تنظیمات پایه ای برای این سایت StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "نام سایت باید طولی غیر صÙر داشته باشد." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "شما باید یک آدرس ایمیل قابل قبول برای ارتباط داشته باشید" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "نام وب‌گاه" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "نام وب‌گاه شما، مانند «میکروبلاگ شرکت شما»" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "أورده شده به وسیله ÛŒ" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Ù…ØÙ„ÛŒ" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "منطقه ÛŒ زمانی پیش Ùرض" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "منظقه ÛŒ زمانی پیش Ùرض برای سایت؛ معمولا UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "زبان پیش Ùرض سایت" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Ù…Øدودیت ها" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Ù…Øدودیت متن" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "بیشینهٔ تعداد Øرو٠برای آگهی‌ها" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Ú†Ù‡ مدت کاربران باید منتظر بمانند ( به ثانیه ) تا همان چیز را مجددا ارسال " "کنند." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "خبر سایت" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "پیام جدید" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "نمی‌توان تنظیمات طرØ‌تان را ذخیره کرد." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "خبر سایت" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "خبر سایت" + #: actions/smssettings.php:58 #, fuzzy msgid "SMS settings" @@ -3877,6 +3896,66 @@ msgstr "" msgid "No code entered" msgstr "کدی وارد نشد" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "تغییر پیکربندی سایت" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "تنظیمات چهره" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "شما به این پروÙيل متعهد نشدید" @@ -4072,7 +4151,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4263,16 +4342,22 @@ msgstr "اعضای گروه %sØŒ صÙØÙ‡Ù” %d" msgid "Search for more groups" msgstr "جستجو برای گروه های بیشتر" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "به روز رسانی‌های %1$s در %2$s" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4316,7 +4401,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "شخصی" @@ -4383,22 +4468,22 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "تعداد خیلی زیاد Ø¢Ú¯Ù‡ÛŒ Ùˆ بسیار سریع؛ استراØت کنید Ùˆ مجددا دقایقی دیگر ارسال " "کنید." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4406,20 +4491,20 @@ msgstr "" "تعداد زیاد پیام های دو نسخه ای Ùˆ بسرعت؛ استراØت کنید Ùˆ دقایقی دیگر مجددا " "ارسال کنید." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "شما از Ùرستادن پست در این سایت مردود شدید ." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "مشکل در ذخیره کردن Ø¢Ú¯Ù‡ÛŒ." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "مشکل در ذخیره کردن Ø¢Ú¯Ù‡ÛŒ." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4444,7 +4529,12 @@ msgstr "تایید نشده!" msgid "Couldn't delete self-subscription." msgstr "" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "" @@ -4453,20 +4543,20 @@ msgstr "" msgid "Welcome to %1$s, @%2$s!" msgstr "خوش امدید به %1$s , @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "نمیتوان گروه را تشکیل داد" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "نمیتوان گروه را تشکیل داد" -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "نمی‌توان شناس‌نامه را ذخیره کرد." @@ -4508,205 +4598,199 @@ msgstr "%s گروه %s را ترک کرد." msgid "Untitled page" msgstr "صÙØÙ‡ ÛŒ بدون عنوان" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "شخصی" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "آدرس ایمیل، آواتار، کلمه ÛŒ عبور، پروÙایل خود را تغییر دهید" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Øساب کاربری" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "متصل شدن به خدمات" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "وصل‌شدن" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "تغییر پیکربندی سایت" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "مدیر" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr " به شما ملØÙ‚ شوند %s دوستان Ùˆ همکاران را دعوت کنید تا در" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "دعوت‌کردن" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "خارج شدن از سایت ." -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "خروج" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "یک Øساب کاربری بسازید" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "ثبت نام" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "ورود به وب‌گاه" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ورود" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "به من Ú©Ù…Ú© کنید!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ú©Ù…Ú©" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "جستجو برای شخص با متن" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "جست‌وجو" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "خبر سایت" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "دید Ù…ØÙ„ÛŒ" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "خبر صÙØÙ‡" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ú©Ù…Ú©" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "دربارهٔ" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "سوال‌های رایج" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "خصوصی" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "منبع" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "تماس" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet مجوز نرم اÙزار" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4714,53 +4798,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "مجوز Ù…Øتویات سایت" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "همه " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "مجوز." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "صÙØÙ‡ بندى" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "بعد از" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "قبل از" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4776,94 +4860,83 @@ msgid "Changes to that panel are not allowed." msgstr "اجازه‌ی ثبت نام داده نشده است." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "نمی توان تنظیمات طراØÛŒ شده را پاک کرد ." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "سایت" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "طرØ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "پیکره بندی اصلی سایت" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "کاربر" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "پیکره بندی اصلی سایت" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "دسترسی" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "مسیر ها" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "پیکره بندی اصلی سایت" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "شخصی" +msgid "Edit site notice" +msgstr "خبر سایت" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "پیکره بندی اصلی سایت" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5354,6 +5427,11 @@ msgstr "" msgid "Go" msgstr "برو" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5889,10 +5967,6 @@ msgstr "پاسخ ها" msgid "Favorites" msgstr "چیزهای مورد علاقه" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "کاربر" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "صندوق دریاÙتی" @@ -5918,7 +5992,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "اشتراک‌ها" @@ -5926,23 +6000,23 @@ msgstr "اشتراک‌ها" msgid "All subscriptions" msgstr "تمام اشتراک‌ها" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "مشترک‌ها" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "تمام مشترک‌ها" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "شناسه کاربر" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "عضو شده از" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "تمام گروه‌ها" @@ -5983,7 +6057,12 @@ msgstr "به این Ø¢Ú¯Ù‡ÛŒ جواب دهید" msgid "Repeat this notice" msgstr "" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "دسترسی کاربر را به گروه مسدود Ú©Ù†" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6137,47 +6216,62 @@ msgstr "پیام" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "پروÙایل کاربر" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "چند ثانیه پیش" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "Øدود یک دقیقه پیش" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "Øدود %d دقیقه پیش" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "Øدود یک ساعت پیش" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "Øدود %d ساعت پیش" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "Øدود یک روز پیش" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "Øدود %d روز پیش" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "Øدود یک ماه پیش" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "Øدود %d ماه پیش" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "Øدود یک سال پیش" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 97ab7038b..b4978769f 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:42+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:19+0000\n" "Language-Team: Finnish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Hyväksy" @@ -125,7 +126,7 @@ msgstr "%s ja kaverit, sivu %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -186,7 +187,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Sinä ja kaverit" @@ -213,11 +214,11 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metodia ei löytynyt!" @@ -589,7 +590,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Käyttäjätili" @@ -680,18 +681,6 @@ msgstr "%s / Käyttäjän %s suosikit" msgid "%1$s updates favorited by %2$s / %2$s." msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s aikajana" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -703,12 +692,12 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" "%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s julkinen aikajana" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s päivitykset kaikilta!" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "Keskustelu" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Päivitykset" @@ -977,7 +966,7 @@ msgstr "Sinä et kuulu tähän ryhmään." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Istuntoavaimesi kanssa oli ongelma." @@ -1178,8 +1167,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1308,7 +1298,7 @@ msgstr "kuvaus on liian pitkä (max %d merkkiä)." msgid "Could not update group." msgstr "Ei voitu päivittää ryhmää." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Ei voitu lisätä aliasta." @@ -1435,7 +1425,7 @@ msgid "Cannot normalize that email address" msgstr "Ei voida normalisoida sähköpostiosoitetta" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite." @@ -1629,6 +1619,25 @@ msgstr "Tiedostoa ei ole." msgid "Cannot read file." msgstr "Tiedostoa ei voi lukea." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Koko ei kelpaa." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Käyttäjä on asettanut eston sinulle." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1773,12 +1782,18 @@ msgstr "Tee ylläpitäjäksi" msgid "Make this user an admin" msgstr "Tee tästä käyttäjästä ylläpitäjä" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s aikajana" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Ryhmän %1$s käyttäjien päivitykset palvelussa %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Ryhmät" @@ -2403,8 +2418,8 @@ msgstr "Yhdistä" msgid "Only " msgstr "Vain " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Tuo ei ole tuettu tietomuoto." @@ -2550,7 +2565,8 @@ msgstr "Uutta salasanaa ei voida tallentaa." msgid "Password saved." msgstr "Salasana tallennettu." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Polut" @@ -2678,7 +2694,7 @@ msgstr "Taustakuvan hakemisto" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Palauta" @@ -2739,11 +2755,11 @@ msgstr "Ei sallittu henkilötagi: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Käyttäjät joilla henkilötagi %s - sivu %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Päivityksen sisältö ei kelpaa" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2825,7 +2841,7 @@ msgstr "" "Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin " "ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Kieli" @@ -2853,7 +2869,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Aikavyöhykettä ei ole valittu." @@ -3162,7 +3178,7 @@ msgid "Same as password above. Required." msgstr "Sama kuin ylläoleva salasana. Pakollinen." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Sähköposti" @@ -3272,7 +3288,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Tilaa" @@ -3382,6 +3398,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Et voi lähettää viestiä tälle käyttäjälle." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Käyttäjälle ei löydy profiilia" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3397,7 +3423,9 @@ msgstr "Et voi lähettää viestiä tälle käyttäjälle." msgid "User is already sandboxed." msgstr "Käyttäjä on asettanut eston sinulle." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3422,7 +3450,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3458,8 +3486,8 @@ msgstr "Sivutus" msgid "Description" msgstr "Kuvaus" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Tilastot" @@ -3592,45 +3620,45 @@ msgstr "Aliakset" msgid "Group actions" msgstr "Ryhmän toiminnot" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syöte ryhmän %s päivityksille (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Käyttäjän %s lähetetyt viestit" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Jäsenet" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Tyhjä)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Kaikki jäsenet" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Luotu" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3640,7 +3668,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3651,7 +3679,7 @@ msgstr "" "**%s** on ryhmä palvelussa %%%%site.name%%%%, joka on [mikroblogauspalvelu]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Ylläpitäjät" @@ -3769,150 +3797,140 @@ msgid "User is already silenced." msgstr "Käyttäjä on asettanut eston sinulle." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." -msgstr "" +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Ulkoasuasetukset tälle StatusNet palvelulle." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Tuo ei ole kelvollinen sähköpostiosoite" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Palvelun ilmoitus" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Uusi sähköpostiosoite päivityksien lähettämiseen palveluun %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Paikalliset näkymät" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Ensisijainen kieli" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Palvelun ilmoitus" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Uusi viesti" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Twitter-asetuksia ei voitu tallentaa!" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Palvelun ilmoitus" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Palvelun ilmoitus" #: actions/smssettings.php:58 #, fuzzy @@ -4016,6 +4034,66 @@ msgstr "" msgid "No code entered" msgstr "Koodia ei ole syötetty." +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Ensisijainen sivunavigointi" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Profiilikuva-asetukset" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Et ole tilannut tämän käyttäjän päivityksiä." @@ -4221,7 +4299,7 @@ msgstr "Ei profiili id:tä kyselyssä." msgid "Unsubscribed" msgstr "Tilaus lopetettu" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4432,16 +4510,22 @@ msgstr "Ryhmän %s jäsenet, sivu %d" msgid "Search for more groups" msgstr "Hae lisää ryhmiä" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Sinä et kuulu tähän ryhmään." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4485,7 +4569,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Omat" @@ -4554,23 +4638,23 @@ msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut." msgid "DB error inserting hashtag: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " "päivityksien lähettämista muutaman minuutin päästä." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4578,20 +4662,20 @@ msgstr "" "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " "päivityksien lähettämista muutaman minuutin päästä." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Päivityksesi tähän palveluun on estetty." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4619,7 +4703,12 @@ msgstr "Ei ole tilattu!." msgid "Couldn't delete self-subscription." msgstr "Ei voitu poistaa tilausta." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Ei voitu poistaa tilausta." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Ei voitu poistaa tilausta." @@ -4628,20 +4717,20 @@ msgstr "Ei voitu poistaa tilausta." msgid "Welcome to %1$s, @%2$s!" msgstr "Viesti käyttäjälle %1$s, %2$s" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Ryhmän luonti ei onnistunut." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Tilausta ei onnistuttu tallentamaan." @@ -4684,195 +4773,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Nimetön sivu" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Ensisijainen sivunavigointi" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Henkilökohtainen profiili ja kavereiden aikajana" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Omat" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Käyttäjätili" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ei voitu uudelleenohjata palvelimelle: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Yhdistä" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ensisijainen sivunavigointi" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Ylläpito" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Kutsu" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Kirjaudu ulos palvelusta" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Kirjaudu ulos" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Luo uusi käyttäjätili" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rekisteröidy" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Kirjaudu sisään palveluun" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Kirjaudu sisään" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Auta minua!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ohjeet" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Hae ihmisiä tai tekstiä" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Haku" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Palvelun ilmoitus" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Paikalliset näkymät" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Sivuilmoitus" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Toissijainen sivunavigointi" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ohjeet" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Tietoa" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "UKK" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Yksityisyys" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Lähdekoodi" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Ota yhteyttä" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Tönäise" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4881,12 +4964,12 @@ msgstr "" "**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** on mikroblogipalvelu. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4897,54 +4980,54 @@ msgstr "" "versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "StatusNet-ohjelmiston lisenssi" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Kaikki " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "lisenssi." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Sivutus" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Myöhemmin" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Aiemmin" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4961,100 +5044,89 @@ msgid "Changes to that panel are not allowed." msgstr "Rekisteröityminen ei ole sallittu." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Komentoa ei ole vielä toteutettu." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Komentoa ei ole vielä toteutettu." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Twitter-asetuksia ei voitu tallentaa!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Sähköpostiosoitteen vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Kutsu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Ulkoasu" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS vahvistus" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Käyttäjä" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Hyväksy" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Polut" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS vahvistus" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Omat" +msgid "Edit site notice" +msgstr "Palvelun ilmoitus" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS vahvistus" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5557,6 +5629,11 @@ msgstr "Valitse tagi lyhentääksesi listaa" msgid "Go" msgstr "Mene" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Ryhmän tai aiheen kotisivun tai blogin osoite" @@ -6114,10 +6191,6 @@ msgstr "Vastaukset" msgid "Favorites" msgstr "Suosikit" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Käyttäjä" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Saapuneet" @@ -6144,7 +6217,7 @@ msgstr "Tagit käyttäjän %s päivityksissä" msgid "Unknown" msgstr "Tuntematon toiminto" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tilaukset" @@ -6152,24 +6225,24 @@ msgstr "Tilaukset" msgid "All subscriptions" msgstr "Kaikki tilaukset" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tilaajat" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Kaikki tilaajat" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Käyttäjä" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Käyttäjänä alkaen" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Kaikki ryhmät" @@ -6212,7 +6285,12 @@ msgstr "Vastaa tähän päivitykseen" msgid "Repeat this notice" msgstr "Vastaa tähän päivitykseen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Estä tätä käyttäjää osallistumassa tähän ryhmään" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6376,47 +6454,63 @@ msgstr "Viesti" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Käyttäjän profiili" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Ylläpitäjät" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "muutama sekunti sitten" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "noin minuutti sitten" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "noin %d minuuttia sitten" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "noin tunti sitten" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "noin %d tuntia sitten" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "noin päivä sitten" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "noin %d päivää sitten" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "noin kuukausi sitten" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "noin %d kuukautta sitten" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "noin vuosi sitten" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 68e210ff1..c8d14b83d 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -14,19 +14,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:48+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:25+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\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" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accès" @@ -47,7 +48,6 @@ msgstr "Interdire aux utilisateurs anonymes (non connectés) de voir le site ?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privé" @@ -78,7 +78,6 @@ msgid "Save access settings" msgstr "Sauvegarder les paramètres d’accès" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -123,7 +122,7 @@ msgstr "%1$s et ses amis, page %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -187,7 +186,7 @@ msgstr "" "un clin d’œil à %s ou poster un avis à son intention." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Vous et vos amis" @@ -214,11 +213,11 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Méthode API non trouvée !" @@ -590,7 +589,7 @@ msgstr "" "devriez donner l’accès à votre compte %4$s qu’aux tiers à qui vous faites " "confiance." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Compte" @@ -679,18 +678,6 @@ msgstr "%1$s / Favoris de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s statuts favoris de %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Activité de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Statuts de %1$s dans %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -701,12 +688,12 @@ msgstr "%1$s / Mises à jour mentionnant %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s statuts en réponses aux statuts de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Activité publique %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s statuts de tout le monde !" @@ -954,7 +941,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Avis" @@ -973,7 +960,7 @@ msgstr "Vous n’êtes pas le propriétaire de cette application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." @@ -1169,8 +1156,9 @@ msgstr "Revenir aux valeurs par défaut" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1286,7 +1274,7 @@ msgstr "la description est trop longue (%d caractères maximum)." msgid "Could not update group." msgstr "Impossible de mettre à jour le groupe." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Impossible de créer les alias." @@ -1410,7 +1398,7 @@ msgid "Cannot normalize that email address" msgstr "Impossible d’utiliser cette adresse courriel" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse courriel invalide." @@ -1602,6 +1590,26 @@ msgstr "Fichier non trouvé." msgid "Cannot read file." msgstr "Impossible de lire le fichier" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Jeton incorrect." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "" +"Vous ne pouvez pas mettre des utilisateur dans le bac à sable sur ce site." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Cet utilisateur est déjà réduit au silence." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1750,12 +1758,18 @@ msgstr "Faire un administrateur" msgid "Make this user an admin" msgstr "Faire de cet utilisateur un administrateur" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Activité de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Mises à jour des membres de %1$s dans %2$s !" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Groupes" @@ -2023,7 +2037,6 @@ msgstr "Ajouter un message personnel à l’invitation (optionnel)." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Envoyer" @@ -2394,8 +2407,8 @@ msgstr "type de contenu " msgid "Only " msgstr "Seulement " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Format de données non supporté." @@ -2535,7 +2548,8 @@ msgstr "Impossible de sauvegarder le nouveau mot de passe." msgid "Password saved." msgstr "Mot de passe enregistré." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Chemins" @@ -2655,7 +2669,7 @@ msgstr "Dossier des arrière plans" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Jamais" @@ -2711,11 +2725,11 @@ msgstr "Cette marque est invalide : %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utilisateurs marqués par eux-mêmes avec %1$s - page %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Contenu de l’avis invalide" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2797,7 +2811,7 @@ msgstr "" "Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " "virgules ou des espaces" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Langue" @@ -2825,7 +2839,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La bio est trop longue (%d caractères maximum)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Aucun fuseau horaire n’a été choisi." @@ -3148,7 +3162,7 @@ msgid "Same as password above. Required." msgstr "Identique au mot de passe ci-dessus. Requis." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Courriel" @@ -3257,7 +3271,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "S’abonner" @@ -3362,6 +3376,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Réponses à %1$s sur %2$s !" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Vous ne pouvez pas réduire des utilisateurs au silence sur ce site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Utilisateur sans profil correspondant." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3375,7 +3399,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "L’utilisateur est déjà dans le bac à sable." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessions" @@ -3399,7 +3425,7 @@ msgstr "Déboguage de session" msgid "Turn on debugging output for sessions." msgstr "Activer la sortie de déboguage pour les sessions." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Sauvegarder les paramètres du site" @@ -3430,8 +3456,8 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiques" @@ -3573,45 +3599,45 @@ msgstr "Alias" msgid "Group actions" msgstr "Actions du groupe" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fil des avis du groupe %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fil des avis du groupe %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fil des avis du groupe %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "ami d’un ami pour le groupe %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membres" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(aucun)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tous les membres" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Créé" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3627,7 +3653,7 @@ msgstr "" "action.register%%%%) pour devenir membre de ce groupe et bien plus ! ([En " "lire plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3640,7 +3666,7 @@ msgstr "" "logiciel libre [StatusNet](http://status.net/). Ses membres partagent des " "messages courts à propos de leur vie et leurs intérêts. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administrateurs" @@ -3765,148 +3791,139 @@ msgid "User is already silenced." msgstr "Cet utilisateur est déjà réduit au silence." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Paramètres basiques pour ce site StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Le nom du site ne peut pas être vide." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Vous devez avoir une adresse électronique de contact valide." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Langue « %s » inconnue." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "URL de rapport d’instantanés invalide." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valeur de lancement d’instantanés invalide." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "La fréquence des instantanés doit être un nombre." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "La limite minimale de texte est de 140 caractères." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "La limite de doublon doit être d’une seconde ou plus." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Général" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nom du site" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Le nom de votre site, comme « Microblog de votre compagnie »" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Apporté par" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Texte utilisé pour le lien de crédits au bas de chaque page" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "Apporté par URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL utilisée pour le lien de crédits au bas de chaque page" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Adresse de courriel de contact de votre site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Zone horaire par défaut" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Zone horaire par défaut pour ce site ; généralement UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Langue du site par défaut" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantanés" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Au hasard lors des requêtes web" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Dans une tâche programée" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantanés de données" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quand envoyer des données statistiques aux serveurs status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Fréquence" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Les instantanés seront envoyés une fois tous les N requêtes" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL de rapport" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Les instantanés seront envoyés à cette URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite de texte" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Nombre maximal de caractères pour les avis." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de doublons" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Combien de temps (en secondes) les utilisateurs doivent attendre pour poster " "la même chose de nouveau." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Notice du site" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nouveau message" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Impossible de sauvegarder les parmètres de la conception." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Notice du site" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Notice du site" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Paramètres SMS" @@ -4010,6 +4027,66 @@ msgstr "" msgid "No code entered" msgstr "Aucun code entré" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantanés" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Modifier la configuration du site" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valeur de lancement d’instantanés invalide." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "La fréquence des instantanés doit être un nombre." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "URL de rapport d’instantanés invalide." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Au hasard lors des requêtes web" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Dans une tâche programée" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantanés de données" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quand envoyer des données statistiques aux serveurs status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Fréquence" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Les instantanés seront envoyés une fois tous les N requêtes" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL de rapport" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Les instantanés seront envoyés à cette URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Sauvegarder les paramètres du site" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Vous n’êtes pas abonné(e) à ce profil." @@ -4220,7 +4297,7 @@ msgstr "Aucune identité de profil dans la requête." msgid "Unsubscribed" msgstr "Désabonné" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4230,7 +4307,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Utilisateur" @@ -4427,18 +4503,24 @@ msgstr "Groupes %1$s, page %2$d" msgid "Search for more groups" msgstr "Rechercher pour plus de groupes" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s n’est pas membre d’un groupe." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Essayez de [rechercher un groupe](%%action.groupsearch%%) et de vous y " "inscrire." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Statuts de %1$s dans %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4494,7 +4576,7 @@ msgstr "" msgid "Plugins" msgstr "Extensions" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4559,22 +4641,22 @@ msgstr "Impossible de mettre à jour le message avec un nouvel URI." msgid "DB error inserting hashtag: %s" msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problème lors de l’enregistrement de l’avis ; trop long." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Erreur lors de l’enregistrement de l’avis. Utilisateur inconnu." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Trop d’avis, trop vite ! Faites une pause et publiez à nouveau dans quelques " "minutes." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4582,19 +4664,19 @@ msgstr "" "Trop de messages en double trop vite ! Prenez une pause et publiez à nouveau " "dans quelques minutes." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de poster des avis sur ce site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement de l’avis." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4619,7 +4701,12 @@ msgstr "Pas abonné !" msgid "Couldn't delete self-subscription." msgstr "Impossible de supprimer l’abonnement à soi-même." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Impossible de cesser l’abonnement" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Impossible de cesser l’abonnement" @@ -4628,20 +4715,19 @@ msgstr "Impossible de cesser l’abonnement" msgid "Welcome to %1$s, @%2$s!" msgstr "Bienvenue à %1$s, @%2$s !" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Impossible de créer le groupe." -#: classes/User_group.php:471 -#, fuzzy +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Impossible de définir l'URI du groupe." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Impossible d’établir l’inscription au groupe." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Impossible d’enregistrer les informations du groupe local." @@ -4682,194 +4768,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Page sans nom" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navigation primaire du site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil personnel et flux des amis" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Personnel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" -msgstr "Modifier votre courriel, avatar, mot de passe, profil" - -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Compte" +msgstr "Modifier votre adresse électronique, avatar, mot de passe, profil" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Se connecter aux services" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifier la configuration du site" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "Administrer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "Inviter des amis et collègues à vous rejoindre dans %s" +msgstr "Inviter des amis et collègues à vous rejoindre sur %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Inviter" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" -msgstr "Fermeture de session" +msgstr "Déconnexion" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" -msgstr "Créer un compte" +msgstr "S'inscrire" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" -msgstr "Ouvrir une session" +msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vues locales" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Avis de la page" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Aide" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "À propos" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "CGU" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Confidentialité" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Source" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contact" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Insigne" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4878,12 +4941,12 @@ msgstr "" "**%%site.name%%** est un service de microblogging qui vous est proposé par " "[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** est un service de micro-blogging." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4894,57 +4957,57 @@ msgstr "" "version %s, disponible sous la licence [GNU Affero General Public License] " "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licence du contenu du site" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contenu et les données de %1$s sont privés et confidentiels." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur de %1$s. Tous droits " "réservés." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Le contenu et les données sont sous le droit d’auteur du contributeur. Tous " "droits réservés." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tous " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licence." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Après" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Avant" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Impossible de gérer le contenu distant pour le moment." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Impossible de gérer le contenu XML embarqué pour le moment." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Impossible de gérer le contenu en Base64 embarqué pour le moment." @@ -4959,91 +5022,78 @@ msgid "Changes to that panel are not allowed." msgstr "La modification de ce panneau n’est pas autorisée." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() n’a pas été implémentée." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() n’a pas été implémentée." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Impossible de supprimer les paramètres de conception." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuration basique du site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuration de la conception" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Conception" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuration utilisateur" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilisateur" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuration d’accès" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accès" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuration des chemins" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Chemins" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuration des sessions" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessions" +msgid "Edit site notice" +msgstr "Notice du site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuration des chemins" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5581,6 +5631,11 @@ msgstr "Choissez une marque pour réduire la liste" msgid "Go" msgstr "Aller" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL du site Web ou blogue du groupe ou sujet " @@ -6075,7 +6130,6 @@ msgid "Available characters" msgstr "Caractères restants" #: lib/messageform.php:178 lib/noticeform.php:236 -#, fuzzy msgctxt "Send button for sending notice" msgid "Send" msgstr "Envoyer" @@ -6202,10 +6256,6 @@ msgstr "Réponses" msgid "Favorites" msgstr "Favoris" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utilisateur" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Boîte de réception" @@ -6231,7 +6281,7 @@ msgstr "Marques dans les avis de %s" msgid "Unknown" msgstr "Inconnu" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnements" @@ -6239,23 +6289,23 @@ msgstr "Abonnements" msgid "All subscriptions" msgstr "Tous les abonnements" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnés" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tous les abonnés" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID de l’utilisateur" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membre depuis" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tous les groupes" @@ -6295,7 +6345,12 @@ msgstr "Reprendre cet avis ?" msgid "Repeat this notice" msgstr "Reprendre cet avis" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquer cet utilisateur de de groupe" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Aucun utilisateur unique défini pour le mode mono-utilisateur." @@ -6449,47 +6504,64 @@ msgstr "Message" msgid "Moderate" msgstr "Modérer" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profil de l’utilisateur" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administrateurs" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modérer" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "il y a quelques secondes" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "il y a 1 minute" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "il y a %d minutes" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "il y a 1 heure" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "il y a %d heures" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "il y a 1 jour" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "il y a %d jours" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "il y a 1 mois" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "il y a %d mois" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "il y a environ 1 an" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 0b62fe337..97c3d45f1 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:51+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:28+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" @@ -21,7 +21,8 @@ msgstr "" "4;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Aceptar" @@ -125,7 +126,7 @@ msgstr "%s e amigos" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s e amigos" @@ -208,11 +209,11 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Método da API non atopado" @@ -585,7 +586,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "Sobre" @@ -679,18 +680,6 @@ msgstr "%s / Favoritos dende %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s updates favorited by %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Liña de tempo de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualizacións dende %1$s en %2$s!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -701,12 +690,12 @@ msgstr "%1$s / ChÃos que respostan a %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "Hai %1$s chÃos en resposta a chÃos dende %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Liña de tempo pública de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s chÃos de calquera!" @@ -965,7 +954,7 @@ msgid "Conversation" msgstr "Código de confirmación." #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "ChÃos" @@ -987,7 +976,7 @@ msgstr "Non estás suscrito a ese perfil" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." @@ -1196,8 +1185,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1329,7 +1319,7 @@ msgstr "O teu Bio é demasiado longo (max 140 car.)." msgid "Could not update group." msgstr "Non se puido actualizar o usuario." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Non se puido crear o favorito." @@ -1457,7 +1447,7 @@ msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non é un enderezo de correo válido." @@ -1653,6 +1643,25 @@ msgstr "Ningún chÃo." msgid "Cannot read file." msgstr "Bloqueo de usuario fallido." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Tamaño inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "O usuario bloqueoute." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1807,12 +1816,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Liña de tempo de %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizacións dende %1$s en %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2434,8 +2449,8 @@ msgstr "Conectar" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Non é un formato de datos soportado." @@ -2583,7 +2598,8 @@ msgstr "Non se pode gardar a contrasinal." msgid "Password saved." msgstr "Contrasinal gardada." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2711,7 +2727,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Recuperar" @@ -2770,11 +2786,11 @@ msgstr "%s non é unha etiqueta de xente válida" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuarios auto-etiquetados como %s - páxina %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Contido do chÃo inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2857,7 +2873,7 @@ msgstr "" "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " "coma ou espazo" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Linguaxe" @@ -2885,7 +2901,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso Horario non seleccionado" @@ -3205,7 +3221,7 @@ msgid "Same as password above. Required." msgstr "A mesma contrasinal que arriba. Requerido." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo Electrónico" @@ -3313,7 +3329,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatÃbel" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscribir" @@ -3418,6 +3434,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Mensaxe de %1$s en %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuario sen un perfil que coincida." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3433,7 +3459,9 @@ msgstr "Non podes enviar mensaxes a este usurio." msgid "User is already sandboxed." msgstr "O usuario bloqueoute." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3457,7 +3485,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3494,8 +3522,8 @@ msgstr "Invitación(s) enviada(s)." msgid "Description" msgstr "Subscricións" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "EstatÃsticas" @@ -3631,48 +3659,48 @@ msgstr "" msgid "Group actions" msgstr "Outras opcions" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de chÃos para %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de chÃos para %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de chÃos para %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Band. SaÃda para %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Membro dende" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 #, fuzzy msgid "(None)" msgstr "(nada)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Crear" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3686,7 +3714,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chÃos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3699,7 +3727,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chÃos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3820,150 +3848,139 @@ msgid "User is already silenced." msgstr "O usuario bloqueoute." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Non é unha dirección de correo válida" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Novo chÃo" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Nova dirección de email para posterar en %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Localización" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Linguaxe preferida" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Novo chÃo" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nova mensaxe" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Non se puideron gardar os teus axustes de Twitter!" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Novo chÃo" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Novo chÃo" #: actions/smssettings.php:58 #, fuzzy @@ -4068,6 +4085,66 @@ msgstr "" msgid "No code entered" msgstr "Non se inseriu ningún código" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Navegación de subscricións" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Configuracións de Twitter" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Non estás suscrito a ese perfil" @@ -4275,7 +4352,7 @@ msgstr "Non hai identificador de perfil na peticion." msgid "Unsubscribed" msgstr "De-suscribido" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4488,16 +4565,22 @@ msgstr "Tódalas subscricións" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "%1s non é unha orixe fiable." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualizacións dende %1$s en %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4541,7 +4624,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Persoal" @@ -4610,23 +4693,23 @@ msgstr "Non se puido actualizar a mensaxe coa nova URI." msgid "DB error inserting hashtag: %s" msgstr "Erro ó inserir o hashtag na BD: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Aconteceu un erro ó gardar o chÃo." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Aconteceu un erro ó gardar o chÃo. Usuario descoñecido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiados chÃos en pouco tempo; tomate un respiro e envÃao de novo dentro " "duns minutos." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4635,20 +4718,20 @@ msgstr "" "Demasiados chÃos en pouco tempo; tomate un respiro e envÃao de novo dentro " "duns minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Tes restrinxido o envio de chÃos neste sitio." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chÃo." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chÃo." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4676,7 +4759,12 @@ msgstr "Non está suscrito!" msgid "Couldn't delete self-subscription." msgstr "Non se pode eliminar a subscrición." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Non se pode eliminar a subscrición." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Non se pode eliminar a subscrición." @@ -4685,22 +4773,22 @@ msgstr "Non se pode eliminar a subscrición." msgid "Welcome to %1$s, @%2$s!" msgstr "Mensaxe de %1$s en %2$s" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Non se puido crear o favorito." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Non se pode gardar a subscrición." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Non se pode gardar a subscrición." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Non se pode gardar a subscrición." @@ -4744,62 +4832,55 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar contrasinal" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Sobre" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navegación de subscricións" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4807,131 +4888,132 @@ msgstr "" "Emprega este formulario para invitar ós teus amigos e colegas a empregar " "este servizo." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear nova conta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Rexistrar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Inicio de sesión" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Axuda" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Axuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Buscar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Novo chÃo" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Novo chÃo" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Axuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Sobre" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Preguntas frecuentes" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fonte" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4940,12 +5022,12 @@ msgstr "" "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4956,57 +5038,57 @@ msgstr "" "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chÃos" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 #, fuzzy msgid "All " msgstr "Todos" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« Despois" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Antes »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5023,99 +5105,89 @@ msgid "Changes to that panel are not allowed." msgstr "Non se permite o rexistro neste intre." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Comando non implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Comando non implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Non se puideron gardar os teus axustes de Twitter!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Confirmar correo electrónico" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Invitar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Persoal" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Confirmación de SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuario" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Confirmación de SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Aceptar" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Confirmación de SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Confirmación de SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Persoal" +msgid "Edit site notice" +msgstr "Novo chÃo" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Confirmación de SMS" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5659,6 +5731,11 @@ msgstr "Elixe unha etiqueta para reducila lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6273,10 +6350,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Band. Entrada" @@ -6303,7 +6376,7 @@ msgstr "O usuario non ten último chio." msgid "Unknown" msgstr "Acción descoñecida" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscricións" @@ -6311,25 +6384,25 @@ msgstr "Subscricións" msgid "All subscriptions" msgstr "Tódalas subscricións" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Subscritores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Usuario" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro dende" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 #, fuzzy msgid "All groups" msgstr "Tódalas etiquetas" @@ -6374,7 +6447,12 @@ msgstr "Non se pode eliminar este chÃos." msgid "Repeat this notice" msgstr "Non se pode eliminar este chÃos." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6546,47 +6624,62 @@ msgstr "Nova mensaxe" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "O usuario non ten perfil." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "fai uns segundos" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "fai un minuto" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "fai %d minutos" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "fai unha hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "fai %d horas" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "fai un dÃa" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "fai %d dÃas" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "fai un mes" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "fai %d meses" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "fai un ano" diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 89fd4dd7a..ea9275685 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:54+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:31+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "קבל" @@ -122,7 +123,7 @@ msgstr "%s וחברי×" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -177,7 +178,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s וחברי×" @@ -205,11 +206,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "קוד ×”×ישור ×œ× × ×ž×¦×." @@ -578,7 +579,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "×ודות" @@ -670,18 +671,6 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "%1$s updates favorited by %2$s / %2$s." msgstr "מיקרובלוג מ×ת %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -692,12 +681,12 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "מיקו×" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "הודעות" @@ -976,7 +965,7 @@ msgstr "×œ× ×©×œ×—× ×• ××œ×™× ×• ×ת הפרופיל ×”×–×”" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1180,8 +1169,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1307,7 +1297,7 @@ msgstr "הביוגרפיה ×רוכה מידי (לכל היותר 140 ×ותיו msgid "Could not update group." msgstr "עידכון המשתמש × ×›×©×œ." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "שמירת מידע ×”×ª×ž×•× ×” × ×›×©×œ" @@ -1431,7 +1421,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -1626,6 +1616,25 @@ msgstr "×ין הודעה כזו." msgid "Cannot read file." msgstr "×ין הודעה כזו." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "גודל ×œ× ×—×•×§×™." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "×œ× ×©×œ×—× ×• ××œ×™× ×• ×ת הפרופיל ×”×–×”" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "למשתמש ×ין פרופיל." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1778,12 +1787,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "מיקרובלוג מ×ת %s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "קבוצות" @@ -2365,8 +2380,8 @@ msgstr "התחבר" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2514,7 +2529,8 @@ msgstr "×œ× × ×™×ª×Ÿ לשמור ×ת הסיסמה" msgid "Password saved." msgstr "הסיסמה × ×©×ž×¨×”." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2641,7 +2657,7 @@ msgstr "" msgid "SSL" msgstr "סמס" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "שיחזור" @@ -2700,11 +2716,11 @@ msgstr "×œ× ×¢×•×ž×“ ×‘×›×œ×œ×™× ×œ-OpenID." msgid "Users self-tagged with %1$s - page %2$d" msgstr "מיקרובלוג מ×ת %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "תוכן ההודעה ×œ× ×—×•×§×™" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2782,7 +2798,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "שפה" @@ -2808,7 +2824,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "הביוגרפיה ×רוכה מידי (לכל היותר 140 ×ותיות)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3113,7 +3129,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -3201,7 +3217,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תו×× ×חר" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "×”×™×¨×©× ×›×ž× ×•×™" @@ -3304,6 +3320,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "תגובת עבור %s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "×œ× ×©×œ×—× ×• ××œ×™× ×• ×ת הפרופיל ×”×–×”" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "למשתמש ×ין פרופיל." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3319,7 +3345,9 @@ msgstr "×œ× ×©×œ×—× ×• ××œ×™× ×• ×ת הפרופיל ×”×–×”" msgid "User is already sandboxed." msgstr "למשתמש ×ין פרופיל." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3343,7 +3371,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3379,8 +3407,8 @@ msgstr "מיקו×" msgid "Description" msgstr "הרשמות" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "סטטיסטיקה" @@ -3514,47 +3542,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "×”×–× ×ª הודעות של %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "×”×–× ×ª הודעות של %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "×”×–× ×ª הודעות של %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "×”×–× ×ª הודעות של %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "חבר מ××–" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "צור" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3564,7 +3592,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3573,7 +3601,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3685,147 +3713,136 @@ msgid "User is already silenced." msgstr "למשתמש ×ין פרופיל." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "הודעה חדשה" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "מיקו×" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "הודעה חדשה" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "הודעה חדשה" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "בעיה בשמירת ההודעה." -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "הודעה חדשה" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "הודעה חדשה" #: actions/smssettings.php:58 #, fuzzy @@ -3922,6 +3939,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "הרשמות" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "הגדרות" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4130,7 +4207,7 @@ msgstr "השרת ×œ× ×”×—×–×™×¨ כתובת פרופיל" msgid "Unsubscribed" msgstr "בטל ×ž× ×•×™" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4337,16 +4414,22 @@ msgstr "כל ×”×ž× ×•×™×™×" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "×œ× ×©×œ×—× ×• ××œ×™× ×• ×ת הפרופיל ×”×–×”" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4390,7 +4473,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "×ישי" @@ -4458,41 +4541,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4520,7 +4603,12 @@ msgstr "×œ× ×ž× ×•×™!" msgid "Couldn't delete self-subscription." msgstr "מחיקת ×”×ž× ×•×™ ×œ× ×”×¦×œ×™×—×”." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "מחיקת ×”×ž× ×•×™ ×œ× ×”×¦×œ×™×—×”." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "מחיקת ×”×ž× ×•×™ ×œ× ×”×¦×œ×™×—×”." @@ -4529,22 +4617,22 @@ msgstr "מחיקת ×”×ž× ×•×™ ×œ× ×”×¦×œ×™×—×”." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "שמירת מידע ×”×ª×ž×•× ×” × ×›×©×œ" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "יצירת ×”×ž× ×•×™ × ×›×©×œ×”." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "יצירת ×”×ž× ×•×™ × ×›×©×œ×”." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "יצירת ×”×ž× ×•×™ × ×›×©×œ×”." @@ -4588,192 +4676,186 @@ msgstr "הסטטוס של %1$s ב-%2$s " msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "×ישי" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "×©× ×” סיסמה" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "×ודות" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "× ×›×©×œ×” ×”×”×¤× ×™×” לשרת: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "התחבר" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "הרשמות" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "גודל ×œ× ×—×•×§×™." #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "צ×" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "הירש×" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "×”×™×›× ×¡" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "עזרה" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "עזרה" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "חיפוש" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "עזרה" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "×ודות" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "רשימת ש×לות × ×¤×•×¦×•×ª" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "פרטיות" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "מקור" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "צור קשר" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4782,12 +4864,12 @@ msgstr "" "**%%site.name%%** ×”×•× ×©×¨×•×ª ביקרובלוג ×”× ×™×ª×Ÿ על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ×”×•× ×©×¨×•×ª ביקרובלוג." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4798,56 +4880,56 @@ msgstr "" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)" -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "הודעה חדשה" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "<< ×חרי" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "×œ×¤× ×™ >>" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4862,95 +4944,85 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "הרשמות" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "הודעה חדשה" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "×ישי" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "הרשמות" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "מתשמש" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "הרשמות" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "קבל" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "הרשמות" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "הרשמות" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "×ישי" +msgid "Edit site notice" +msgstr "הודעה חדשה" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "הרשמות" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5455,6 +5527,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6005,10 +6082,6 @@ msgstr "תגובות" msgid "Favorites" msgstr "מועדפי×" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "מתשמש" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -6034,7 +6107,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "הרשמות" @@ -6042,25 +6115,25 @@ msgstr "הרשמות" msgid "All subscriptions" msgstr "כל ×”×ž× ×•×™×™×" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "×ž× ×•×™×™×" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "×ž× ×•×™×™×" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "מתשמש" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "חבר מ××–" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6104,7 +6177,12 @@ msgstr "×ין הודעה כזו." msgid "Repeat this notice" msgstr "×ין הודעה כזו." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "×ין משתמש ×›×–×”." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6269,47 +6347,62 @@ msgstr "הודעה חדשה" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "למשתמש ×ין פרופיל." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "×œ×¤× ×™ מספר ×©× ×™×•×ª" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "×œ×¤× ×™ כדקה" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "×œ×¤× ×™ ×›-%d דקות" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "×œ×¤× ×™ כשעה" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "×œ×¤× ×™ ×›-%d שעות" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "×œ×¤× ×™ כיו×" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "×œ×¤× ×™ ×›-%d ימי×" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "×œ×¤× ×™ כחודש" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "×œ×¤× ×™ ×›-%d חודשי×" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "×œ×¤× ×™ ×›×©× ×”" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index f46e7357a..b4a6ec7a8 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -9,12 +9,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:02:57+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:34+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: out-statusnet\n" @@ -22,7 +22,8 @@ msgstr "" "n%100==4) ? 2 : 3)\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "PÅ™istup" @@ -122,7 +123,7 @@ msgstr "%1$s a pÅ™ećeljo, strona %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -177,7 +178,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Ty a pÅ™ećeljo" @@ -204,11 +205,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-metoda njenamakana." @@ -563,7 +564,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -650,18 +651,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -672,12 +661,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -921,7 +910,7 @@ msgid "Conversation" msgstr "Konwersacija" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Zdźělenki" @@ -942,7 +931,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1133,8 +1122,9 @@ msgstr "Na standard wróćo stajić" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1252,7 +1242,7 @@ msgstr "wopisanje je pÅ™edoÅ‚ho (maks. %d znamjeÅ¡kow)." msgid "Could not update group." msgstr "Skupina njeje so daÅ‚a aktualizować." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Aliasy njejsu so dali wutworić." @@ -1372,7 +1362,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "NjepÅ‚aćiwa e-mejlowa adresa." @@ -1556,6 +1546,25 @@ msgstr "Dataja njeeksistuje." msgid "Cannot read file." msgstr "Dataja njeda so Äitać." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "NjepÅ‚aćiwa wulkosć." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "NjemóžeÅ¡ tutomu wužiwarju powÄ›sć pósÅ‚ać." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Wužiwar nima profil." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1698,12 +1707,18 @@ msgstr "" msgid "Make this user an admin" msgstr "Tutoho wužiwarja k administratorej Äinić" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Skupiny" @@ -2258,8 +2273,8 @@ msgstr "" msgid "Only " msgstr "Jenož " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Njeje podpÄ›rany datowy format." @@ -2398,7 +2413,8 @@ msgstr "" msgid "Password saved." msgstr "HesÅ‚o skÅ‚adowane." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Šćežki" @@ -2518,7 +2534,7 @@ msgstr "Pozadkowy zapis" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Ženje" @@ -2571,11 +2587,11 @@ msgstr "" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "NjepÅ‚aćiwy wobsah zdźělenki" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2651,7 +2667,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "RÄ›Ä" @@ -2677,7 +2693,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Biografija je pÅ™edoÅ‚ha (maks. %d znamjeÅ¡kow)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "ÄŒasowe pasmo njeje wubrane." @@ -2976,7 +2992,7 @@ msgid "Same as password above. Required." msgstr "Jenake kaž hesÅ‚o horjeka. TrÄ›bne." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mejl" @@ -3060,7 +3076,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abonować" @@ -3156,6 +3172,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "NjemóžeÅ¡ tutomu wužiwarju powÄ›sć pósÅ‚ać." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Wužiwar bjez hodźaceho so profila." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3168,7 +3194,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Posedźenja" @@ -3193,7 +3221,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "SydÅ‚owe nastajenja skÅ‚adować" @@ -3224,8 +3252,8 @@ msgstr "Organizacija" msgid "Description" msgstr "Wopisanje" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistika" @@ -3358,45 +3386,45 @@ msgstr "Aliasy" msgid "Group actions" msgstr "Skupinske akcije" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Čłonojo" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Žadyn)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "WÅ¡itcy ÄÅ‚onojo" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Wutworjeny" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3406,7 +3434,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3415,7 +3443,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratorojo" @@ -3525,146 +3553,137 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." -msgstr "" +#, fuzzy +msgid "Basic settings for this StatusNet site" +msgstr "Designowe nastajenja za tute sydÅ‚o StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "DyrbiÅ¡ pÅ‚aćiwu kontaktowu e-mejlowu adresu měć." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Njeznata rÄ›Ä \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "PowÅ¡itkowny" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "SydÅ‚owe mjeno" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokalny" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Standardne Äasowe pasmo" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Standardna sydÅ‚owa rÄ›Ä" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frekwenca" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limity" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Tekstowy limit" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maksimalna liÄba znamjeÅ¡kow za zdźělenki." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Zdźělenki" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nowa powÄ›sć" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Wužiwar nima poslednju powÄ›sć" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "NjepÅ‚aćiwy wobsah zdźělenki" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "SydÅ‚owe nastajenja skÅ‚adować" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS-nastajenja" @@ -3757,6 +3776,66 @@ msgstr "" msgid "No code entered" msgstr "Žadyn kod zapodaty" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "SMS-wobkrućenje" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frekwenca" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "SydÅ‚owe nastajenja skÅ‚adować" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Njejsy tón profil abonowaÅ‚." @@ -3952,7 +4031,7 @@ msgstr "" msgid "Unsubscribed" msgstr "Wotskazany" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4143,16 +4222,22 @@ msgstr "%1$s skupinskich ÄÅ‚onow, strona %2$d" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4196,7 +4281,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Wersija" @@ -4260,38 +4345,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4316,7 +4401,12 @@ msgstr "Njeje abonowany!" msgid "Couldn't delete self-subscription." msgstr "Sebjeabonement njeje so daÅ‚ zniÄić." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Abonoment njeje so daÅ‚ zniÄić." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Abonoment njeje so daÅ‚ zniÄić." @@ -4325,20 +4415,20 @@ msgstr "Abonoment njeje so daÅ‚ zniÄić." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Skupina njeje so daÅ‚a aktualizować." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Profil njeje so skÅ‚adować daÅ‚." @@ -4380,63 +4470,56 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Strona bjez titula" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Wosobinski" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Změń swoje hesÅ‚o." -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Zwiski" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Zwjazać" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "SMS-wobkrućenje" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4444,143 +4527,144 @@ msgstr "" "Wužij tutón formular, zo by swojich pÅ™ećelow a kolegow pÅ™eprosyÅ‚, zo bychu " "tutu sÅ‚užbu wužiwali." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "PÅ™eprosyć" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Å at za sydÅ‚o." -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logo" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Konto zaÅ‚ožić" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrować" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "PÅ™i sydle pÅ™izjewić" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "PÅ™izjewić" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomhaj!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Za ludźimi abo tekstom pytać" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Pytać" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Pomoc" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Wo" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Huste praÅ¡enja" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Priwatnosć" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "ŽórÅ‚o" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4588,53 +4672,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4649,94 +4733,83 @@ msgid "Changes to that panel are not allowed." msgstr "ZmÄ›ny na tutym woknje njejsu dowolene." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "SydÅ‚o" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Design" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS-wobkrućenje" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Wužiwar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS-wobkrućenje" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "PÅ™istup" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Šćežki" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS-wobkrućenje" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Posedźenja" +msgid "Edit site notice" +msgstr "Dwójna zdźělenka" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS-wobkrućenje" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5224,6 +5297,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5748,10 +5826,6 @@ msgstr "WotmoÅ‚wy" msgid "Favorites" msgstr "Fawority" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Wužiwar" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5777,7 +5851,7 @@ msgstr "" msgid "Unknown" msgstr "Njeznaty" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonementy" @@ -5785,23 +5859,23 @@ msgstr "Abonementy" msgid "All subscriptions" msgstr "WÅ¡Ä› abonementy" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonenća" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "WÅ¡itcy abonenća" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Wužiwarski ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Čłon wot" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "WÅ¡Ä› skupiny" @@ -5841,7 +5915,12 @@ msgstr "Tutu zdźělenku wospjetować?" msgid "Repeat this notice" msgstr "Tutu zdźělenku wospjetować" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Tutoho wužiwarja za tutu skupinu blokować" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -5995,47 +6074,63 @@ msgstr "PowÄ›sć" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Wužiwarski profil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratorojo" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "pÅ™ed něšto sekundami" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "pÅ™ed nÄ›hdźe jednej mjeÅ„Å¡inu" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "pÅ™ed %d mjeÅ„Å¡inami" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "pÅ™ed nÄ›hdźe jednej hodźinu" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "pÅ™ed nÄ›hdźe %d hodźinami" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "pÅ™ed nÄ›hdźe jednym dnjom" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "pÅ™ed nÄ›hdźe %d dnjemi" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "pÅ™ed nÄ›hdźe jednym mÄ›sacom" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "pÅ™ed nÄ›hdźe %d mÄ›sacami" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "pÅ™ed nÄ›hdźe jednym lÄ›tom" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index cc6af7f0f..8f3976673 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -8,19 +8,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:00+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:37+0000\n" "Language-Team: Interlingua\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accesso" @@ -117,7 +118,7 @@ msgstr "%1$s e amicos, pagina %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgstr "" "pulsata a %s o publicar un message a su attention." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Tu e amicos" @@ -207,11 +208,11 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Methodo API non trovate." @@ -575,7 +576,7 @@ msgstr "" "<strong>%3$s</strong> le datos de tu conto de %4$s. Tu debe solmente dar " "accesso a tu conto de %4$s a tertie personas in le quales tu ha confidentia." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Conto" @@ -665,18 +666,6 @@ msgstr "%1$s / Favorites de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualisationes favoritisate per %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Chronologia de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualisationes de %1$s in %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -688,12 +677,12 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" "Actualisationes de %1$s que responde al actualisationes de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Chronologia public de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Actualisationes de totes in %s!" @@ -940,7 +929,7 @@ msgid "Conversation" msgstr "Conversation" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -959,7 +948,7 @@ msgstr "Tu non es le proprietario de iste application." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Il habeva un problema con tu indicio de session." @@ -1155,8 +1144,9 @@ msgstr "Revenir al predefinitiones" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1272,7 +1262,7 @@ msgstr "description es troppo longe (max %d chars)." msgid "Could not update group." msgstr "Non poteva actualisar gruppo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Non poteva crear aliases." @@ -1395,7 +1385,7 @@ msgid "Cannot normalize that email address" msgstr "Non pote normalisar iste adresse de e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Adresse de e-mail invalide." @@ -1587,6 +1577,25 @@ msgstr "File non existe." msgid "Cannot read file." msgstr "Non pote leger file." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Indicio invalide." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Usator es ja silentiate." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1734,12 +1743,18 @@ msgstr "Facer administrator" msgid "Make this user an admin" msgstr "Facer iste usator administrator" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Chronologia de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualisationes de membros de %1$s in %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppos" @@ -2366,8 +2381,8 @@ msgstr "typo de contento " msgid "Only " msgstr "Solmente " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Formato de datos non supportate." @@ -2507,7 +2522,8 @@ msgstr "Non pote salveguardar le nove contrasigno." msgid "Password saved." msgstr "Contrasigno salveguardate." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Camminos" @@ -2627,7 +2643,7 @@ msgstr "Directorio al fundos" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunquam" @@ -2682,11 +2698,11 @@ msgstr "Etiquetta de personas invalide: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usatores auto-etiquettate con %1$s - pagina %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Le contento del nota es invalide" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2768,7 +2784,7 @@ msgstr "" "Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o " "spatios" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Lingua" @@ -2795,7 +2811,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Bio es troppo longe (max %d chars)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso horari non seligite." @@ -3112,7 +3128,7 @@ msgid "Same as password above. Required." msgstr "Identic al contrasigno hic supra. Requirite." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3219,7 +3235,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL de tu profilo in un altere servicio de microblogging compatibile" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscriber" @@ -3323,6 +3339,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Responsas a %1$s in %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Tu non pote silentiar usatores in iste sito." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usator sin profilo correspondente" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3335,7 +3361,9 @@ msgstr "Tu non pote mitter usatores in le cassa de sablo in iste sito." msgid "User is already sandboxed." msgstr "Usator es ja in cassa de sablo." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessiones" @@ -3359,7 +3387,7 @@ msgstr "Cercar defectos de session" msgid "Turn on debugging output for sessions." msgstr "Producer informationes technic pro cercar defectos in sessiones." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salveguardar configurationes del sito" @@ -3390,8 +3418,8 @@ msgstr "Organisation" msgid "Description" msgstr "Description" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statisticas" @@ -3533,45 +3561,45 @@ msgstr "Aliases" msgid "Group actions" msgstr "Actiones del gruppo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Syndication de notas pro le gruppo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Syndication de notas pro le gruppo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Amico de un amico pro le gruppo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nulle)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tote le membros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Create" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3586,7 +3614,7 @@ msgstr "" "lor vita e interesses. [Crea un conto](%%%%action.register%%%%) pro devenir " "parte de iste gruppo e multe alteres! ([Lege plus](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3599,7 +3627,7 @@ msgstr "" "[StatusNet](http://status.net/). Su membros condivide breve messages super " "lor vita e interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratores" @@ -3722,148 +3750,139 @@ msgid "User is already silenced." msgstr "Usator es ja silentiate." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configurationes de base pro iste sito de StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Le longitude del nomine del sito debe esser plus que zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Tu debe haber un valide adresse de e-mail pro contacto." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Lingua \"%s\" incognite." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Le URL pro reportar instantaneos es invalide." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valor de execution de instantaneo invalide." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Le frequentia de instantaneos debe esser un numero." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Le limite minimal del texto es 140 characteres." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Le limite de duplicatos debe esser 1 o plus secundas." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "General" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nomine del sito" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Le nomine de tu sito, como \"Le microblog de TuCompania\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Realisate per" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Le texto usate pro le ligamine al creditos in le pede de cata pagina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL pro \"Realisate per\"" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL usate pro le ligamine al creditos in le pede de cata pagina" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Le adresse de e-mail de contacto pro tu sito" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso horari predefinite" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horari predefinite pro le sito; normalmente UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Lingua predefinite del sito" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantaneos" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Aleatorimente durante un accesso web" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "In un processo planificate" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantaneos de datos" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando inviar datos statistic al servitores de status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequentia" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Un instantaneo essera inviate a cata N accessos web" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL pro reporto" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Le instantaneos essera inviate a iste URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite de texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Numero maximal de characteres pro notas." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de duplicatos" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quante tempore (in secundas) le usatores debe attender ante de poter " "publicar le mesme cosa de novo." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Aviso del sito" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nove message" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Impossibile salveguardar le configurationes del apparentia." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Aviso del sito" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Aviso del sito" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Parametros de SMS" @@ -3963,6 +3982,66 @@ msgstr "" msgid "No code entered" msgstr "Nulle codice entrate" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantaneos" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Modificar le configuration del sito" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valor de execution de instantaneo invalide." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Le frequentia de instantaneos debe esser un numero." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Le URL pro reportar instantaneos es invalide." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Aleatorimente durante un accesso web" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "In un processo planificate" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantaneos de datos" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando inviar datos statistic al servitores de status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequentia" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Un instantaneo essera inviate a cata N accessos web" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL pro reporto" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Le instantaneos essera inviate a iste URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Salveguardar configurationes del sito" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Tu non es subscribite a iste profilo." @@ -4173,7 +4252,7 @@ msgstr "Nulle ID de profilo in requesta." msgid "Unsubscribed" msgstr "Subscription cancellate" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4376,17 +4455,23 @@ msgstr "Gruppos %1$s, pagina %2$d" msgid "Search for more groups" msgstr "Cercar altere gruppos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s non es membro de alcun gruppo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Tenta [cercar gruppos](%%action.groupsearch%%) e facer te membro de illos." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualisationes de %1$s in %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4442,7 +4527,7 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4508,22 +4593,22 @@ msgstr "Non poteva actualisar message con nove URI." msgid "DB error inserting hashtag: %s" msgstr "Error in base de datos durante insertion del marca (hashtag): %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema salveguardar nota. Troppo longe." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema salveguardar nota. Usator incognite." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Troppo de notas troppo rapidemente; face un pausa e publica de novo post " "alcun minutas." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4531,19 +4616,19 @@ msgstr "" "Troppo de messages duplicate troppo rapidemente; face un pausa e publica de " "novo post alcun minutas." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Il te es prohibite publicar notas in iste sito." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema salveguardar nota." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4568,7 +4653,12 @@ msgstr "Non subscribite!" msgid "Couldn't delete self-subscription." msgstr "Non poteva deler auto-subscription." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Non poteva deler subscription." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Non poteva deler subscription." @@ -4577,20 +4667,20 @@ msgstr "Non poteva deler subscription." msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Non poteva crear gruppo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Non poteva configurar le membrato del gruppo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Non poteva configurar le membrato del gruppo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Non poteva salveguardar le subscription." @@ -4632,194 +4722,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Pagina sin titulo" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navigation primari del sito" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personal e chronologia de amicos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Cambiar tu e-mail, avatar, contrasigno, profilo" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Conto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connecter con servicios" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connecter" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modificar le configuration del sito" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invitar amicos e collegas a accompaniar te in %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar le session del sito" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Clauder session" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crear un conto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Crear conto" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Identificar te a iste sito" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso del sito" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistas local" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Aviso de pagina" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navigation secundari del sito" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Adjuta" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "A proposito" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "CdS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Confidentialitate" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fonte" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Insignia" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licentia del software StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4828,12 +4912,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblog offerite per [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblog. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4844,54 +4928,54 @@ msgstr "" "net/), version %s, disponibile sub le [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licentia del contento del sito" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Le contento e datos de %1$s es private e confidential." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Contento e datos sub copyright de %1$s. Tote le derectos reservate." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Contento e datos sub copyright del contributores. Tote le derectos reservate." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Totes " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licentia." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Post" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Ante" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4906,91 +4990,80 @@ msgid "Changes to that panel are not allowed." msgstr "Le modification de iste pannello non es permittite." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() non implementate." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementate." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Impossibile deler configuration de apparentia." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuration basic del sito" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuration del apparentia" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Apparentia" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuration del usator" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usator" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuration del accesso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuration del camminos" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Camminos" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuration del sessiones" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessiones" +msgid "Edit site notice" +msgstr "Aviso del sito" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuration del camminos" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5522,6 +5595,11 @@ msgstr "Selige etiquetta pro reducer lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL del pagina initial o blog del gruppo o topico" @@ -6140,10 +6218,6 @@ msgstr "Responsas" msgid "Favorites" msgstr "Favorites" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usator" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Cassa de entrata" @@ -6169,7 +6243,7 @@ msgstr "Etiquettas in le notas de %s" msgid "Unknown" msgstr "Incognite" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscriptiones" @@ -6177,23 +6251,23 @@ msgstr "Subscriptiones" msgid "All subscriptions" msgstr "Tote le subscriptiones" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscriptores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tote le subscriptores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID del usator" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro depost" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tote le gruppos" @@ -6233,7 +6307,12 @@ msgstr "Repeter iste nota?" msgid "Repeat this notice" msgstr "Repeter iste nota" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blocar iste usator de iste gruppo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Nulle signule usator definite pro le modo de singule usator." @@ -6387,47 +6466,64 @@ msgstr "Message" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profilo del usator" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "alcun secundas retro" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "circa un minuta retro" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "circa %d minutas retro" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "circa un hora retro" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "circa %d horas retro" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "circa un die retro" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "circa %d dies retro" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "circa un mense retro" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "circa %d menses retro" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "circa un anno retro" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index aaf79c8f7..84a90d7d8 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -8,12 +8,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:04+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:39+0000\n" "Language-Team: Icelandic\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: out-statusnet\n" @@ -22,7 +22,8 @@ msgstr "" "n % 100 != 81 && n % 100 != 91);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Samþykkja" @@ -125,7 +126,7 @@ msgstr "%s og vinirnir, sÃða %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "" @@ -207,11 +208,11 @@ msgstr "Færslur frá %1$s og vinum á %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Aðferð à forritsskilum fannst ekki!" @@ -580,7 +581,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Aðgangur" @@ -671,18 +672,6 @@ msgstr "%s / Uppáhaldsbabl frá %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Rás %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Færslur frá %1$s á %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -693,12 +682,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s færslur sem svara færslum frá %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Almenningsrás %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s færslur frá öllum!" @@ -947,7 +936,7 @@ msgid "Conversation" msgstr "" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Babl" @@ -969,7 +958,7 @@ msgstr "Þú ert ekki meðlimur à þessum hópi." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Það komu upp vandamál varðandi setutókann þinn." @@ -1169,8 +1158,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1298,7 +1288,7 @@ msgstr "Lýsing er of löng (à mesta lagi 140 tákn)." msgid "Could not update group." msgstr "Gat ekki uppfært hóp." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "" @@ -1422,7 +1412,7 @@ msgid "Cannot normalize that email address" msgstr "Get ekki staðlað þetta tölvupóstfang" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." @@ -1618,6 +1608,25 @@ msgstr "Ekkert svoleiðis babl." msgid "Cannot read file." msgstr "Týndum skránni okkar" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ótæk stærð." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Þú getur ekki sent þessum notanda skilaboð." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Notandi hefur enga persónulega sÃðu." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1760,12 +1769,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Rás %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Færslur frá %1$s á %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Hópar" @@ -2385,8 +2400,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Enginn stuðningur við gagnasnið." @@ -2533,7 +2548,8 @@ msgstr "Get ekki vistað nýja lykilorðið." msgid "Password saved." msgstr "Lykilorð vistað." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2660,7 +2676,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Endurheimta" @@ -2719,11 +2735,11 @@ msgstr "Ekki gilt persónumerki: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Notendur sjálfmerktir með %s - sÃða %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ótækt bablinnihald" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2806,7 +2822,7 @@ msgstr "" "Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " "bili" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Tungumál" @@ -2834,7 +2850,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Lýsingin er of löng (à mesta lagi 140 tákn)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "TÃmabelti ekki valið." @@ -3138,7 +3154,7 @@ msgid "Same as password above. Required." msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Tölvupóstur" @@ -3243,7 +3259,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Veffang persónulegrar sÃðu á samvirkandi örbloggsþjónustu" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Gerast áskrifandi" @@ -3349,6 +3365,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Skilaboð til %1$s á %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Þú getur ekki sent þessum notanda skilaboð." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Notandi með enga persónulega sÃðu sem passar við" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3363,7 +3389,9 @@ msgstr "Þú getur ekki sent þessum notanda skilaboð." msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3387,7 +3415,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3423,8 +3451,8 @@ msgstr "Uppröðun" msgid "Description" msgstr "Lýsing" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Tölfræði" @@ -3557,45 +3585,45 @@ msgstr "" msgid "Group actions" msgstr "Hópsaðgerðir" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s hópurinn" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Meðlimir" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ekkert)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Allir meðlimir" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3605,7 +3633,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3614,7 +3642,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3726,150 +3754,139 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ekki tækt tölvupóstfang" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Babl vefsÃðunnar" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Nýtt tölvupóstfang til að senda á %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Staðbundin sýn" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Tungumál (ákjósanlegt)" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Babl vefsÃðunnar" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ný skilaboð" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Vandamál komu upp við að vista babl." -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Babl vefsÃðunnar" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Babl vefsÃðunnar" #: actions/smssettings.php:58 #, fuzzy @@ -3971,6 +3988,66 @@ msgstr "" msgid "No code entered" msgstr "Enginn lykill sleginn inn" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Stikl aðalsÃðu" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Stillingar fyrir mynd" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Þú ert ekki áskrifandi." @@ -4176,7 +4253,7 @@ msgstr "Ekkert einkenni persónulegrar sÃðu à beiðni." msgid "Unsubscribed" msgstr "Ekki lengur áskrifandi" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4385,16 +4462,22 @@ msgstr "Hópmeðlimir %s, sÃða %d" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Færslur frá %1$s á %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4438,7 +4521,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Persónulegt" @@ -4507,41 +4590,41 @@ msgstr "Gat ekki uppfært skilaboð með nýju veffangi." msgid "DB error inserting hashtag: %s" msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Gat ekki vistað babl. Óþekktur notandi." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Of mikið babl à einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " "mÃnútur." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Það hefur verið lagt bann við babli frá þér á þessari sÃðu." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4569,7 +4652,12 @@ msgstr "Ekki à áskrift!" msgid "Couldn't delete self-subscription." msgstr "Gat ekki eytt áskrift." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Gat ekki eytt áskrift." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Gat ekki eytt áskrift." @@ -4578,20 +4666,20 @@ msgstr "Gat ekki eytt áskrift." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Gat ekki búið til hóp." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Gat ekki skráð hópmeðlimi." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Gat ekki skráð hópmeðlimi." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Gat ekki vistað áskrift." @@ -4633,25 +4721,25 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Ónafngreind sÃða" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Stikl aðalsÃðu" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persónuleg sÃða og vinarás" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Persónulegt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" @@ -4659,170 +4747,164 @@ msgstr "" "Breyttu tölvupóstinum þÃnum, einkennismyndinni þinni, lykilorðinu þÃnu, " "persónulegu sÃðunni þinni" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Aðgangur" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Gat ekki framsent til vefþjóns: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Tengjast" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Stikl aðalsÃðu" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Stjórnandi" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjóða vinum og vandamönnum að slást à hópinn á %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Bjóða" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Skrá þig út af sÃðunni" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Útskráning" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Búa til aðgang" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Nýskrá" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Skrá þig inn á sÃðuna" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Innskráning" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjálp!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjálp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Leita að fólki eða texta" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Leita" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Babl vefsÃðunnar" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Staðbundin sýn" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Babl sÃðunnar" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Stikl undirsÃðu" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjálp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Um" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Spurt og svarað" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Friðhelgi" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Frumþula" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Tengiliður" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4831,12 +4913,12 @@ msgstr "" "**%%site.name%%** er örbloggsþjónusta à boði [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er örbloggsþjónusta." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4847,54 +4929,54 @@ msgstr "" "sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Hugbúnaðarleyfi StatusNet" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Allt " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "leyfi." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Uppröðun" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Eftir" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Ãður" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4911,98 +4993,88 @@ msgid "Changes to that panel are not allowed." msgstr "Nýskráning ekki leyfð." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Skipun hefur ekki verið fullbúin" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Skipun hefur ekki verið fullbúin" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Staðfesting tölvupóstfangs" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Bjóða" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS staðfesting" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Persónulegt" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS staðfesting" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Notandi" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS staðfesting" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Samþykkja" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS staðfesting" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS staðfesting" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Persónulegt" +msgid "Edit site notice" +msgstr "Babl vefsÃðunnar" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS staðfesting" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5503,6 +5575,11 @@ msgstr "Veldu merki til að þrengja lista" msgid "Go" msgstr "Ãfram" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Vefslóð vefsÃðu hópsins eða umfjöllunarefnisins" @@ -6047,10 +6124,6 @@ msgstr "Svör" msgid "Favorites" msgstr "Uppáhald" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Notandi" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innhólf" @@ -6077,7 +6150,7 @@ msgstr "Merki à babli %s" msgid "Unknown" msgstr "Óþekkt aðgerð" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Ãskriftir" @@ -6085,23 +6158,23 @@ msgstr "Ãskriftir" msgid "All subscriptions" msgstr "Allar áskriftir" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Ãskrifendur" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Allir áskrifendur" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Meðlimur sÃðan" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Allir hópar" @@ -6144,7 +6217,12 @@ msgstr "Svara þessu babli" msgid "Repeat this notice" msgstr "Svara þessu babli" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6304,47 +6382,62 @@ msgstr "Skilaboð" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Persónuleg sÃða notanda" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "fyrir nokkrum sekúndum" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "fyrir um einni mÃnútu sÃðan" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "fyrir um %d mÃnútum sÃðan" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "fyrir um einum klukkutÃma sÃðan" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "fyrir um %d klukkutÃmum sÃðan" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "fyrir um einum degi sÃðan" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "fyrir um %d dögum sÃðan" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "fyrir um einum mánuði sÃðan" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "fyrir um %d mánuðum sÃðan" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "fyrir um einu ári sÃðan" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 61d4cfaf9..5f72eb1a7 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:07+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:42+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Accesso" @@ -120,7 +121,7 @@ msgstr "%1$s e amici, pagina %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,7 +185,7 @@ msgstr "" "un messaggio alla sua attenzione." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Tu e i tuoi amici" @@ -211,11 +212,11 @@ msgstr "Messaggi da %1$s e amici su %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Metodo delle API non trovato." @@ -579,7 +580,7 @@ msgstr "" "<strong>%3$s</strong> ai dati del tuo account %4$s. È consigliato fornire " "accesso al proprio account %4$s solo ad applicazioni di cui ci si può fidare." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Account" @@ -667,18 +668,6 @@ msgstr "%1$s / Preferiti da %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Attività di %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Messaggi da %1$s su %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -689,12 +678,12 @@ msgstr "%1$s / Messaggi che citano %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s messaggi in risposta a quelli da %2$s / %3$s" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Attività pubblica di %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Aggiornamenti di %s da tutti!" @@ -941,7 +930,7 @@ msgid "Conversation" msgstr "Conversazione" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Messaggi" @@ -960,7 +949,7 @@ msgstr "Questa applicazione non è di tua proprietà ." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Si è verificato un problema con il tuo token di sessione." @@ -1155,8 +1144,9 @@ msgstr "Reimposta i valori predefiniti" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1272,7 +1262,7 @@ msgstr "La descrizione è troppo lunga (max %d caratteri)." msgid "Could not update group." msgstr "Impossibile aggiornare il gruppo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Impossibile creare gli alias." @@ -1398,7 +1388,7 @@ msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare quell'indirizzo email" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Non è un indirizzo email valido." @@ -1591,6 +1581,25 @@ msgstr "Nessun file." msgid "Cannot read file." msgstr "Impossibile leggere il file." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Token non valido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "L'utente è già stato zittito." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1738,12 +1747,18 @@ msgstr "Rendi amm." msgid "Make this user an admin" msgstr "Rende questo utente un amministratore" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Attività di %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Messaggi dai membri di %1$s su %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Gruppi" @@ -2363,8 +2378,8 @@ msgstr "tipo di contenuto " msgid "Only " msgstr "Solo " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Non è un formato di dati supportato." @@ -2505,7 +2520,8 @@ msgstr "Impossibile salvare la nuova password." msgid "Password saved." msgstr "Password salvata." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Percorsi" @@ -2625,7 +2641,7 @@ msgstr "Directory dello sfondo" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Mai" @@ -2680,11 +2696,11 @@ msgstr "Non è un'etichetta valida di persona: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utenti auto-etichettati con %1$s - pagina %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Contenuto del messaggio non valido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2766,7 +2782,7 @@ msgid "" msgstr "" "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Lingua" @@ -2794,7 +2810,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia è troppo lunga (max %d caratteri)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso orario non selezionato" @@ -3111,7 +3127,7 @@ msgid "Same as password above. Required." msgstr "Stessa password di sopra; richiesta" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3218,7 +3234,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abbonati" @@ -3322,6 +3338,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Risposte a %1$s su %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Non puoi zittire gli utenti su questo sito." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Utente senza profilo corrispondente." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3334,7 +3360,9 @@ msgstr "Non puoi mettere in \"sandbox\" gli utenti su questo sito." msgid "User is already sandboxed." msgstr "L'utente è già nella \"sandbox\"." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessioni" @@ -3358,7 +3386,7 @@ msgstr "Debug delle sessioni" msgid "Turn on debugging output for sessions." msgstr "Abilita il debug per le sessioni" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salva impostazioni" @@ -3389,8 +3417,8 @@ msgstr "Organizzazione" msgid "Description" msgstr "Descrizione" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistiche" @@ -3531,45 +3559,45 @@ msgstr "Alias" msgid "Group actions" msgstr "Azioni dei gruppi" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Feed dei messaggi per il gruppo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Feed dei messaggi per il gruppo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF per il gruppo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membri" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(nessuno)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Tutti i membri" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Creato" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3585,7 +3613,7 @@ msgstr "" "stesso](%%%%action.register%%%%) per far parte di questo gruppo e di molti " "altri! ([Maggiori informazioni](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3597,7 +3625,7 @@ msgstr "" "(http://it.wikipedia.org/wiki/Microblogging) basato sul software libero " "[StatusNet](http://status.net/)." -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Amministratori" @@ -3719,148 +3747,139 @@ msgid "User is already silenced." msgstr "L'utente è già stato zittito." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Impostazioni di base per questo sito StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Il nome del sito non deve avere lunghezza parti a zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Devi avere un'email di contatto valida." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Lingua \"%s\" sconosciuta." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "URL di segnalazione snapshot non valido." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valore di esecuzione dello snapshot non valido." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "La frequenza degli snapshot deve essere un numero." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Il limite minimo del testo è di 140 caratteri." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Il limite per i duplicati deve essere di 1 o più secondi." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Generale" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nome del sito" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Il nome del tuo sito, topo \"Acme Microblog\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Offerto da" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Testo usato per i crediti nel piè di pagina di ogni pagina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL per offerto da" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL usato per i crediti nel piè di pagina di ogni pagina" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Indirizzo email di contatto per il sito" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Locale" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso orario predefinito" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso orario predefinito; tipicamente UTC" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Lingua predefinita" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Snapshot" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "A caso quando avviene un web hit" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "In un job pianificato" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Snapshot dei dati" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando inviare dati statistici a status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequenza" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Gli snapshot verranno inviati ogni N web hit" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL per la segnalazione" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Gli snapshot verranno inviati a questo URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limiti" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limiti del testo" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Numero massimo di caratteri per messaggo" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite duplicati" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo gli utenti devono attendere (in secondi) prima di inviare " "nuovamente lo stesso messaggio" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Messaggio del sito" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nuovo messaggio" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Impossibile salvare la impostazioni dell'aspetto." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Messaggio del sito" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Messaggio del sito" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Impostazioni SMS" @@ -3960,6 +3979,66 @@ msgstr "" msgid "No code entered" msgstr "Nessun codice inserito" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Snapshot" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Modifica la configurazione del sito" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valore di esecuzione dello snapshot non valido." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "La frequenza degli snapshot deve essere un numero." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "URL di segnalazione snapshot non valido." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "A caso quando avviene un web hit" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "In un job pianificato" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Snapshot dei dati" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando inviare dati statistici a status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequenza" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Gli snapshot verranno inviati ogni N web hit" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL per la segnalazione" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Gli snapshot verranno inviati a questo URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Salva impostazioni" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Non hai una abbonamento a quel profilo." @@ -4169,7 +4248,7 @@ msgstr "Nessun ID di profilo nella richiesta." msgid "Unsubscribed" msgstr "Abbonamento annullato" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4373,16 +4452,22 @@ msgstr "Gruppi di %1$s, pagina %2$d" msgid "Search for more groups" msgstr "Cerca altri gruppi" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s non fa parte di alcun gruppo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Prova a [cercare dei gruppi](%%action.groupsearch%%) e iscriviti." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Messaggi da %1$s su %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4438,7 +4523,7 @@ msgstr "" msgid "Plugins" msgstr "Plugin" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versione" @@ -4505,22 +4590,22 @@ msgstr "Impossibile aggiornare il messaggio con il nuovo URI." msgid "DB error inserting hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema nel salvare il messaggio. Troppo lungo." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema nel salvare il messaggio. Utente sconosciuto." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " "qualche minuto." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4528,19 +4613,19 @@ msgstr "" "Troppi messaggi duplicati troppo velocemente; fai una pausa e scrivi di " "nuovo tra qualche minuto." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4565,7 +4650,12 @@ msgstr "Non hai l'abbonamento!" msgid "Couldn't delete self-subscription." msgstr "Impossibile eliminare l'auto-abbonamento." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Impossibile eliminare l'abbonamento." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Impossibile eliminare l'abbonamento." @@ -4574,19 +4664,19 @@ msgstr "Impossibile eliminare l'abbonamento." msgid "Welcome to %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Impossibile creare il gruppo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Impossibile impostare l'URI del gruppo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Impossibile impostare la membership al gruppo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Impossibile salvare le informazioni del gruppo locale." @@ -4627,194 +4717,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Pagina senza nome" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Esplorazione sito primaria" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profilo personale e attività degli amici" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personale" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Modifica la tua email, immagine, password o il tuo profilo" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Account" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Connettiti con altri servizi" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Connetti" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Modifica la configurazione del sito" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Amministra" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invita" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Termina la tua sessione sul sito" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Esci" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrati" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Accedi" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Aiuto" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cerca persone o del testo" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Cerca" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Aiuto" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Informazioni" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "TOS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Sorgenti" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contatti" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Badge" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licenza del software StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4823,12 +4907,12 @@ msgstr "" "**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]" "(%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** è un servizio di microblog. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4839,56 +4923,56 @@ msgstr "" "s, disponibile nei termini della licenza [GNU Affero General Public License]" "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licenza del contenuto del sito" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "I contenuti e i dati di %1$s sono privati e confidenziali." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "I contenuti e i dati sono copyright di %1$s. Tutti i diritti riservati." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " "riservati." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tutti " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licenza." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginazione" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Successivi" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Precedenti" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Impossibile gestire contenuti remoti." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Impossibile gestire contenuti XML incorporati." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Impossibile gestire contenuti Base64." @@ -4903,91 +4987,80 @@ msgid "Changes to that panel are not allowed." msgstr "Le modifiche al pannello non sono consentite." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() non implementata." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() non implementata." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Impossibile eliminare le impostazioni dell'aspetto." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configurazione di base" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Sito" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configurazione aspetto" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Aspetto" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configurazione utente" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Utente" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configurazione di accesso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Accesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configurazione percorsi" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Percorsi" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configurazione sessioni" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessioni" +msgid "Edit site notice" +msgstr "Messaggio del sito" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configurazione percorsi" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5522,6 +5595,11 @@ msgstr "Scegli un'etichetta per ridurre l'elenco" msgid "Go" msgstr "Vai" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL della pagina web, blog del gruppo o l'argomento" @@ -6137,10 +6215,6 @@ msgstr "Risposte" msgid "Favorites" msgstr "Preferiti" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utente" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "In arrivo" @@ -6166,7 +6240,7 @@ msgstr "Etichette nei messaggi di %s" msgid "Unknown" msgstr "Sconosciuto" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abbonamenti" @@ -6174,23 +6248,23 @@ msgstr "Abbonamenti" msgid "All subscriptions" msgstr "Tutti gli abbonamenti" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abbonati" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tutti gli abbonati" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID utente" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro dal" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Tutti i gruppi" @@ -6230,7 +6304,12 @@ msgstr "Ripetere questo messaggio?" msgid "Repeat this notice" msgstr "Ripeti questo messaggio" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blocca l'utente da questo gruppo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Nessun utente singolo definito per la modalità single-user." @@ -6384,47 +6463,64 @@ msgstr "Messaggio" msgid "Moderate" msgstr "Modera" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profilo utente" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Amministratori" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modera" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "pochi secondi fa" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "circa un minuto fa" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "circa %d minuti fa" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "circa un'ora fa" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "circa %d ore fa" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "circa un giorno fa" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "circa %d giorni fa" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "circa un mese fa" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "circa %d mesi fa" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "circa un anno fa" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index acbcb457d..def172250 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -11,19 +11,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:10+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:45+0000\n" "Language-Team: Japanese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "アクセス" @@ -120,7 +121,7 @@ msgstr "%1$s ã¨å‹äººã€ãƒšãƒ¼ã‚¸ %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,7 +182,7 @@ msgstr "" "ã›ã‚’é€ã£ã¦ã¿ã¾ã›ã‚“ã‹ã€‚" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "ã‚ãªãŸã¨å‹äºº" @@ -208,11 +209,11 @@ msgstr "%2$s ã« %1$s ã¨å‹äººã‹ã‚‰ã®æ›´æ–°ãŒã‚ã‚Šã¾ã™ï¼" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API メソッドãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" @@ -573,7 +574,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "アカウント" @@ -660,18 +661,6 @@ msgstr "%1$s / %2$s ã‹ã‚‰ã®ãŠæ°—ã«å…¥ã‚Š" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s 㯠%2$s ã§ãŠæ°—ã«å…¥ã‚Šã‚’æ›´æ–°ã—ã¾ã—㟠/ %2$s。" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s ã®ã‚¿ã‚¤ãƒ ライン" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%1$s ã‹ã‚‰ %2$s 上ã®æ›´æ–°ã‚’ã—ã¾ã—ãŸ!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -682,12 +671,12 @@ msgstr "%1$s / %2$s ã«ã¤ã„ã¦æ›´æ–°" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%2$s ã‹ã‚‰ã‚¢ãƒƒãƒ—デートã«ç”ãˆã‚‹ %1$s アップデート" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s ã®ãƒ‘ブリックタイムライン" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "皆ã‹ã‚‰ã® %s アップデート!" @@ -934,7 +923,7 @@ msgid "Conversation" msgstr "会話" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "ã¤ã¶ã‚„ã" @@ -953,7 +942,7 @@ msgstr "ã“ã®ã‚¢ãƒ—リケーションã®ã‚ªãƒ¼ãƒŠãƒ¼ã§ã¯ã‚ã‚Šã¾ã›ã‚“。" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "ã‚ãªãŸã®ã‚»ãƒƒã‚·ãƒ§ãƒ³ãƒˆãƒ¼ã‚¯ãƒ³ã«é–¢ã™ã‚‹å•é¡ŒãŒã‚ã‚Šã¾ã—ãŸã€‚" @@ -1149,8 +1138,9 @@ msgstr "デフォルトã¸ãƒªã‚»ãƒƒãƒˆã™ã‚‹" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1266,7 +1256,7 @@ msgstr "記述ãŒé•·ã™ãŽã¾ã™ã€‚(最長 %d å—)" msgid "Could not update group." msgstr "グループを更新ã§ãã¾ã›ã‚“。" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "別åを作æˆã§ãã¾ã›ã‚“。" @@ -1391,7 +1381,7 @@ msgid "Cannot normalize that email address" msgstr "ãã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’æ£è¦åŒ–ã§ãã¾ã›ã‚“" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "有効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã§ã¯ã‚ã‚Šã¾ã›ã‚“。" @@ -1585,6 +1575,25 @@ msgstr "ãã®ã‚ˆã†ãªãƒ•ã‚¡ã‚¤ãƒ«ã¯ã‚ã‚Šã¾ã›ã‚“。" msgid "Cannot read file." msgstr "ファイルをèªã¿è¾¼ã‚ã¾ã›ã‚“。" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "ä¸æ£ãªãƒˆãƒ¼ã‚¯ãƒ³ã€‚" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "ã‚ãªãŸã¯ã“ã®ã‚µã‚¤ãƒˆã®ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹ãƒ¦ãƒ¼ã‚¶ãŒã§ãã¾ã›ã‚“。" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "ユーザã¯æ—¢ã«é»™ã£ã¦ã„ã¾ã™ã€‚" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1731,12 +1740,18 @@ msgstr "管ç†è€…ã«ã™ã‚‹" msgid "Make this user an admin" msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ã‚’管ç†è€…ã«ã™ã‚‹" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s ã®ã‚¿ã‚¤ãƒ ライン" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上㮠%1$s ã®ãƒ¡ãƒ³ãƒãƒ¼ã‹ã‚‰æ›´æ–°ã™ã‚‹" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "グループ" @@ -2355,8 +2370,8 @@ msgstr "内容種別 " msgid "Only " msgstr "ã ã‘ " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "サãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ãªã„データ形å¼ã€‚" @@ -2497,7 +2512,8 @@ msgstr "æ–°ã—ã„パスワードをä¿å˜ã§ãã¾ã›ã‚“。" msgid "Password saved." msgstr "パスワードãŒä¿å˜ã•ã‚Œã¾ã—ãŸã€‚" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "パス" @@ -2617,7 +2633,7 @@ msgstr "ãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "" @@ -2672,11 +2688,11 @@ msgstr "æ£ã—ã„ã‚¿ã‚°ã§ã¯ã‚ã‚Šã¾ã›ã‚“: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "ユーザ自身ãŒã¤ã‘ãŸã‚¿ã‚° %1$s - ページ %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "ä¸æ£ãªã¤ã¶ã‚„ã内容" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2757,7 +2773,7 @@ msgstr "" "自分自身ã«ã¤ã„ã¦ã®ã‚¿ã‚° (アルファベットã€æ•°å—ã€-ã€.ã€_)ã€ã‚«ãƒ³ãƒžã¾ãŸã¯ç©ºç™½åŒºåˆ‡" "ã‚Šã§" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "言語" @@ -2783,7 +2799,7 @@ msgstr "自分をフォãƒãƒ¼ã—ã¦ã„る者を自動的ã«ãƒ•ã‚©ãƒãƒ¼ã™ã‚‹ (B msgid "Bio is too long (max %d chars)." msgstr "自己紹介ãŒé•·ã™ãŽã¾ã™ (最長140æ–‡å—)。" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "タイムゾーンãŒé¸ã°ã‚Œã¦ã„ã¾ã›ã‚“。" @@ -3101,7 +3117,7 @@ msgid "Same as password above. Required." msgstr "上ã®ãƒ‘スワードã¨åŒã˜ã§ã™ã€‚ å¿…é ˆã€‚" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "メール" @@ -3205,7 +3221,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "プãƒãƒ•ã‚¡ã‚¤ãƒ«ã‚µãƒ¼ãƒ“スã¾ãŸã¯ãƒžã‚¤ã‚¯ãƒãƒ–ãƒã‚®ãƒ³ã‚°ã‚µãƒ¼ãƒ“スã®URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "フォãƒãƒ¼" @@ -3310,6 +3326,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$s 上㮠%1$s ã¸ã®è¿”ä¿¡!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "ã‚ãªãŸã¯ã“ã®ã‚µã‚¤ãƒˆã§ãƒ¦ãƒ¼ã‚¶ã‚’黙らã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "åˆã£ã¦ã„るプãƒãƒ•ã‚£ãƒ¼ãƒ«ã®ãªã„ユーザ" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3322,7 +3348,9 @@ msgstr "ã‚ãªãŸã¯ã“ã®ã‚µã‚¤ãƒˆã®ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹ãƒ¦ãƒ¼ã‚¶ãŒã§ãã¾ msgid "User is already sandboxed." msgstr "ユーザã¯ã™ã§ã«ã‚µãƒ³ãƒ‰ãƒœãƒƒã‚¯ã‚¹ã§ã™ã€‚" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "セッション" @@ -3346,7 +3374,7 @@ msgstr "セッションデãƒãƒƒã‚°" msgid "Turn on debugging output for sessions." msgstr "セッションã®ãŸã‚ã®ãƒ‡ãƒãƒƒã‚°å‡ºåŠ›ã‚’オン。" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "サイトè¨å®šã®ä¿å˜" @@ -3377,8 +3405,8 @@ msgstr "組織" msgid "Description" msgstr "概è¦" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "統計データ" @@ -3521,45 +3549,45 @@ msgstr "別å" msgid "Group actions" msgstr "グループアクション" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s グループã®ã¤ã¶ã‚„ãフィード (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s グループã®ã¤ã¶ã‚„ãフィード (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s グループã®ã¤ã¶ã‚„ãフィード (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%s グループ㮠FOAF" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "メンãƒãƒ¼" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(ãªã—)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "å…¨ã¦ã®ãƒ¡ãƒ³ãƒãƒ¼" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "作æˆæ—¥" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3574,7 +3602,7 @@ msgstr "" "ã™ã‚‹çŸã„メッセージを共有ã—ã¾ã™ã€‚[今ã™ãå‚åŠ ](%%%%action.register%%%%) ã—ã¦ã“" "ã®ã‚°ãƒ«ãƒ¼ãƒ—ã®ä¸€å“¡ã«ãªã‚Šã¾ã—ょã†! ([ã‚‚ã£ã¨èªã‚€](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3587,7 +3615,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) サービス。メンãƒãƒ¼ã¯å½¼ã‚‰ã®æš®ã‚‰ã—ã¨èˆˆå‘³ã«é–¢" "ã™ã‚‹çŸã„メッセージを共有ã—ã¾ã™ã€‚" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "管ç†è€…" @@ -3709,151 +3737,142 @@ msgid "User is already silenced." msgstr "ユーザã¯æ—¢ã«é»™ã£ã¦ã„ã¾ã™ã€‚" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "ã“ã® StatusNet サイトã®åŸºæœ¬è¨å®šã€‚" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "サイトåã¯é•·ã•0ã§ã¯ã„ã‘ã¾ã›ã‚“。" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "有効ãªé€£çµ¡ç”¨ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "ä¸æ˜Žãªè¨€èªž \"%s\"" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "ä¸æ£ãªã‚¹ãƒŠãƒƒãƒ—ショットレãƒãƒ¼ãƒˆURL。" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "ä¸æ£ãªã‚¹ãƒŠãƒƒãƒ—ショットランãƒãƒªãƒ¥ãƒ¼" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "ã‚¹ãƒŠãƒƒãƒ—ã‚·ãƒ§ãƒƒãƒˆé »åº¦ã¯æ•°ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "最å°ã®ãƒ†ã‚スト制é™ã¯140å—ã§ã™ã€‚" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "デュープ制é™ã¯1秒以上ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "一般" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "サイトå" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "ã‚ãªãŸã®ã‚µã‚¤ãƒˆã®åå‰ã€\"Yourcompany Microblog\"ã®ã‚ˆã†ãªã€‚" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "æŒã£ã¦æ¥ã‚‰ã‚Œã¾ã™" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "クレジットã«ä½¿ç”¨ã•ã‚Œã‚‹ãƒ†ã‚ストã¯ã€ãã‚Œãžã‚Œã®ãƒšãƒ¼ã‚¸ã®ãƒ•ãƒƒã‚¿ãƒ¼ã§ãƒªãƒ³ã‚¯ã•ã‚Œã¾" "ã™ã€‚" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URLã§ã€æŒã£ã¦æ¥ã‚‰ã‚Œã¾ã™" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "クレジットã«ä½¿ç”¨ã•ã‚Œã‚‹URLã¯ã€ãã‚Œãžã‚Œã®ãƒšãƒ¼ã‚¸ã®ãƒ•ãƒƒã‚¿ãƒ¼ã§ãƒªãƒ³ã‚¯ã•ã‚Œã¾ã™ã€‚" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "ã‚ãªãŸã®ã‚µã‚¤ãƒˆã«ã‚³ãƒ³ã‚¿ã‚¯ãƒˆã™ã‚‹ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "ãƒãƒ¼ã‚«ãƒ«" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "デフォルトタイムゾーン" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "サイトã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚¿ã‚¤ãƒ ゾーン; 通常UTC。" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "デフォルトサイト言語" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "スナップショット" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "予定ã•ã‚Œã¦ã„るジョブã§" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "データスナップショット" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "ã„㤠status.net サーãƒã«çµ±è¨ˆãƒ‡ãƒ¼ã‚¿ã‚’é€ã‚Šã¾ã™ã‹" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "é »åº¦" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "レãƒãƒ¼ãƒˆ URL" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "レãƒãƒ¼ãƒˆ URL" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "ã“ã®URLã«ã‚¹ãƒŠãƒƒãƒ—ショットをé€ã‚‹ã§ã—ょã†" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "制é™" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "テã‚スト制é™" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "ã¤ã¶ã‚„ãã®æ–‡å—ã®æœ€å¤§æ•°" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "デュープ制é™" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "ã©ã‚Œãらã„é•·ã„é–“(秒)ã€ãƒ¦ãƒ¼ã‚¶ã¯ã€å†ã³åŒã˜ã‚‚ã®ã‚’投稿ã™ã‚‹ã®ã‚’å¾…ãŸãªã‘ã‚Œã°ãªã‚‰ãª" "ã„ã‹ã€‚" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "サイトã¤ã¶ã‚„ã" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "æ–°ã—ã„メッセージ" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "ã‚ãªãŸã®ãƒ‡ã‚¶ã‚¤ãƒ³è¨å®šã‚’ä¿å˜ã§ãã¾ã›ã‚“。" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "サイトã¤ã¶ã‚„ã" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "サイトã¤ã¶ã‚„ã" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS è¨å®š" @@ -3954,6 +3973,66 @@ msgstr "" msgid "No code entered" msgstr "コードãŒå…¥åŠ›ã•ã‚Œã¦ã„ã¾ã›ã‚“" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "スナップショット" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "サイトè¨å®šã®å¤‰æ›´" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "ä¸æ£ãªã‚¹ãƒŠãƒƒãƒ—ショットランãƒãƒªãƒ¥ãƒ¼" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "ã‚¹ãƒŠãƒƒãƒ—ã‚·ãƒ§ãƒƒãƒˆé »åº¦ã¯æ•°ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "ä¸æ£ãªã‚¹ãƒŠãƒƒãƒ—ショットレãƒãƒ¼ãƒˆURL。" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "予定ã•ã‚Œã¦ã„るジョブã§" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "データスナップショット" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "ã„㤠status.net サーãƒã«çµ±è¨ˆãƒ‡ãƒ¼ã‚¿ã‚’é€ã‚Šã¾ã™ã‹" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "é »åº¦" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "レãƒãƒ¼ãƒˆ URL" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "レãƒãƒ¼ãƒˆ URL" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "ã“ã®URLã«ã‚¹ãƒŠãƒƒãƒ—ショットをé€ã‚‹ã§ã—ょã†" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "サイトè¨å®šã®ä¿å˜" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "ã‚ãªãŸã¯ãã®ãƒ—ãƒãƒ•ã‚¡ã‚¤ãƒ«ã«ãƒ•ã‚©ãƒãƒ¼ã•ã‚Œã¦ã„ã¾ã›ã‚“。" @@ -4162,7 +4241,7 @@ msgstr "リクエスト内ã«ãƒ—ãƒãƒ•ã‚¡ã‚¤ãƒ«IDãŒã‚ã‚Šã¾ã›ã‚“。" msgid "Unsubscribed" msgstr "フォãƒãƒ¼è§£é™¤æ¸ˆã¿" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4366,16 +4445,22 @@ msgstr "%1$s グループã€ãƒšãƒ¼ã‚¸ %2$d" msgid "Search for more groups" msgstr "ã‚‚ã£ã¨ã‚°ãƒ«ãƒ¼ãƒ—を検索" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s ã¯ã©ã®ã‚°ãƒ«ãƒ¼ãƒ—ã®ãƒ¡ãƒ³ãƒãƒ¼ã§ã‚‚ã‚ã‚Šã¾ã›ã‚“。" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[グループを探ã—ã¦](%%action.groupsearch%%)ãã‚Œã«åŠ å…¥ã—ã¦ãã ã•ã„。" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%1$s ã‹ã‚‰ %2$s 上ã®æ›´æ–°ã‚’ã—ã¾ã—ãŸ!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4421,7 +4506,7 @@ msgstr "" msgid "Plugins" msgstr "プラグイン" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³" @@ -4490,21 +4575,21 @@ msgstr "æ–°ã—ã„URIã§ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã‚’アップデートã§ãã¾ã›ã‚“ã§ã— msgid "DB error inserting hashtag: %s" msgstr "ãƒãƒƒã‚·ãƒ¥ã‚¿ã‚°è¿½åŠ DB エラー: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "ã¤ã¶ã‚„ãã‚’ä¿å˜ã™ã‚‹éš›ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚é•·ã™ãŽã§ã™ã€‚" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "ã¤ã¶ã‚„ãã‚’ä¿å˜ã™ã‚‹éš›ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ä¸æ˜Žãªãƒ¦ãƒ¼ã‚¶ã§ã™ã€‚" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "多ã™ãŽã‚‹ã¤ã¶ã‚„ããŒé€Ÿã™ãŽã¾ã™; 数分間ã®ä¼‘ã¿ã‚’å–ã£ã¦ã‹ã‚‰å†æŠ•ç¨¿ã—ã¦ãã ã•ã„。" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4512,19 +4597,19 @@ msgstr "" "多ã™ãŽã‚‹é‡è¤‡ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒé€Ÿã™ãŽã¾ã™; 数分間休ã¿ã‚’å–ã£ã¦ã‹ã‚‰å†åº¦æŠ•ç¨¿ã—ã¦ãã ã•" "ã„。" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "ã‚ãªãŸã¯ã“ã®ã‚µã‚¤ãƒˆã§ã¤ã¶ã‚„ãを投稿ã™ã‚‹ã®ãŒç¦æ¢ã•ã‚Œã¦ã„ã¾ã™ã€‚" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "ã¤ã¶ã‚„ãã‚’ä¿å˜ã™ã‚‹éš›ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "グループå—信箱をä¿å˜ã™ã‚‹éš›ã«å•é¡ŒãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4549,7 +4634,12 @@ msgstr "フォãƒãƒ¼ã—ã¦ã„ã¾ã›ã‚“ï¼" msgid "Couldn't delete self-subscription." msgstr "自己フォãƒãƒ¼ã‚’削除ã§ãã¾ã›ã‚“。" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "フォãƒãƒ¼ã‚’削除ã§ãã¾ã›ã‚“" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "フォãƒãƒ¼ã‚’削除ã§ãã¾ã›ã‚“" @@ -4558,20 +4648,20 @@ msgstr "フォãƒãƒ¼ã‚’削除ã§ãã¾ã›ã‚“" msgid "Welcome to %1$s, @%2$s!" msgstr "よã†ã“ã %1$sã€@%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "グループを作æˆã§ãã¾ã›ã‚“。" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "グループメンãƒãƒ¼ã‚·ãƒƒãƒ—をセットã§ãã¾ã›ã‚“。" -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "グループメンãƒãƒ¼ã‚·ãƒƒãƒ—をセットã§ãã¾ã›ã‚“。" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "フォãƒãƒ¼ã‚’ä¿å˜ã§ãã¾ã›ã‚“。" @@ -4613,194 +4703,188 @@ msgstr "" msgid "Untitled page" msgstr "å称未è¨å®šãƒšãƒ¼ã‚¸" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "プライマリサイトナビゲーション" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "パーソナルプãƒãƒ•ã‚¡ã‚¤ãƒ«ã¨å‹äººã®ã‚¿ã‚¤ãƒ ライン" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "パーソナル" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "メールアドレスã€ã‚¢ãƒã‚¿ãƒ¼ã€ãƒ‘スワードã€ãƒ—ãƒãƒ‘ティã®å¤‰æ›´" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "アカウント" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "サービスã¸æŽ¥ç¶š" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "接続" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "サイトè¨å®šã®å¤‰æ›´" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "管ç†è€…" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "å‹äººã‚„åŒåƒšãŒ %s ã§åŠ ã‚るよã†èª˜ã£ã¦ãã ã•ã„。" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "招待" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "サイトã‹ã‚‰ãƒã‚°ã‚¢ã‚¦ãƒˆ" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "ãƒã‚°ã‚¢ã‚¦ãƒˆ" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "アカウントを作æˆ" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "登録" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "サイトã¸ãƒã‚°ã‚¤ãƒ³" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "ãƒã‚°ã‚¤ãƒ³" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "助ã‘ã¦ï¼" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "ヘルプ" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "人々ã‹ãƒ†ã‚ストを検索" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "検索" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "サイトã¤ã¶ã‚„ã" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "ãƒãƒ¼ã‚«ãƒ«ãƒ“ュー" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "ページã¤ã¶ã‚„ã" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "セカンダリサイトナビゲーション" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "ヘルプ" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "About" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "よãã‚る質å•" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "プライãƒã‚·ãƒ¼" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "ソース" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "連絡先" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "ãƒãƒƒã‚¸" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet ソフトウェアライセンス" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4809,12 +4893,12 @@ msgstr "" "**%%site.name%%** 㯠[%%site.broughtby%%](%%site.broughtbyurl%%) ãŒæä¾›ã™ã‚‹ãƒž" "イクãƒãƒ–ãƒã‚°ã‚µãƒ¼ãƒ“スã§ã™ã€‚ " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** ã¯ãƒžã‚¤ã‚¯ãƒãƒ–ãƒã‚°ã‚µãƒ¼ãƒ“スã§ã™ã€‚ " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4825,53 +4909,53 @@ msgstr "" "ã„ã¦ã„ã¾ã™ã€‚ ライセンス [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)。" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "サイト内容ライセンス" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "全㦠" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "ライセンス。" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "ページ化" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "<<後" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "å‰>>" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4886,91 +4970,80 @@ msgid "Changes to that panel are not allowed." msgstr "ãã®ãƒ‘ãƒãƒ«ã¸ã®å¤‰æ›´ã¯è¨±å¯ã•ã‚Œã¦ã„ã¾ã›ã‚“。" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() ã¯å®Ÿè£…ã•ã‚Œã¦ã„ã¾ã›ã‚“。" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() ã¯å®Ÿè£…ã•ã‚Œã¦ã„ã¾ã›ã‚“。" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "デザインè¨å®šã‚’削除ã§ãã¾ã›ã‚“。" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "基本サイトè¨å®š" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "サイト" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "デザインè¨å®š" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "デザイン" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "ユーザè¨å®š" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "ユーザ" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "アクセスè¨å®š" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "アクセス" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "パスè¨å®š" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "パス" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "セッションè¨å®š" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "セッション" +msgid "Edit site notice" +msgstr "サイトã¤ã¶ã‚„ã" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "パスè¨å®š" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5460,6 +5533,11 @@ msgstr "ã‚¿ã‚°ã‚’é¸ã‚“ã§ã€ãƒªã‚¹ãƒˆã‚’ç‹ãã—ã¦ãã ã•ã„" msgid "Go" msgstr "移動" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "グループやトピックã®ãƒ›ãƒ¼ãƒ ページやブãƒã‚°ã® URL" @@ -6081,10 +6159,6 @@ msgstr "返信" msgid "Favorites" msgstr "ãŠæ°—ã«å…¥ã‚Š" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "ユーザ" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "å—ä¿¡ç®±" @@ -6110,7 +6184,7 @@ msgstr "%s ã®ã¤ã¶ã‚„ãã®ã‚¿ã‚°" msgid "Unknown" msgstr "ä¸æ˜Ž" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "フォãƒãƒ¼" @@ -6118,23 +6192,23 @@ msgstr "フォãƒãƒ¼" msgid "All subscriptions" msgstr "ã™ã¹ã¦ã®ãƒ•ã‚©ãƒãƒ¼" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "フォãƒãƒ¼ã•ã‚Œã¦ã„ã‚‹" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "ã™ã¹ã¦ã®ãƒ•ã‚©ãƒãƒ¼ã•ã‚Œã¦ã„ã‚‹" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ユーザID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "利用開始日" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "å…¨ã¦ã®ã‚°ãƒ«ãƒ¼ãƒ—" @@ -6174,7 +6248,12 @@ msgstr "ã“ã®ã¤ã¶ã‚„ãã‚’ç¹°ã‚Šè¿”ã—ã¾ã™ã‹?" msgid "Repeat this notice" msgstr "ã“ã®ã¤ã¶ã‚„ãã‚’ç¹°ã‚Šè¿”ã™" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã‹ã‚‰ã“ã®ãƒ¦ãƒ¼ã‚¶ã‚’ブãƒãƒƒã‚¯" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "single-user モードã®ãŸã‚ã®ã‚·ãƒ³ã‚°ãƒ«ãƒ¦ãƒ¼ã‚¶ãŒå®šç¾©ã•ã‚Œã¦ã„ã¾ã›ã‚“。" @@ -6329,47 +6408,64 @@ msgstr "メッセージ" msgid "Moderate" msgstr "管ç†" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "ユーザプãƒãƒ•ã‚¡ã‚¤ãƒ«" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "管ç†è€…" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "管ç†" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "数秒å‰" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "ç´„ 1 分å‰" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "ç´„ %d 分å‰" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "ç´„ 1 時間å‰" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "ç´„ %d 時間å‰" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "ç´„ 1 æ—¥å‰" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "ç´„ %d æ—¥å‰" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "ç´„ 1 ヵ月å‰" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "ç´„ %d ヵ月å‰" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "ç´„ 1 å¹´å‰" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index aca8a093a..fa8b67239 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:13+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:48+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "수ë½" @@ -123,7 +124,7 @@ msgstr "%s 와 친구들, %d 페ì´ì§€" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s ë° ì¹œêµ¬ë“¤" @@ -206,11 +207,11 @@ msgstr "%1$s ë° %2$sì— ìžˆëŠ” ì¹œêµ¬ë“¤ì˜ ì—…ë°ì´íŠ¸!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 메서드를 ì°¾ì„ ìˆ˜ 없습니다." @@ -583,7 +584,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "ê³„ì •" @@ -675,18 +676,6 @@ msgstr "%s / %sì˜ ì¢‹ì•„í•˜ëŠ” 글들" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 좋아하는 ê¸€ì´ ì—…ë°ì´íŠ¸ ë습니다. %Sì— ì˜í•´ / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s 타임ë¼ì¸" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%2$sì— ìžˆëŠ” %1$sì˜ ì—…ë°ì´íŠ¸!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -697,12 +686,12 @@ msgstr "%1$s / %2$sì—게 ë‹µì‹ ì—…ë°ì´íŠ¸" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$së‹˜ì´ %2$s/%3$sì˜ ì—…ë°ì´íŠ¸ì— 답변했습니다." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 공개 타임ë¼ì¸" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "모ë‘ë¡œë¶€í„°ì˜ ì—…ë°ì´íŠ¸ %sê°œ!" @@ -954,7 +943,7 @@ msgid "Conversation" msgstr "ì¸ì¦ 코드" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "통지" @@ -976,7 +965,7 @@ msgstr "ë‹¹ì‹ ì€ í•´ë‹¹ ê·¸ë£¹ì˜ ë©¤ë²„ê°€ 아닙니다." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "ë‹¹ì‹ ì˜ ì„¸ì…˜í† í°ê´€ë ¨ ë¬¸ì œê°€ 있습니다." @@ -1183,8 +1172,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1312,7 +1302,7 @@ msgstr "ì„¤ëª…ì´ ë„ˆë¬´ 길어요. (최대 140글ìž)" msgid "Could not update group." msgstr "ê·¸ë£¹ì„ ì—…ë°ì´íŠ¸ í• ìˆ˜ 없습니다." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "좋아하는 ê²Œì‹œê¸€ì„ ìƒì„±í• 수 없습니다." @@ -1438,7 +1428,7 @@ msgid "Cannot normalize that email address" msgstr "ê·¸ ì´ë©”ì¼ ì£¼ì†Œë¥¼ ì •ê·œí™” í• ìˆ˜ 없습니다." #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ìœ íš¨í•œ ì´ë©”ì¼ ì£¼ì†Œê°€ 아닙니다." @@ -1634,6 +1624,25 @@ msgstr "그러한 통지는 없습니다." msgid "Cannot read file." msgstr "파ì¼ì„ ìžƒì–´ë²„ë ¸ìŠµë‹ˆë‹¤." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "옳지 ì•Šì€ í¬ê¸°" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "ë‹¹ì‹ ì€ ì´ ì‚¬ìš©ìžì—게 메시지를 보낼 수 없습니다." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "회ì›ì´ ë‹¹ì‹ ì„ ì°¨ë‹¨í•´ì™”ìŠµë‹ˆë‹¤." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1789,12 +1798,18 @@ msgstr "관리ìž" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s 타임ë¼ì¸" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$sì— ìžˆëŠ” %1$sì˜ ì—…ë°ì´íŠ¸!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "그룹" @@ -2403,8 +2418,8 @@ msgstr "ì—°ê²°" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "지ì›í•˜ëŠ” 형ì‹ì˜ ë°ì´í„°ê°€ 아닙니다." @@ -2550,7 +2565,8 @@ msgstr "새 비밀번호를 ì €ìž¥ í• ìˆ˜ 없습니다." msgid "Password saved." msgstr "비밀 번호 ì €ìž¥" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2678,7 +2694,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "복구" @@ -2737,11 +2753,11 @@ msgstr "ìœ íš¨í•œ 태그가 아닙니다: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "ì´ìš©ìž 셀프 í…Œí¬ %s - %d 페ì´ì§€" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "옳지 ì•Šì€ í†µì§€ ë‚´ìš©" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2820,7 +2836,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "ë‹¹ì‹ ì„ ìœ„í•œ 태그, (문ìž,숫ìž,-, ., _ë¡œ 구성) 콤마 í˜¹ì€ ê³µë°±ìœ¼ë¡œ 구분." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "언어" @@ -2846,7 +2862,7 @@ msgstr "나ì—게 구ë…하는 사람ì—게 ìžë™ êµ¬ë… ì‹ ì²" msgid "Bio is too long (max %d chars)." msgstr "ìžê¸°ì†Œê°œê°€ 너무 ê¹ë‹ˆë‹¤. (최대 140글ìž)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "íƒ€ìž„ì¡´ì´ ì„¤ì • ë˜ì§€ 않았습니다." @@ -3154,7 +3170,7 @@ msgid "Same as password above. Required." msgstr "위와 ê°™ì€ ë¹„ë°€ 번호. 필수 사í•." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "ì´ë©”ì¼" @@ -3259,7 +3275,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "다른 마ì´í¬ë¡œë¸”로깅 ì„œë¹„ìŠ¤ì˜ ê·€í•˜ì˜ í”„ë¡œí•„ URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "구ë…" @@ -3364,6 +3380,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$sì—ì„œ %1$s까지 메시지" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "ë‹¹ì‹ ì€ ì´ ì‚¬ìš©ìžì—게 메시지를 보낼 수 없습니다." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "프로필 매ì¹ì´ 없는 사용ìž" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3379,7 +3405,9 @@ msgstr "ë‹¹ì‹ ì€ ì´ ì‚¬ìš©ìžì—게 메시지를 보낼 수 없습니다." msgid "User is already sandboxed." msgstr "회ì›ì´ ë‹¹ì‹ ì„ ì°¨ë‹¨í•´ì™”ìŠµë‹ˆë‹¤." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3403,7 +3431,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3439,8 +3467,8 @@ msgstr "페ì´ì§€ìˆ˜" msgid "Description" msgstr "설명" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "통계" @@ -3573,46 +3601,46 @@ msgstr "" msgid "Group actions" msgstr "그룹 í–‰ë™" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s ê·¸ë£¹ì„ ìœ„í•œ 공지피드" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s ê·¸ë£¹ì„ ìœ„í•œ 공지피드" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s ê·¸ë£¹ì„ ìœ„í•œ 공지피드" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%sì˜ ë³´ë‚¸ìª½ì§€í•¨" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "회ì›" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(없습니다.)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "ëª¨ë“ íšŒì›" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "ìƒì„±" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3622,7 +3650,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3633,7 +3661,7 @@ msgstr "" "**%s** 는 %%%%site.name%%%% [마ì´í¬ë¡œë¸”로깅)(http://en.wikipedia.org/wiki/" "Micro-blogging)ì˜ ì‚¬ìš©ìž ê·¸ë£¹ìž…ë‹ˆë‹¤. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 #, fuzzy msgid "Admins" msgstr "관리ìž" @@ -3749,150 +3777,139 @@ msgid "User is already silenced." msgstr "회ì›ì´ ë‹¹ì‹ ì„ ì°¨ë‹¨í•´ì™”ìŠµë‹ˆë‹¤." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "ìœ íš¨í•œ ì´ë©”ì¼ ì£¼ì†Œê°€ 아닙니다." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "사ì´íŠ¸ 공지" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "%sì— í¬ìŠ¤íŒ… í• ìƒˆë¡œìš´ ì´ë©”ì¼ ì£¼ì†Œ" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "로컬 ë·°" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "언어 ì„¤ì •" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "사ì´íŠ¸ 공지" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "새로운 메시지입니다." -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "트위터 í™˜ê²½ì„¤ì •ì„ ì €ìž¥í• ìˆ˜ 없습니다." -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "사ì´íŠ¸ 공지" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "사ì´íŠ¸ 공지" #: actions/smssettings.php:58 #, fuzzy @@ -3995,6 +4012,66 @@ msgstr "ê·€í•˜ì˜ íœ´ëŒ€í°ì˜ í†µì‹ íšŒì‚¬ëŠ” 무엇입니까?" msgid "No code entered" msgstr "코드가 ìž…ë ¥ ë˜ì§€ 않았습니다." +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "주 사ì´íŠ¸ 네비게ì´ì…˜" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "아바타 ì„¤ì •" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "ë‹¹ì‹ ì€ ì´ í”„ë¡œí•„ì— êµ¬ë…ë˜ì§€ ì•Šê³ ìžˆìŠµë‹ˆë‹¤." @@ -4197,7 +4274,7 @@ msgstr "ìš”ì²í•œ 프로필idê°€ 없습니다." msgid "Unsubscribed" msgstr "구ë…취소 ë˜ì—ˆìŠµë‹ˆë‹¤." -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4406,16 +4483,22 @@ msgstr "%s 그룹 회ì›, %d페ì´ì§€" msgid "Search for more groups" msgstr "프로필ì´ë‚˜ í…스트 검색" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "ë‹¹ì‹ ì€ í•´ë‹¹ ê·¸ë£¹ì˜ ë©¤ë²„ê°€ 아닙니다." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%2$sì— ìžˆëŠ” %1$sì˜ ì—…ë°ì´íŠ¸!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4459,7 +4542,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "ê°œì¸ì ì¸" @@ -4528,23 +4611,23 @@ msgstr "새 URI와 함께 메시지를 ì—…ë°ì´íŠ¸í• 수 없습니다." msgid "DB error inserting hashtag: %s" msgstr "해쉬테그를 추가 í• ë•Œì— ë°ì´íƒ€ë² ì´ìŠ¤ ì—러 : %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "통지를 ì €ìž¥í•˜ëŠ”ë° ë¬¸ì œê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "게시글 ì €ìž¥ë¬¸ì œ. ì•Œë ¤ì§€ì§€ì•Šì€ íšŒì›" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "너무 ë§Žì€ ê²Œì‹œê¸€ì´ ë„ˆë¬´ ë¹ ë¥´ê²Œ 올ë¼ì˜µë‹ˆë‹¤. í•œìˆ¨ê³ ë¥´ê³ ëª‡ë¶„í›„ì— ë‹¤ì‹œ í¬ìŠ¤íŠ¸ë¥¼ " "해보세요." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4553,20 +4636,20 @@ msgstr "" "너무 ë§Žì€ ê²Œì‹œê¸€ì´ ë„ˆë¬´ ë¹ ë¥´ê²Œ 올ë¼ì˜µë‹ˆë‹¤. í•œìˆ¨ê³ ë¥´ê³ ëª‡ë¶„í›„ì— ë‹¤ì‹œ í¬ìŠ¤íŠ¸ë¥¼ " "해보세요." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "ì´ ì‚¬ì´íŠ¸ì— 게시글 í¬ìŠ¤íŒ…으로부터 ë‹¹ì‹ ì€ ê¸ˆì§€ë˜ì—ˆìŠµë‹ˆë‹¤." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "통지를 ì €ìž¥í•˜ëŠ”ë° ë¬¸ì œê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "통지를 ì €ìž¥í•˜ëŠ”ë° ë¬¸ì œê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4594,7 +4677,12 @@ msgstr "구ë…í•˜ê³ ìžˆì§€ 않습니다!" msgid "Couldn't delete self-subscription." msgstr "예약 구ë…ì„ ì‚ì œ í• ìˆ˜ 없습니다." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "예약 구ë…ì„ ì‚ì œ í• ìˆ˜ 없습니다." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "예약 구ë…ì„ ì‚ì œ í• ìˆ˜ 없습니다." @@ -4603,20 +4691,20 @@ msgstr "예약 구ë…ì„ ì‚ì œ í• ìˆ˜ 없습니다." msgid "Welcome to %1$s, @%2$s!" msgstr "%2$sì—ì„œ %1$s까지 메시지" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "새 ê·¸ë£¹ì„ ë§Œë“¤ 수 없습니다." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "그룹 맴버ì‹ì„ ì„¸íŒ…í• ìˆ˜ 없습니다." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "그룹 맴버ì‹ì„ ì„¸íŒ…í• ìˆ˜ 없습니다." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "구ë…ì„ ì €ìž¥í• ìˆ˜ 없습니다." @@ -4659,195 +4747,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "ì œëª©ì—†ëŠ” 페ì´ì§€" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "주 사ì´íŠ¸ 네비게ì´ì…˜" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "ê°œì¸ í”„ë¡œí•„ê³¼ 친구 타임ë¼ì¸" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "ê°œì¸ì ì¸" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "ë‹¹ì‹ ì˜ ì´ë©”ì¼, 아바타, 비밀 번호, í”„ë¡œí•„ì„ ë³€ê²½í•˜ì„¸ìš”." -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "ê³„ì •" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "ì„œë²„ì— ìž¬ì ‘ì† í• ìˆ˜ 없습니다 : %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "ì—°ê²°" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "주 사ì´íŠ¸ 네비게ì´ì…˜" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "관리ìž" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "%sì— ì¹œêµ¬ë¥¼ 가입시키기 위해 친구와 ë™ë£Œë¥¼ 초대합니다." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "초대" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "ì´ ì‚¬ì´íŠ¸ë¡œë¶€í„° 로그아웃" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "로그아웃" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "ê³„ì • 만들기" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "회ì›ê°€ìž…" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "ì´ ì‚¬ì´íŠ¸ 로그ì¸" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "로그ì¸" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "ë„ì›€ì´ í•„ìš”í•´!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "ë„움ë§" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "프로필ì´ë‚˜ í…스트 검색" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "검색" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "사ì´íŠ¸ 공지" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "로컬 ë·°" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "페ì´ì§€ 공지" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "ë³´ì¡° 사ì´íŠ¸ 네비게ì´ì…˜" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "ë„움ë§" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "ì •ë³´" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ìžì£¼ 묻는 질문" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "ê°œì¸ì •ë³´ 취급방침" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "소스 코드" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "ì—°ë½í•˜ê¸°" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "찔러 보기" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "ë¼ì½”니카 소프트웨어 ë¼ì´ì„ 스" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4856,12 +4938,12 @@ msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)ê°€ ì œê³µí•˜ëŠ” " "마ì´í¬ë¡œë¸”로깅서비스입니다." -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 는 마ì´í¬ë¡œë¸”로깅서비스입니다." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4872,54 +4954,54 @@ msgstr "" "ì„ ì‚¬ìš©í•©ë‹ˆë‹¤. StatusNet는 [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html) ë¼ì´ì„ ìŠ¤ì— ë”°ë¼ ì‚¬ìš©í• ìˆ˜ 있습니다." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "ë¼ì½”니카 소프트웨어 ë¼ì´ì„ 스" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "ëª¨ë“ ê²ƒ" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "ë¼ì´ì„ 스" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "페ì´ì§€ìˆ˜" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "ë’· 페ì´ì§€" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "ì•ž 페ì´ì§€" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4936,99 +5018,89 @@ msgid "Changes to that panel are not allowed." msgstr "ê°€ìž…ì´ í—ˆìš©ë˜ì§€ 않습니다." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "ëª…ë ¹ì´ ì•„ì§ ì‹¤í–‰ë˜ì§€ 않았습니다." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "ëª…ë ¹ì´ ì•„ì§ ì‹¤í–‰ë˜ì§€ 않았습니다." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "트위터 í™˜ê²½ì„¤ì •ì„ ì €ìž¥í• ìˆ˜ 없습니다." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "ì´ë©”ì¼ ì£¼ì†Œ 확ì¸ì„œ" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "초대" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS ì¸ì¦" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "ê°œì¸ì ì¸" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS ì¸ì¦" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "ì´ìš©ìž" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS ì¸ì¦" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "수ë½" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS ì¸ì¦" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS ì¸ì¦" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "ê°œì¸ì ì¸" +msgid "Edit site notice" +msgstr "사ì´íŠ¸ 공지" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS ì¸ì¦" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5528,6 +5600,11 @@ msgstr "ì¢ì€ 리스트ì—ì„œ 태그 ì„ íƒí•˜ê¸°" msgid "Go" msgstr "Go " +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "그룹 í˜¹ì€ í† í”½ì˜ í™ˆíŽ˜ì´ì§€ë‚˜ 블로그 URL" @@ -6071,10 +6148,6 @@ msgstr "ë‹µì‹ " msgid "Favorites" msgstr "좋아하는 글들" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "ì´ìš©ìž" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "ë°›ì€ ìª½ì§€í•¨" @@ -6101,7 +6174,7 @@ msgstr "%sì˜ ê²Œì‹œê¸€ì˜ íƒœê·¸" msgid "Unknown" msgstr "ì•Œë ¤ì§€ì§€ ì•Šì€ í–‰ë™" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "구ë…" @@ -6109,24 +6182,24 @@ msgstr "구ë…" msgid "All subscriptions" msgstr "ëª¨ë“ ì˜ˆì•½ 구ë…" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "구ë…ìž" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "ëª¨ë“ êµ¬ë…ìž" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "ì´ìš©ìž" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "가입한 ë•Œ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "ëª¨ë“ ê·¸ë£¹" @@ -6169,7 +6242,12 @@ msgstr "ì´ ê²Œì‹œê¸€ì— ëŒ€í•´ 답장하기" msgid "Repeat this notice" msgstr "ì´ ê²Œì‹œê¸€ì— ëŒ€í•´ 답장하기" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "ì´ ê·¸ë£¹ì˜ íšŒì›ë¦¬ìŠ¤íŠ¸" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6333,47 +6411,63 @@ msgstr "메시지" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "ì´ìš©ìž 프로필" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "관리ìž" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "몇 ì´ˆ ì „" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "1분 ì „" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d분 ì „" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "1시간 ì „" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d시간 ì „" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "하루 ì „" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%dì¼ ì „" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "1달 ì „" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d달 ì „" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "1ë…„ ì „" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index b80b0c905..60e5a3c29 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:16+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:50+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "ПриÑтап" @@ -44,10 +45,9 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" -msgstr "Приватен" +msgstr "Приватно" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 @@ -75,7 +75,6 @@ msgid "Save access settings" msgstr "Зачувај нагодувања на приÑтап" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зачувај" @@ -120,7 +119,7 @@ msgstr "%1$s и пријателите, ÑÑ‚Ñ€. %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,7 +183,7 @@ msgstr "" "прочита." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Вие и пријателите" @@ -211,11 +210,11 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API методот не е пронајден." @@ -579,7 +578,7 @@ msgstr "" "<strong>%3$s</strong> податоците за Вашата %4$s Ñметка. Треба да дозволувате " "приÑтап до Вашата %4$s Ñметка Ñамо на трети Ñтрани на кои им верувате." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Сметка" @@ -668,18 +667,6 @@ msgstr "%1$s / Омилени од %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Подновувања на %1$s омилени на %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "ИÑторија на %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Подновувања од %1$s на %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -690,12 +677,12 @@ msgstr "%1$s / Подновувања кои Ñпоменуваат %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s подновувања коишто Ñе одговор на подновувањата од %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Јавна иÑторија на %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s подновуввања од Ñите!" @@ -944,7 +931,7 @@ msgid "Conversation" msgstr "Разговор" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Забелешки" @@ -963,7 +950,7 @@ msgstr "Ðе Ñте ÑопÑтвеник на овој програм." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Се појави проблем Ñо Вашиот ÑеÑиÑки жетон." @@ -1159,8 +1146,9 @@ msgstr "Врати по оÑновно" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1276,7 +1264,7 @@ msgstr "опиÑот е предолг (макÑимум %d знаци)" msgid "Could not update group." msgstr "Ðе можев да ја подновам групата." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Ðе можеше да Ñе Ñоздадат алијаÑи." @@ -1401,7 +1389,7 @@ msgid "Cannot normalize that email address" msgstr "Ðеможам да ја нормализирам таа е-поштенÑка адреÑа" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ðеправилна адреÑа за е-пошта." @@ -1594,6 +1582,25 @@ msgstr "Ðема таква податотека." msgid "Cannot read file." msgstr "Податотеката не може да Ñе прочита." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Погрешен жетон." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ðе можете да Ñтавате кориÑници во пеÑочен режим на оваа веб-Ñтраница." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "КориÑникот е веќе замолчен." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1743,12 +1750,18 @@ msgstr "Ðаправи го/ја админиÑтратор" msgid "Make this user an admin" msgstr "Ðаправи го кориÑникот админиÑтратор" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "ИÑторија на %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Подновувања од членови на %1$s на %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -2011,7 +2024,6 @@ msgstr "Можете да додадете и лична порака во поР#. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "ИÑпрати" @@ -2373,8 +2385,8 @@ msgstr "тип на Ñодржини " msgid "Only " msgstr "Само " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ова не е поддржан формат на податотека." @@ -2515,7 +2527,8 @@ msgstr "Ðе можам да ја зачувам новата лозинка." msgid "Password saved." msgstr "Лозинката е зачувана." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Патеки" @@ -2635,7 +2648,7 @@ msgstr "Директориум на позадината" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Ðикогаш" @@ -2691,11 +2704,11 @@ msgstr "Ðе е важечка ознака за луѓе: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "КориÑтници Ñамоозначени Ñо %1$s - ÑÑ‚Ñ€. %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ðеважечка Ñодржина на забелешката" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2777,7 +2790,7 @@ msgstr "" "Ознаки за Ð’Ð°Ñ Ñамите (букви, бројки, -, . и _), одделени Ñо запирка или " "празно меÑто" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Јазик" @@ -2805,7 +2818,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Биографијата е преголема (највеќе до %d знаци)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Ðе е избрана чаÑовна зона." @@ -3126,7 +3139,7 @@ msgid "Same as password above. Required." msgstr "ИÑто што и лозинката погоре. Задолжително поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Е-пошта" @@ -3233,7 +3246,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL на Вашиот профил на друга компатибилна Ñлужба за микроблогирање." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Претплати Ñе" @@ -3337,6 +3350,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Одговори на %1$s на %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Ðе можете да замолчувате кориÑници на оваа веб-Ñтраница." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "КориÑник без Ñоодветен профил." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3349,7 +3372,9 @@ msgstr "Ðе можете да Ñтавате кориÑници во пеÑоч msgid "User is already sandboxed." msgstr "КориÑникот е веќе во пеÑочен режим." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "СеÑии" @@ -3373,7 +3398,7 @@ msgstr "Поправка на грешки во ÑеÑија" msgid "Turn on debugging output for sessions." msgstr "Вклучи извод од поправка на грешки за ÑеÑии." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зачувај нагодувања на веб-Ñтраницата" @@ -3404,8 +3429,8 @@ msgstr "Организација" msgid "Description" msgstr "ОпиÑ" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "СтатиÑтики" @@ -3549,45 +3574,45 @@ msgstr "ÐлијаÑи" msgid "Group actions" msgstr "Групни дејÑтва" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Канал Ñо забелешки за групата %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Канал Ñо забелешки за групата %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Канал Ñо забелешки за групата%s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF за групата %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Членови" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ðема)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Сите членови" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Создадено" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3603,7 +3628,7 @@ msgstr "" "Ñе](%%%%action.register%%%%) за да Ñтанете дел од оваа група и многу повеќе! " "([Прочитајте повеќе](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3616,7 +3641,7 @@ msgstr "" "Ñлободната програмÑка алатка [StatusNet](http://status.net/). Ðејзините " "членови Ñи разменуваат кратки пораки за нивниот живот и интереÑи. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "ÐдминиÑтратори" @@ -3738,152 +3763,143 @@ msgid "User is already silenced." msgstr "КориÑникот е веќе замолчен." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "ОÑновни нагодувања за оваа StatusNet веб-Ñтраница." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Должината на името на веб-Ñтраницата не може да изнеÑува нула." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Мора да имате важечка контактна е-поштенÑка адреÑа." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Ðепознат јазик „%s“" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Ðеважечки URL за извештај од Ñнимката." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Ðеважечка вредноÑÑ‚ на пуштањето на Ñнимката." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "ЧеÑтотата на Ñнимките мора да биде бројка." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минималното ограничување на текÑтот изнеÑува 140 знаци." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Ограничувањето на дуплирањето мора да изнеÑува барем 1 Ñекунда." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Општи" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Име на веб-Ñтраницата" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Името на Вашата веб-Ñтраница, како на пр. „Микроблог на Вашафирма“" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Овозможено од" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "ТекÑÑ‚ за врÑката за наведување на авторите во долната колонцифра на Ñекоја " "Ñтраница" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL-адреÑа на овозможувачот на уÑлугите" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "URL-адреÑата која е кориÑти за врÑки за автори во долната колоцифра на " "Ñекоја Ñтраница" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Контактна е-пошта за Вашата веб-Ñтраница" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Локално" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "ОÑновна чаÑовна зона" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Матична чаÑовна зона за веб-Ñтраницата; обично UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "ОÑновен јазик" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Снимки" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "По ÑлучајноÑÑ‚ во текот на поÑета" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Во зададена задача" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Снимки од податоци" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Кога да им Ñе иÑпраќаат ÑтатиÑтички податоци на status.net Ñерверите" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "ЧеÑтота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Ќе Ñе иÑпраќаат Ñнимки на Ñекои N поÑети" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL на извештајот" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Снимките ќе Ñе иÑпраќаат на оваа URL-адреÑа" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Ограничувања" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Ограничување на текÑтот" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "МакÑимален број на знаци за забелешки." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Ограничување на дуплирањето" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Колку долго треба да почекаат кориÑниците (во Ñекунди) за да можат повторно " "да го објават иÑтото." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Ðапомена за веб-Ñтраницата" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ðова порака" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Ðе можам да ги зачувам Вашите нагодувања за изглед." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Ðапомена за веб-Ñтраницата" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Ðапомена за веб-Ñтраницата" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Ðагодувања за СМС" @@ -3983,6 +3999,66 @@ msgstr "" msgid "No code entered" msgstr "Ðема внеÑено код" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Снимки" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Промена на поÑтавките на веб-Ñтраницата" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Ðеважечка вредноÑÑ‚ на пуштањето на Ñнимката." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "ЧеÑтотата на Ñнимките мора да биде бројка." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Ðеважечки URL за извештај од Ñнимката." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "По ÑлучајноÑÑ‚ во текот на поÑета" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Во зададена задача" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Снимки од податоци" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Кога да им Ñе иÑпраќаат ÑтатиÑтички податоци на status.net Ñерверите" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "ЧеÑтота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Ќе Ñе иÑпраќаат Ñнимки на Ñекои N поÑети" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL на извештајот" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Снимките ќе Ñе иÑпраќаат на оваа URL-адреÑа" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Зачувај нагодувања на веб-Ñтраницата" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Ðе Ñте претплатени на тој профил." @@ -4190,7 +4266,7 @@ msgstr "Во барањето нема id на профилот." msgid "Unsubscribed" msgstr "Претплатата е откажана" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4200,7 +4276,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "КориÑник" @@ -4394,18 +4469,24 @@ msgstr "Групи %1$s, ÑÑ‚Ñ€. %2$d" msgid "Search for more groups" msgstr "Пребарај уште групи" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не членува во ниедна група." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Обидете Ñе Ñо [пребарување на групи](%%action.groupsearch%%) и придружете им " "Ñе." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Подновувања од %1$s на %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4461,7 +4542,7 @@ msgstr "" msgid "Plugins" msgstr "Приклучоци" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Верзија" @@ -4527,22 +4608,22 @@ msgstr "Ðе можев да ја подновам пораката Ñо нов msgid "DB error inserting hashtag: %s" msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Проблем Ñо зачувувањето на белешката. Премногу долго." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Проблем Ñо зачувувањето на белешката. Ðепознат кориÑник." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Премногу забелњшки за прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4550,19 +4631,19 @@ msgstr "" "Премногу дуплирани пораки во прекратко време; здивнете малку и продолжете за " "неколку минути." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Забрането Ви е да објавувате забелешки на оваа веб-Ñтраница." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблем во зачувувањето на белешката." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно Ñандаче." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4588,7 +4669,12 @@ msgstr "Ðе Ñте претплатени!" msgid "Couldn't delete self-subscription." msgstr "Ðе можам да ја избришам Ñамопретплатата." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Претплата не може да Ñе избрише." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Претплата не може да Ñе избрише." @@ -4597,19 +4683,19 @@ msgstr "Претплата не може да Ñе избрише." msgid "Welcome to %1$s, @%2$s!" msgstr "Добредојдовте на %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Ðе можев да ја Ñоздадам групата." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Ðе можев да поÑтавам URI на групата." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Ðе можев да назначам членÑтво во групата." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Ðе можев да ги зачувам информациите за локалните групи." @@ -4650,194 +4736,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Страница без наÑлов" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Главна навигација" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" -msgstr "Личен профил и иÑторија на пријатели" +msgstr "Личен профил и хронологија на пријатели" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" -msgstr "Личен" +msgstr "Лично" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Промена на е-пошта, аватар, лозинка, профил" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Сметка" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Поврзи Ñе Ñо уÑлуги" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Поврзи Ñе" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" -msgstr "Промена на конфигурацијата на веб-Ñтраницата" +msgstr "Промена на поÑтавките на веб-Ñтраницата" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" -msgstr "ÐдминиÑтратор" +msgstr "Ðдмин" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Поканете пријатели и колеги да Ви Ñе придружат на %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Покани" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Одјава" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" -msgstr "Одјави Ñе" +msgstr "Одјава" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создај Ñметка" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" -msgstr "РегиÑтрирај Ñе" +msgstr "РегиÑтрација" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Ðајава" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Ðајава" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ðапомош!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарајте луѓе или текÑÑ‚" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Барај" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Ðапомена за веб-Ñтраницата" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Локални прегледи" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Ðапомена за Ñтраницата" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Споредна навигација" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Помош" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "За" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ЧПП" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "УÑлови" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "ПриватноÑÑ‚" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Изворен код" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Контакт" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Значка" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Лиценца на програмот StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4846,12 +4909,12 @@ msgstr "" "**%%site.name%%** е ÑÐµÑ€Ð²Ð¸Ñ Ð·Ð° микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е ÑÐµÑ€Ð²Ð¸Ñ Ð·Ð° микроблогирање." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4862,57 +4925,57 @@ msgstr "" "верзија %s, доÑтапен пд [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Лиценца на Ñодржините на веб-Ñтраницата" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содржината и податоците на %1$s Ñе лични и доверливи." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "ÐвторÑките права на Ñодржината и податоците Ñе во ÑопÑтвеноÑÑ‚ на %1$s. Сите " "права задржани." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "ÐвторÑките права на Ñодржината и податоците им припаѓаат на учеÑниците. Сите " "права задржани." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Сите " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "лиценца." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Прелом на Ñтраници" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "По" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Пред" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Сè уште не е поддржана обработката на оддалечена Ñодржина." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Сè уште не е поддржана обработката на XML Ñодржина." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Сè уште не е доÑтапна обработката на вметната Base64 Ñодржина." @@ -4927,91 +4990,78 @@ msgid "Changes to that panel are not allowed." msgstr "Менувањето на тој алатник не е дозволено." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не е имплементирано." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() не е имплементирано." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Ðе можам да ги избришам нагодувањата за изглед." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ОÑновни нагодувања на веб-Ñтраницата" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Веб-Ñтраница" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Конфигурација на изгледот" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Изглед" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Конфигурација на кориÑник" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "КориÑник" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Конфигурација на приÑтапот" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "ПриÑтап" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Конфигурација на патеки" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Патеки" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Конфигурација на ÑеÑиите" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "СеÑии" +msgid "Edit site notice" +msgstr "Ðапомена за веб-Ñтраницата" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Конфигурација на патеки" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5540,6 +5590,11 @@ msgstr "Одберете ознака за да ја уточните лиÑта msgid "Go" msgstr "Оди" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL на Ñтраницата или блогот на групата или темата" @@ -6161,10 +6216,6 @@ msgstr "Одговори" msgid "Favorites" msgstr "Омилени" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "КориÑник" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Примени" @@ -6190,7 +6241,7 @@ msgstr "Ознаки во забелешките на %s" msgid "Unknown" msgstr "Ðепознато" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Претплати" @@ -6198,23 +6249,23 @@ msgstr "Претплати" msgid "All subscriptions" msgstr "Сите претплати" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Претплатници" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Сите претплатници" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "КориÑнички ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Член од" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Сите групи" @@ -6254,7 +6305,12 @@ msgstr "Да ја повторам белешкава?" msgid "Repeat this notice" msgstr "Повтори ја забелешкава" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Блокирај го овој кориÑник од оваа група" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Ðе е зададен кориÑник за еднокориÑничкиот режим." @@ -6408,47 +6464,64 @@ msgstr "Порака" msgid "Moderate" msgstr "Модерирај" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "КориÑнички профил" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "ÐдминиÑтратори" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Модерирај" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "пред неколку Ñекунди" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "пред една минута" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "пред %d минути" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "пред еден чаÑ" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "пред %d чаÑа" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "пред еден ден" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "пред %d денови" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "пред еден меÑец" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "пред %d меÑеца" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "пред една година" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index a3e64e0cb..305303dea 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:19+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:53+0000\n" "Language-Team: Norwegian (bokmÃ¥l)‬\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Tilgang" @@ -118,7 +119,7 @@ msgstr "%1$s og venner, side %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgstr "" "eller post en notis for Ã¥ fÃ¥ hans eller hennes oppmerksomhet." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Du og venner" @@ -207,11 +208,11 @@ msgstr "Oppdateringer fra %1$s og venner pÃ¥ %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API-metode ikke funnet!" @@ -572,7 +573,7 @@ msgstr "" "<strong>%3$s</strong> dine %4$s-kontodata. Du bør bare gi tilgang til din %4" "$s-konto til tredjeparter du stoler pÃ¥." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -659,18 +660,6 @@ msgstr "%1$s / Favoritter fra %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s oppdateringer markert som favoritt av %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidslinje" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Oppdateringar fra %1$s pÃ¥ %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -681,12 +670,12 @@ msgstr "%1$s / Oppdateringer som nevner %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s oppdateringer som svarer pÃ¥ oppdateringer fra %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentlig tidslinje" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringer fra alle sammen!" @@ -932,7 +921,7 @@ msgid "Conversation" msgstr "Samtale" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notiser" @@ -951,7 +940,7 @@ msgstr "Du er ikke eieren av dette programmet." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1147,8 +1136,9 @@ msgstr "Tilbakestill til standardverdier" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1265,7 +1255,7 @@ msgstr "beskrivelse er for lang (maks %d tegn)" msgid "Could not update group." msgstr "Kunne ikke oppdatere gruppe." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Kunne ikke opprette alias." @@ -1387,7 +1377,7 @@ msgid "Cannot normalize that email address" msgstr "Klarer ikke normalisere epostadressen" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ugyldig e-postadresse." @@ -1575,6 +1565,25 @@ msgstr "Ingen slik fil." msgid "Cannot read file." msgstr "Kan ikke lese fil." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ugyldig symbol." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du er allerede logget inn!" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Du er allerede logget inn!" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1718,12 +1727,18 @@ msgstr "Gjør til administrator" msgid "Make this user an admin" msgstr "Gjør denne brukeren til administrator" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tidslinje" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringer fra medlemmer av %1$s pÃ¥ %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -2307,8 +2322,8 @@ msgstr "innholdstype " msgid "Only " msgstr "Bare " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2451,7 +2466,8 @@ msgstr "Klarer ikke Ã¥ lagre nytt passord." msgid "Password saved." msgstr "Passordet ble lagret" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2575,7 +2591,7 @@ msgstr "" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Aldri" @@ -2629,11 +2645,11 @@ msgstr "Ugyldig e-postadresse" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Mikroblogg av %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2710,7 +2726,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "SprÃ¥k" @@ -2737,7 +2753,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks %d tegn)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tidssone ikke valgt." @@ -3041,7 +3057,7 @@ msgid "Same as password above. Required." msgstr "Samme som passord over. Kreves." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-post" @@ -3143,7 +3159,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3244,6 +3260,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Svar til %1$s pÃ¥ %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du er allerede logget inn!" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Brukeren har ingen profil." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3258,7 +3284,9 @@ msgstr "Du er allerede logget inn!" msgid "User is already sandboxed." msgstr "Du er allerede logget inn!" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3282,7 +3310,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3314,8 +3342,8 @@ msgstr "Organisasjon" msgid "Description" msgstr "Beskrivelse" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistikk" @@ -3449,47 +3477,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "Klarte ikke Ã¥ lagre profil." -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Medlem siden" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Opprett" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3499,7 +3527,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3508,7 +3536,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3622,146 +3650,135 @@ msgid "User is already silenced." msgstr "Du er allerede logget inn!" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ugyldig e-postadresse" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" -msgstr "" - -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" +msgstr "Foretrukket sprÃ¥k" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Notiser" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" msgstr "" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Kunne ikke lagre dine innstillinger for utseende." -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Slett notis" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Innstillinger for IM" #: actions/smssettings.php:58 #, fuzzy @@ -3860,6 +3877,65 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Innstillinger for IM" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4060,7 +4136,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4257,16 +4333,22 @@ msgstr "Alle abonnementer" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du er allerede logget inn!" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Oppdateringar fra %1$s pÃ¥ %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4310,7 +4392,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Personlig" @@ -4378,38 +4460,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4436,7 +4518,12 @@ msgstr "Alle abonnementer" msgid "Couldn't delete self-subscription." msgstr "Klarte ikke Ã¥ lagre avatar-informasjonen" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Klarte ikke Ã¥ lagre avatar-informasjonen" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "" @@ -4445,22 +4532,22 @@ msgstr "" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Klarte ikke Ã¥ lagre avatar-informasjonen" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Klarte ikke Ã¥ lagre avatar-informasjonen" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Klarte ikke Ã¥ lagre avatar-informasjonen" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Klarte ikke Ã¥ lagre avatar-informasjonen" @@ -4503,191 +4590,185 @@ msgstr "%1$s sin status pÃ¥ %2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personlig" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endre passordet ditt" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Koble til" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Koble til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Kun invitasjon" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Tema for nettstedet." -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett en ny konto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrering" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Tema for nettstedet." -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjelp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Om" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "OSS/FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kilde" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4696,12 +4777,12 @@ msgstr "" "**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4709,54 +4790,54 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Tidligere »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4771,89 +4852,79 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Nettstedslogo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Personlig" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Tilgang" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Personlig" +msgid "Edit site notice" +msgstr "Slett notis" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +msgid "Snapshots configuration" +msgstr "" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5354,6 +5425,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5900,10 +5976,6 @@ msgstr "Svar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5929,7 +6001,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5937,24 +6009,24 @@ msgstr "" msgid "All subscriptions" msgstr "Alle abonnementer" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Alle abonnementer" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Medlem siden" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -5998,7 +6070,12 @@ msgstr "Kan ikke slette notisen." msgid "Repeat this notice" msgstr "Kan ikke slette notisen." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6160,47 +6237,62 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Klarte ikke Ã¥ lagre profil." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "noen fÃ¥ sekunder siden" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "omtrent ett minutt siden" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "omtrent %d minutter siden" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "omtrent én time siden" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "omtrent %d timer siden" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "omtrent én dag siden" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "omtrent %d dager siden" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "omtrent én mÃ¥ned siden" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "omtrent %d mÃ¥neder siden" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "omtrent ett Ã¥r siden" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index a9e757956..1f2a54970 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:32+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:59+0000\n" "Language-Team: Dutch\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Toegang" @@ -43,10 +44,9 @@ msgstr "Mogen anonieme gebruikers (niet aangemeld) de website bekijken?" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" -msgstr "Privé" +msgstr "Geen anonieme toegang" #. TRANS: Checkbox instructions for admin setting "Invite only" #: actions/accessadminpanel.php:174 @@ -74,7 +74,6 @@ msgid "Save access settings" msgstr "Toegangsinstellingen opslaan" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -119,7 +118,7 @@ msgstr "%1$s en vrienden, pagina %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,7 +182,7 @@ msgstr "" "een bericht sturen." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "U en vrienden" @@ -210,11 +209,11 @@ msgstr "Updates van %1$s en vrienden op %2$s." #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "De API-functie is niet aangetroffen." @@ -589,7 +588,7 @@ msgstr "" "van het type \"<strong>%3$s</strong> tot uw gebruikersgegevens. Geef alleen " "toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Gebruiker" @@ -678,18 +677,6 @@ msgstr "%1$s / Favorieten van %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tijdlijn" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Updates van %1$s op %2$s." - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -700,12 +687,12 @@ msgstr "%1$s / Updates over %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s updates die een reactie zijn op updates van %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publieke tijdlijn" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s updates van iedereen" @@ -953,7 +940,7 @@ msgid "Conversation" msgstr "Dialoog" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mededelingen" @@ -972,7 +959,7 @@ msgstr "U bent niet de eigenaar van deze applicatie." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Er is een probleem met uw sessietoken." @@ -1169,8 +1156,9 @@ msgstr "Standaardinstellingen toepassen" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1286,7 +1274,7 @@ msgstr "de beschrijving is te lang (maximaal %d tekens)" msgid "Could not update group." msgstr "Het was niet mogelijk de groep bij te werken." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Het was niet mogelijk de aliassen aan te maken." @@ -1410,7 +1398,7 @@ msgid "Cannot normalize that email address" msgstr "Kan het emailadres niet normaliseren" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." @@ -1608,6 +1596,25 @@ msgstr "Het bestand bestaat niet." msgid "Cannot read file." msgstr "Het bestand kon niet gelezen worden." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ongeldig token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Deze gebruiker is al gemuilkorfd." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1757,12 +1764,18 @@ msgstr "Beheerder maken" msgid "Make this user an admin" msgstr "Deze gebruiker beheerder maken" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tijdlijn" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Updates voor leden van %1$s op %2$s." -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Groepen" @@ -2027,7 +2040,6 @@ msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Verzenden" @@ -2392,8 +2404,8 @@ msgstr "inhoudstype " msgid "Only " msgstr "Alleen " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Geen ondersteund gegevensformaat." @@ -2532,7 +2544,8 @@ msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." msgid "Password saved." msgstr "Het wachtwoord is opgeslagen." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Paden" @@ -2652,7 +2665,7 @@ msgstr "Achtergrondenmap" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nooit" @@ -2708,11 +2721,11 @@ msgstr "Geen geldig gebruikerslabel: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld - pagina %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ongeldige mededelinginhoud" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2794,7 +2807,7 @@ msgstr "" "Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of " "spaties" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Taal" @@ -2822,7 +2835,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "De beschrijving is te lang (maximaal %d tekens)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Er is geen tijdzone geselecteerd." @@ -3147,7 +3160,7 @@ msgid "Same as password above. Required." msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3254,7 +3267,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abonneren" @@ -3358,6 +3371,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Antwoorden aan %1$s op %2$s." +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "U kunt gebruikers op deze website niet muilkorven." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Gebruiker zonder bijbehorend profiel." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3370,7 +3393,9 @@ msgstr "Op deze website kunt u gebruikers niet in de zandbak plaatsen." msgid "User is already sandboxed." msgstr "Deze gebruiker is al in de zandbak geplaatst." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessies" @@ -3394,7 +3419,7 @@ msgstr "Sessies debuggen" msgid "Turn on debugging output for sessions." msgstr "Debuguitvoer voor sessies inschakelen." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Websiteinstellingen opslaan" @@ -3425,8 +3450,8 @@ msgstr "Organisatie" msgid "Description" msgstr "Beschrijving" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistieken" @@ -3570,45 +3595,45 @@ msgstr "Aliassen" msgid "Group actions" msgstr "Groepshandelingen" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Mededelingenfeed voor groep %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Mededelingenfeed voor groep %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Mededelingenfeed voor groep %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Vriend van een vriend voor de groep %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Leden" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(geen)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alle leden" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Aangemaakt" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3624,7 +3649,7 @@ msgstr "" "lid te worden van deze groep en nog veel meer! [Meer lezen...](%%%%doc.help%%" "%%)" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3637,7 +3662,7 @@ msgstr "" "[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit " "over hun ervaringen en interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Beheerders" @@ -3760,154 +3785,144 @@ msgid "User is already silenced." msgstr "Deze gebruiker is al gemuilkorfd." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Basisinstellingen voor deze StatusNet-website." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "De sitenaam moet ingevoerd worden en mag niet leeg zijn." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "" "U moet een geldig e-mailadres opgeven waarop contact opgenomen kan worden." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "De taal \"%s\" is niet bekend." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "De rapportage-URL voor snapshots is ongeldig." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "De waarde voor het uitvoeren van snapshots is ongeldig." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "De snapshotfrequentie moet een getal zijn." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "De minimale tekstlimiet is 140 tekens." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "De duplicaatlimiet moet één of meer seconden zijn." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Algemeen" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Websitenaam" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "De naam van de website, zoals \"UwBedrijf Microblog\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Mogelijk gemaakt door" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "De tekst die gebruikt worden in de \"creditsverwijzing\" in de voettekst van " "iedere pagina" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "\"Mogelijk gemaakt door\"-URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "URL die wordt gebruikt voor de verwijzing naar de hoster en dergelijke in de " "voettekst van iedere pagina" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "E-mailadres om contact op te nemen met de websitebeheerder" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokaal" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Standaardtijdzone" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Standaardtijdzone voor de website. Meestal UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Standaardtaal" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Snapshots" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Willekeurig tijdens een websitehit" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Als geplande taak" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Snapshots van gegevens" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -"Wanneer statistische gegevens naar de status.net-servers verzonden worden" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequentie" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "Rapportage-URL" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Snapshots worden naar deze URL verzonden" - -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limieten" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Tekstlimiet" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maximaal aantal te gebruiken tekens voor mededelingen." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Duplicaatlimiet" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hoe lang gebruikers moeten wachten (in seconden) voor ze hetzelfde kunnen " "zenden." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Mededeling van de website" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nieuw bericht" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Mededeling van de website" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Mededeling van de website" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS-instellingen" @@ -4007,6 +4022,67 @@ msgstr "" msgid "No code entered" msgstr "Er is geen code ingevoerd" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Snapshots" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Websiteinstellingen wijzigen" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "De waarde voor het uitvoeren van snapshots is ongeldig." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "De snapshotfrequentie moet een getal zijn." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "De rapportage-URL voor snapshots is ongeldig." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Willekeurig tijdens een websitehit" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Als geplande taak" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Snapshots van gegevens" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" +"Wanneer statistische gegevens naar de status.net-servers verzonden worden" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequentie" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Iedere zoveel websitehits wordt een snapshot verzonden" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "Rapportage-URL" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Snapshots worden naar deze URL verzonden" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Websiteinstellingen opslaan" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "U bent niet geabonneerd op dat profiel." @@ -4218,7 +4294,7 @@ msgstr "Het profiel-ID was niet aanwezig in het verzoek." msgid "Unsubscribed" msgstr "Het abonnement is opgezegd" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4228,7 +4304,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Gebruiker" @@ -4423,17 +4498,23 @@ msgstr "Groepen voor %1$s, pagina %2$d" msgid "Search for more groups" msgstr "Meer groepen zoeken" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s is van geen enkele groep lid." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "U kunt [naar groepen zoeken](%%action.groupsearch%%) en daar lid van worden." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Updates van %1$s op %2$s." + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4489,7 +4570,7 @@ msgstr "" msgid "Plugins" msgstr "Plug-ins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versie" @@ -4556,26 +4637,26 @@ msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI." msgid "DB error inserting hashtag: %s" msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" "Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te " "lang." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" "Er was een probleem bij het opslaan van de mededeling. De gebruiker is " "onbekend." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " "het over enige tijd weer." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4583,22 +4664,22 @@ msgstr "" "Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en " "plaats over een aantal minuten pas weer een bericht." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "groep." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4623,7 +4704,12 @@ msgstr "Niet geabonneerd!" msgid "Couldn't delete self-subscription." msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Kon abonnement niet verwijderen." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Kon abonnement niet verwijderen." @@ -4632,19 +4718,19 @@ msgstr "Kon abonnement niet verwijderen." msgid "Welcome to %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Het was niet mogelijk de groep aan te maken." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Het was niet mogelijk de groeps-URI in te stellen." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." @@ -4685,194 +4771,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Naamloze pagina" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Primaire sitenavigatie" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Persoonlijk profiel en tijdlijn van vrienden" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Persoonlijk" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Gebruiker" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" -msgstr "Met diensten verbinden" +msgstr "Met andere diensten koppelen" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" -msgstr "Koppelen" +msgstr "Koppelingen" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Websiteinstellingen wijzigen" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" -msgstr "Beheerder" +msgstr "Beheer" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" -msgstr "Uitnodigen" +msgstr "Uitnodigingen" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" -msgstr "Van de site afmelden" +msgstr "Gebruiker afmelden" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Afmelden" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Gebruiker aanmaken" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "Registreren" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" -msgstr "Bij de site aanmelden" +msgstr "Gebruiker aanmelden" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Help" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Naar gebruikers of tekst zoeken" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Mededeling van de website" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokale weergaven" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Mededeling van de pagina" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Secundaire sitenavigatie" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Help" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Over" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "Veel gestelde vragen" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Gebruiksvoorwaarden" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Broncode" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contact" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Widget" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licentie van de StatusNet-software" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4881,12 +4944,12 @@ msgstr "" "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is een microblogdienst. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4897,57 +4960,57 @@ msgstr "" "versie %s, beschikbaar onder de [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licentie voor siteinhoud" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Inhoud en gegevens van %1$s zijn persoonlijk en vertrouwelijk." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij %1$s. Alle rechten " "voorbehouden." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " "gebruikers. Alle rechten voorbehouden." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Alle " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licentie." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Later" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Eerder" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Het is nog niet mogelijk inhoud uit andere omgevingen te verwerken." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Het is nog niet mogelijk ingebedde XML-inhoud te verwerken" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Het is nog niet mogelijk ingebedde Base64-inhoud te verwerken" @@ -4962,91 +5025,78 @@ msgid "Changes to that panel are not allowed." msgstr "Wijzigingen aan dat venster zijn niet toegestaan." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() is niet geïmplementeerd." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() is nog niet geïmplementeerd." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Het was niet mogelijk om de ontwerpinstellingen te verwijderen." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Basisinstellingen voor de website" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Website" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Instellingen vormgeving" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Uiterlijk" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Gebruikersinstellingen" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Gebruiker" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Toegangsinstellingen" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Toegang" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Padinstellingen" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Paden" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Sessieinstellingen" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessies" +msgid "Edit site notice" +msgstr "Mededeling van de website" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Padinstellingen" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5584,6 +5634,11 @@ msgstr "Kies een label om de lijst kleiner te maken" msgid "Go" msgstr "OK" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "De URL van de thuispagina of de blog van de groep of het onderwerp" @@ -6205,10 +6260,6 @@ msgstr "Antwoorden" msgid "Favorites" msgstr "Favorieten" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Gebruiker" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Postvak IN" @@ -6234,7 +6285,7 @@ msgstr "Labels in de mededelingen van %s" msgid "Unknown" msgstr "Onbekend" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonnementen" @@ -6242,23 +6293,23 @@ msgstr "Abonnementen" msgid "All subscriptions" msgstr "Alle abonnementen" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abonnees" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Alle abonnees" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Gebruikers-ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Lid sinds" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alle groepen" @@ -6298,7 +6349,12 @@ msgstr "Deze mededeling herhalen?" msgid "Repeat this notice" msgstr "Deze mededeling herhalen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Deze gebruiker de toegang tot deze groep ontzeggen" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus." @@ -6452,47 +6508,64 @@ msgstr "Bericht" msgid "Moderate" msgstr "Modereren" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Gebruikersprofiel" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Beheerders" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Modereren" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "een paar seconden geleden" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "ongeveer een minuut geleden" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "ongeveer %d minuten geleden" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "ongeveer een uur geleden" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "ongeveer %d uur geleden" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "ongeveer een dag geleden" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "ongeveer %d dagen geleden" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "ongeveer een maand geleden" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "ongeveer %d maanden geleden" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "ongeveer een jaar geleden" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index ddd183e87..c6576fbcf 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:22+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:56:56+0000\n" "Language-Team: Norwegian Nynorsk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Godta" @@ -123,7 +124,7 @@ msgstr "%s med vener, side %d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s med vener" @@ -206,11 +207,11 @@ msgstr "Oppdateringar frÃ¥ %1$s og vener pÃ¥ %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Fann ikkje API-metode." @@ -581,7 +582,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -673,18 +674,6 @@ msgstr "%s / Favorittar frÃ¥ %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s oppdateringar favorisert av %s / %s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidsline" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Oppdateringar frÃ¥ %1$s pÃ¥ %2$s!" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -695,12 +684,12 @@ msgstr "%1$s / Oppdateringar som svarar til %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s oppdateringar som svarar pÃ¥ oppdateringar frÃ¥ %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s offentleg tidsline" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s oppdateringar frÃ¥ alle saman!" @@ -952,7 +941,7 @@ msgid "Conversation" msgstr "Stadfestingskode" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notisar" @@ -974,7 +963,7 @@ msgstr "Du er ikkje medlem av den gruppa." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." @@ -1182,8 +1171,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1311,7 +1301,7 @@ msgstr "skildringa er for lang (maks 140 teikn)." msgid "Could not update group." msgstr "Kann ikkje oppdatera gruppa." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Kunne ikkje lagre favoritt." @@ -1438,7 +1428,7 @@ msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ikkje ei gyldig epostadresse." @@ -1634,6 +1624,25 @@ msgstr "Denne notisen finst ikkje." msgid "Cannot read file." msgstr "Mista fila vÃ¥r." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ugyldig storleik." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Brukar har blokkert deg." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1789,12 +1798,18 @@ msgstr "Administrator" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tidsline" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Oppdateringar frÃ¥ %1$s pÃ¥ %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -2408,8 +2423,8 @@ msgstr "Kopla til" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ikkje eit støtta dataformat." @@ -2555,7 +2570,8 @@ msgstr "Klarar ikkje lagra nytt passord." msgid "Password saved." msgstr "Lagra passord." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2683,7 +2699,7 @@ msgstr "" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Gjenopprett" @@ -2742,11 +2758,11 @@ msgstr "Ikkje gyldig merkelapp: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Brukarar sjølv-merka med %s, side %d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ugyldig notisinnhald" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2828,7 +2844,7 @@ msgstr "" "merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " "mellomroms separert." -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "SprÃ¥k" @@ -2855,7 +2871,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks 140 " -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tidssone er ikkje valt." @@ -3164,7 +3180,7 @@ msgid "Same as password above. Required." msgstr "Samme som passord over. PÃ¥krevd." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Epost" @@ -3272,7 +3288,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL til profilsida di pÃ¥ ei anna kompatibel mikrobloggingteneste." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Ting" @@ -3377,6 +3393,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Melding til %1$s pÃ¥ %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Kan ikkje finne brukar" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3392,7 +3418,9 @@ msgstr "Du kan ikkje sende melding til denne brukaren." msgid "User is already sandboxed." msgstr "Brukar har blokkert deg." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3416,7 +3444,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3452,8 +3480,8 @@ msgstr "Paginering" msgid "Description" msgstr "Beskriving" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistikk" @@ -3586,46 +3614,46 @@ msgstr "" msgid "Group actions" msgstr "Gruppe handlingar" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Notisstraum for %s gruppa" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Utboks for %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alle medlemmar" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Lag" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3635,7 +3663,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3646,7 +3674,7 @@ msgstr "" "**%s** er ei brukargruppe pÃ¥ %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 #, fuzzy msgid "Admins" msgstr "Administrator" @@ -3762,150 +3790,139 @@ msgid "User is already silenced." msgstr "Brukar har blokkert deg." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Ikkje ei gyldig epostadresse" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Statusmelding" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Ny epostadresse for Ã¥ oppdatera %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Lokale syningar" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Foretrukke sprÃ¥k" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Statusmelding" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ny melding" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Klarte ikkje Ã¥ lagra Twitter-innstillingane dine!" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Statusmelding" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Statusmelding" #: actions/smssettings.php:58 #, fuzzy @@ -4009,6 +4026,66 @@ msgstr "" msgid "No code entered" msgstr "Ingen innskriven kode" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Navigasjon for hovudsida" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Avatar-innstillingar" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Du tingar ikkje oppdateringar til den profilen." @@ -4214,7 +4291,7 @@ msgstr "Ingen profil-ID i førespurnaden." msgid "Unsubscribed" msgstr "Fjerna tinging" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4425,16 +4502,22 @@ msgstr "%s medlemmar i gruppa, side %d" msgid "Search for more groups" msgstr "Søk etter folk eller innhald" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Du er ikkje medlem av den gruppa." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Oppdateringar frÃ¥ %1$s pÃ¥ %2$s!" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4478,7 +4561,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Personleg" @@ -4547,22 +4630,22 @@ msgstr "Kunne ikkje oppdatere melding med ny URI." msgid "DB error inserting hashtag: %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Feil ved lagring av notis. Ukjend brukar." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " @@ -4570,20 +4653,20 @@ msgid "" msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar pÃ¥ denne sida." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4611,7 +4694,12 @@ msgstr "Ikkje tinga." msgid "Couldn't delete self-subscription." msgstr "Kan ikkje sletta tinging." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Kan ikkje sletta tinging." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Kan ikkje sletta tinging." @@ -4620,20 +4708,20 @@ msgstr "Kan ikkje sletta tinging." msgid "Welcome to %1$s, @%2$s!" msgstr "Melding til %1$s pÃ¥ %2$s" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Kunne ikkje laga gruppa." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Kunne ikkje bli med i gruppa." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Kunne ikkje bli med i gruppa." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Kunne ikkje lagra abonnement." @@ -4676,195 +4764,189 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Ingen tittel" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navigasjon for hovudsida" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personleg profil og oversyn over vener" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Personleg" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Endra e-posten, avataren, passordet eller profilen" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Klarte ikkje Ã¥ omdirigera til tenaren: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Kopla til" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Navigasjon for hovudsida" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til Ã¥ bli med deg pÃ¥ %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Invitér" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Logg ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrér" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Logg inn" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Hjelp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Søk" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "AndrenivÃ¥s side navigasjon" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjelp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Om" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "OSS" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Personvern" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kjeldekode" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Dult" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4873,12 +4955,12 @@ msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4889,54 +4971,54 @@ msgstr "" "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Alle" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "lisens." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "« Etter" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Før »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4953,99 +5035,89 @@ msgid "Changes to that panel are not allowed." msgstr "Registrering ikkje tillatt." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "Kommando ikkje implementert." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "Kommando ikkje implementert." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Klarte ikkje Ã¥ lagra Twitter-innstillingane dine!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Stadfesting av epostadresse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Invitér" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Personleg" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMS bekreftelse" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Brukar" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS bekreftelse" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Godta" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS bekreftelse" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMS bekreftelse" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Personleg" +msgid "Edit site notice" +msgstr "Statusmelding" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS bekreftelse" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5548,6 +5620,11 @@ msgstr "Velg ein merkelapp for Ã¥ begrense lista" msgid "Go" msgstr "GÃ¥" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL til heimesida eller bloggen for gruppa eller emnet" @@ -6098,10 +6175,6 @@ msgstr "Svar" msgid "Favorites" msgstr "Favorittar" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Brukar" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Innboks" @@ -6128,7 +6201,7 @@ msgstr "Merkelappar i %s sine notisar" msgid "Unknown" msgstr "Uventa handling." -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tingingar" @@ -6136,24 +6209,24 @@ msgstr "Tingingar" msgid "All subscriptions" msgstr "Alle tingingar" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Tingarar" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Tingarar" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "Brukar" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Medlem sidan" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alle gruppar" @@ -6196,7 +6269,12 @@ msgstr "Svar pÃ¥ denne notisen" msgid "Repeat this notice" msgstr "Svar pÃ¥ denne notisen" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Ei liste over brukarane i denne gruppa." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6360,47 +6438,63 @@ msgstr "Melding" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Brukarprofil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administrator" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "eit par sekund sidan" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "omtrent eitt minutt sidan" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "~%d minutt sidan" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "omtrent ein time sidan" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "~%d timar sidan" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "omtrent ein dag sidan" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "~%d dagar sidan" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "omtrent ein mÃ¥nad sidan" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "~%d mÃ¥nadar sidan" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "omtrent eitt Ã¥r sidan" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index a8cef8d36..402bd78af 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:35+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:02+0000\n" "Last-Translator: Piotr DrÄ…g <piotrdrag@gmail.com>\n" "Language-Team: Polish <pl@li.org>\n" "MIME-Version: 1.0\n" @@ -19,13 +19,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "DostÄ™p" @@ -122,7 +123,7 @@ msgstr "%1$s i przyjaciele, strona %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -186,7 +187,7 @@ msgstr "" "szturchniesz użytkownika %s lub wyÅ›lesz wpis wymagajÄ…cego jego uwagi." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Ty i przyjaciele" @@ -213,11 +214,11 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s." #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Nie odnaleziono metody API." @@ -579,7 +580,7 @@ msgstr "" "uzyskać możliwość <strong>%3$s</strong> danych konta %4$s. DostÄ™p do konta %4" "$s powinien być udostÄ™pniany tylko zaufanym osobom trzecim." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -666,18 +667,6 @@ msgstr "%1$s/ulubione wpisy od %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Użytkownik %1$s aktualizuje ulubione wedÅ‚ug %2$s/%2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "OÅ› czasu użytkownika %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Aktualizacje z %1$s na %2$s." - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -688,12 +677,12 @@ msgstr "%1$s/aktualizacje wspominajÄ…ce %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s aktualizuje tÄ™ odpowiedź na aktualizacje od %2$s/%3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Publiczna oÅ› czasu użytkownika %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "Użytkownik %s aktualizuje od każdego." @@ -939,7 +928,7 @@ msgid "Conversation" msgstr "Rozmowa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Wpisy" @@ -958,7 +947,7 @@ msgstr "Nie jesteÅ› wÅ‚aÅ›cicielem tej aplikacji." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "WystÄ…piÅ‚ problem z tokenem sesji." @@ -1151,8 +1140,9 @@ msgstr "Przywróć domyÅ›lne ustawienia" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1268,7 +1258,7 @@ msgstr "opis jest za dÅ‚ugi (maksymalnie %d znaków)." msgid "Could not update group." msgstr "Nie można zaktualizować grupy." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Nie można utworzyć aliasów." @@ -1391,7 +1381,7 @@ msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "To nie jest prawidÅ‚owy adres e-mail." @@ -1584,6 +1574,25 @@ msgstr "Nie ma takiego pliku." msgid "Cannot read file." msgstr "Nie można odczytać pliku." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "NieprawidÅ‚owy token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Nie można ograniczać użytkowników na tej witrynie." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Użytkownik jest już wyciszony." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1727,12 +1736,18 @@ msgstr "UczyÅ„ administratorem" msgid "Make this user an admin" msgstr "UczyÅ„ tego użytkownika administratorem" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "OÅ› czasu użytkownika %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Aktualizacje od czÅ‚onków %1$s na %2$s." -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupy" @@ -2352,8 +2367,8 @@ msgstr "typ zawartoÅ›ci " msgid "Only " msgstr "Tylko " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "To nie jest obsÅ‚ugiwany format danych." @@ -2492,7 +2507,8 @@ msgstr "Nie można zapisać nowego hasÅ‚a." msgid "Password saved." msgstr "Zapisano hasÅ‚o." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Åšcieżki" @@ -2614,7 +2630,7 @@ msgstr "Katalog tÅ‚a" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nigdy" @@ -2670,11 +2686,11 @@ msgstr "NieprawidÅ‚owy znacznik osób: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Użytkownicy używajÄ…cy znacznika %1$s - strona %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "NieprawidÅ‚owa zawartość wpisu" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Licencja wpisu \"%1$s\" nie jest zgodna z licencjÄ… witryny \"%2$s\"." @@ -2754,7 +2770,7 @@ msgstr "" "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " "spacjami" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "JÄ™zyk" @@ -2781,7 +2797,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Wpis \"O mnie\" jest za dÅ‚ugi (maksymalnie %d znaków)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Nie wybrano strefy czasowej." @@ -3100,7 +3116,7 @@ msgid "Same as password above. Required." msgstr "Takie samo jak powyższe hasÅ‚o. Wymagane." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3206,7 +3222,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Adres URL profilu na innej, zgodnej usÅ‚udze mikroblogowania" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subskrybuj" @@ -3310,6 +3326,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "odpowiedzi dla użytkownika %1$s na %2$s." +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Nie można wyciszać użytkowników na tej witrynie." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Użytkownik bez odpowiadajÄ…cego profilu." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3322,7 +3348,9 @@ msgstr "Nie można ograniczać użytkowników na tej witrynie." msgid "User is already sandboxed." msgstr "Użytkownik jest już ograniczony." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sesje" @@ -3346,7 +3374,7 @@ msgstr "Debugowanie sesji" msgid "Turn on debugging output for sessions." msgstr "WÅ‚Ä…cza wyjÅ›cie debugowania dla sesji." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Zapisz ustawienia witryny" @@ -3377,8 +3405,8 @@ msgstr "Organizacja" msgid "Description" msgstr "Opis" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statystyki" @@ -3520,45 +3548,45 @@ msgstr "Aliasy" msgid "Group actions" msgstr "DziaÅ‚ania grupy" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "KanaÅ‚ wpisów dla grupy %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "KanaÅ‚ wpisów dla grupy %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "KanaÅ‚ wpisów dla grupy %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF dla grupy %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "CzÅ‚onkowie" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Brak)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Wszyscy czÅ‚onkowie" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Utworzono" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3574,7 +3602,7 @@ msgstr "" "action.register%%%%), aby stać siÄ™ częściÄ… tej grupy i wiele wiÄ™cej. " "([Przeczytaj wiÄ™cej](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3587,7 +3615,7 @@ msgstr "" "narzÄ™dziu [StatusNet](http://status.net/). Jej czÅ‚onkowie dzielÄ… siÄ™ " "krótkimi wiadomoÅ›ciami o swoim życiu i zainteresowaniach. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratorzy" @@ -3710,148 +3738,139 @@ msgid "User is already silenced." msgstr "Użytkownik jest już wyciszony." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Podstawowe ustawienia tej witryny StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Nazwa witryny nie może mieć zerowÄ… dÅ‚ugość." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Należy posiadać prawidÅ‚owy kontaktowy adres e-mail." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Nieznany jÄ™zyk \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "NieprawidÅ‚owy adres URL zgÅ‚aszania migawek." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "NieprawidÅ‚owa wartość wykonania migawki." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "CzÄ™stotliwość migawek musi być liczbÄ…." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Maksymalne ograniczenie tekstu to 14 znaków." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Ograniczenie duplikatów musi wynosić jednÄ… lub wiÄ™cej sekund." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Ogólne" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nazwa witryny" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Nazwa strony, taka jak \"Mikroblog firmy X\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Dostarczane przez" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Tekst używany do odnoÅ›nika do zasÅ‚ug w stopce każdej strony" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "Adres URL \"Dostarczane przez\"" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "Adres URL używany do odnoÅ›nika do zasÅ‚ug w stopce każdej strony" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Kontaktowy adres e-mail witryny" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokalne" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "DomyÅ›lna strefa czasowa" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "DomyÅ›la strefa czasowa witryny, zwykle UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "DomyÅ›lny jÄ™zyk witryny" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Migawki" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Losowo podczas trafienia WWW" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Jako zaplanowane zadanie" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Migawki danych" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Kiedy wysyÅ‚ać dane statystyczne na serwery status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "CzÄ™stotliwość" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Migawki bÄ™dÄ… wysyÅ‚ane co N trafieÅ„ WWW" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "Adres URL zgÅ‚aszania" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Migawki bÄ™dÄ… wysyÅ‚ane na ten adres URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Ograniczenia" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Ograniczenie tekstu" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maksymalna liczba znaków wpisów." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Ograniczenie duplikatów" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Ile czasu użytkownicy muszÄ… czekać (w sekundach), aby ponownie wysÅ‚ać to " "samo." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Wpis witryny" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nowa wiadomość" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Nie można zapisać ustawieÅ„ wyglÄ…du." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Wpis witryny" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Wpis witryny" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Ustawienia SMS" @@ -3951,6 +3970,66 @@ msgstr "" msgid "No code entered" msgstr "Nie podano kodu" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Migawki" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "ZmieÅ„ konfiguracjÄ™ witryny" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "NieprawidÅ‚owa wartość wykonania migawki." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "CzÄ™stotliwość migawek musi być liczbÄ…." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "NieprawidÅ‚owy adres URL zgÅ‚aszania migawek." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Losowo podczas trafienia WWW" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Jako zaplanowane zadanie" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Migawki danych" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Kiedy wysyÅ‚ać dane statystyczne na serwery status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "CzÄ™stotliwość" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Migawki bÄ™dÄ… wysyÅ‚ane co N trafieÅ„ WWW" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "Adres URL zgÅ‚aszania" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Migawki bÄ™dÄ… wysyÅ‚ane na ten adres URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Zapisz ustawienia witryny" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Nie jesteÅ› subskrybowany do tego profilu." @@ -4161,7 +4240,7 @@ msgstr "Brak identyfikatora profilu w żądaniu." msgid "Unsubscribed" msgstr "Zrezygnowano z subskrypcji" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4362,16 +4441,22 @@ msgstr "Grupy użytkownika %1$s, strona %2$d" msgid "Search for more groups" msgstr "Wyszukaj wiÄ™cej grup" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "Użytkownik %s nie jest czÅ‚onkiem żadnej grupy." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Spróbuj [wyszukać grupy](%%action.groupsearch%%) i doÅ‚Ä…czyć do nich." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Aktualizacje z %1$s na %2$s." + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4429,7 +4514,7 @@ msgstr "" msgid "Plugins" msgstr "Wtyczki" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Wersja" @@ -4497,22 +4582,22 @@ msgstr "Nie można zaktualizować wiadomoÅ›ci za pomocÄ… nowego adresu URL." msgid "DB error inserting hashtag: %s" msgstr "BÅ‚Ä…d bazy danych podczas wprowadzania znacznika mieszania: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem podczas zapisywania wpisu. Za dÅ‚ugi." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Za dużo wpisów w za krótkim czasie, weź gÅ‚Ä™boki oddech i wyÅ›lij ponownie za " "kilka minut." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4520,19 +4605,19 @@ msgstr "" "Za dużo takich samych wiadomoÅ›ci w za krótkim czasie, weź gÅ‚Ä™boki oddech i " "wyÅ›lij ponownie za kilka minut." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Zabroniono ci wysyÅ‚ania wpisów na tej witrynie." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4557,7 +4642,12 @@ msgstr "Niesubskrybowane." msgid "Couldn't delete self-subscription." msgstr "Nie można usunąć autosubskrypcji." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Nie można usunąć subskrypcji." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Nie można usunąć subskrypcji." @@ -4566,19 +4656,19 @@ msgstr "Nie można usunąć subskrypcji." msgid "Welcome to %1$s, @%2$s!" msgstr "Witaj w %1$s, @%2$s." -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Nie można utworzyć grupy." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Nie można ustawić adresu URI grupy." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Nie można ustawić czÅ‚onkostwa w grupie." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Nie można zapisać informacji o lokalnej grupie." @@ -4619,194 +4709,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Strona bez nazwy" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Główna nawigacja witryny" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Profil osobisty i oÅ› czasu przyjaciół" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Osobiste" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "ZmieÅ„ adres e-mail, awatar, hasÅ‚o, profil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "PoÅ‚Ä…cz z serwisami" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "PoÅ‚Ä…cz" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "ZmieÅ„ konfiguracjÄ™ witryny" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Administrator" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "ZaproÅ› przyjaciół i kolegów do doÅ‚Ä…czenia do ciebie na %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ZaproÅ›" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Wyloguj siÄ™ z witryny" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Wyloguj siÄ™" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Utwórz konto" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Zarejestruj siÄ™" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Zaloguj siÄ™ na witrynie" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Zaloguj siÄ™" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Pomóż mi." -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Pomoc" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Wyszukaj osoby lub tekst" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Wyszukaj" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Wpis witryny" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Druga nawigacja witryny" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Pomoc" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "O usÅ‚udze" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "TOS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Prywatność" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kod źródÅ‚owy" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Odznaka" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4815,12 +4899,12 @@ msgstr "" "**%%site.name%%** jest usÅ‚ugÄ… mikroblogowania prowadzonÄ… przez [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** jest usÅ‚ugÄ… mikroblogowania. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4831,57 +4915,57 @@ msgstr "" "status.net/) w wersji %s, dostÄ™pnego na [Powszechnej Licencji Publicznej GNU " "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licencja zawartoÅ›ci witryny" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Treść i dane %1$s sÄ… prywatne i poufne." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "Prawa autorskie do treÅ›ci i danych sÄ… wÅ‚asnoÅ›ciÄ… %1$s. Wszystkie prawa " "zastrzeżone." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Prawa autorskie do treÅ›ci i danych sÄ… wÅ‚asnoÅ›ciÄ… współtwórców. Wszystkie " "prawa zastrzeżone." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Wszystko " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licencja." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginacja" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Później" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "WczeÅ›niej" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Nie można jeszcze obsÅ‚ugiwać zdalnej treÅ›ci." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Nie można jeszcze obsÅ‚ugiwać zagnieżdżonej treÅ›ci XML." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Nie można jeszcze obsÅ‚ugiwać zagnieżdżonej treÅ›ci Base64." @@ -4896,91 +4980,80 @@ msgid "Changes to that panel are not allowed." msgstr "Zmiany w tym panelu nie sÄ… dozwolone." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() nie jest zaimplementowane." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() nie jest zaimplementowane." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Nie można usunąć ustawienia wyglÄ…du." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Podstawowa konfiguracja witryny" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Witryny" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Konfiguracja wyglÄ…du" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "WyglÄ…d" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Konfiguracja użytkownika" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Użytkownik" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Konfiguracja dostÄ™pu" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "DostÄ™p" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Konfiguracja Å›cieżek" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Åšcieżki" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Konfiguracja sesji" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sesje" +msgid "Edit site notice" +msgstr "Wpis witryny" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Konfiguracja Å›cieżek" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5514,6 +5587,11 @@ msgstr "Wybierz znacznik do ograniczonej listy" msgid "Go" msgstr "Przejdź" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "Adres URL strony domowej lub bloga grupy, albo temat" @@ -6131,10 +6209,6 @@ msgstr "Odpowiedzi" msgid "Favorites" msgstr "Ulubione" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Użytkownik" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Odebrane" @@ -6160,7 +6234,7 @@ msgstr "Znaczniki we wpisach użytkownika %s" msgid "Unknown" msgstr "Nieznane" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subskrypcje" @@ -6168,23 +6242,23 @@ msgstr "Subskrypcje" msgid "All subscriptions" msgstr "Wszystkie subskrypcje" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subskrybenci" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Wszyscy subskrybenci" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Identyfikator użytkownika" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "CzÅ‚onek od" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Wszystkie grupy" @@ -6224,7 +6298,12 @@ msgstr "Powtórzyć ten wpis?" msgid "Repeat this notice" msgstr "Powtórz ten wpis" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Zablokuj tego użytkownika w tej grupie" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" "Nie okreÅ›lono pojedynczego użytkownika dla trybu pojedynczego użytkownika." @@ -6379,47 +6458,64 @@ msgstr "Wiadomość" msgid "Moderate" msgstr "Moderuj" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Profil użytkownika" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratorzy" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderuj" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "kilka sekund temu" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "okoÅ‚o minutÄ™ temu" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "okoÅ‚o %d minut temu" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "okoÅ‚o godzinÄ™ temu" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "okoÅ‚o %d godzin temu" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "blisko dzieÅ„ temu" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "okoÅ‚o %d dni temu" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "okoÅ‚o miesiÄ…c temu" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "okoÅ‚o %d miesiÄ™cy temu" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "okoÅ‚o rok temu" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 2598008d9..8dd23b162 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:38+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:05+0000\n" "Language-Team: Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Acesso" @@ -121,7 +122,7 @@ msgstr "Perfis bloqueados de %1$s, página %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,7 +184,7 @@ msgstr "" "publicar uma nota à sua atenção." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Você e seus amigos" @@ -210,11 +211,11 @@ msgstr "Actualizações de %1$s e amigos no %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Método da API não encontrado." @@ -575,7 +576,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Conta" @@ -664,18 +665,6 @@ msgstr "%1$s / Favoritas de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s actualizações preferidas por %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Notas de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Actualizações de %1#s a %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -686,12 +675,12 @@ msgstr "%1$s / Actualizações que mencionam %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s actualizações em resposta a actualizações de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Notas públicas de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s actualizações de todos!" @@ -938,7 +927,7 @@ msgid "Conversation" msgstr "Conversação" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notas" @@ -960,7 +949,7 @@ msgstr "Não é membro deste grupo." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com a sua sessão." @@ -1159,8 +1148,9 @@ msgstr "Repor predefinição" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1288,7 +1278,7 @@ msgstr "descrição é demasiada extensa (máx. %d caracteres)." msgid "Could not update group." msgstr "Não foi possÃvel actualizar o grupo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Não foi possÃvel criar sinónimos." @@ -1415,7 +1405,7 @@ msgid "Cannot normalize that email address" msgstr "Não é possÃvel normalizar esse endereço electrónico" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Correio electrónico é inválido." @@ -1607,6 +1597,25 @@ msgstr "Ficheiro não foi encontrado." msgid "Cannot read file." msgstr "Não foi possÃvel ler o ficheiro." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Tamanho inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Não pode impedir notas públicas neste site." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "O utilizador já está silenciado." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1754,12 +1763,18 @@ msgstr "Tornar Gestor" msgid "Make this user an admin" msgstr "Tornar este utilizador um gestor" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Notas de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Actualizações dos membros de %1$s em %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2386,8 +2401,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Formato de dados não suportado." @@ -2533,7 +2548,8 @@ msgstr "Não é possÃvel guardar a nova senha." msgid "Password saved." msgstr "Senha gravada." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Localizações" @@ -2653,7 +2669,7 @@ msgstr "Directório dos fundos" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunca" @@ -2709,11 +2725,11 @@ msgstr "Categoria de pessoas inválida: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Utilizadores auto-categorizados com %1$s - página %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Conteúdo da nota é inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2794,7 +2810,7 @@ msgstr "" "Categorias para si (letras, números, -, ., _), separadas por vÃrgulas ou " "espaços" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2820,7 +2836,7 @@ msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos) msgid "Bio is too long (max %d chars)." msgstr "Biografia demasiado extensa (máx. %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Fuso horário não foi seleccionado." @@ -3142,7 +3158,7 @@ msgid "Same as password above. Required." msgstr "Repita a senha acima. Obrigatório." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correio" @@ -3248,7 +3264,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil noutro serviço de microblogues compatÃvel" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Subscrever" @@ -3352,6 +3368,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostas a %1$s em %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Não pode silenciar utilizadores neste site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Utilizador sem perfil correspondente." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3364,7 +3390,9 @@ msgstr "Não pode impedir notas públicas neste site." msgid "User is already sandboxed." msgstr "Utilizador já está impedido de criar notas públicas." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessões" @@ -3389,7 +3417,7 @@ msgstr "Depuração de sessões" msgid "Turn on debugging output for sessions." msgstr "Ligar a impressão de dados de depuração, para sessões." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Gravar configurações do site" @@ -3423,8 +3451,8 @@ msgstr "Paginação" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "EstatÃsticas" @@ -3566,45 +3594,45 @@ msgstr "Sinónimos" msgid "Group actions" msgstr "Acções do grupo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de notas do grupo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de notas do grupo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de notas do grupo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF do grupo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3620,7 +3648,7 @@ msgstr "" "[Registe-se agora](%%action.register%%) para se juntar a este grupo e a " "muitos mais! ([Saber mais](%%doc.help%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3633,7 +3661,7 @@ msgstr "" "programa de Software Livre [StatusNet](http://status.net/). Os membros deste " "grupo partilham mensagens curtas acerca das suas vidas e interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Gestores" @@ -3755,148 +3783,139 @@ msgid "User is already silenced." msgstr "O utilizador já está silenciado." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configurações básicas para este site StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Nome do site não pode ter comprimento zero." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Tem de ter um endereço válido para o correio electrónico de contacto." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "LÃngua desconhecida \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "URL para onde enviar instantâneos é inválida" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Valor de criação do instantâneo é inválido." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Frequência dos instantâneos estatÃsticos tem de ser um número." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "O valor mÃnimo de limite para o texto é 140 caracteres." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "O limite de duplicados tem de ser 1 ou mais segundos." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Geral" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nome do site" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "O nome do seu site, por exemplo \"Microblogue NomeDaEmpresa\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Disponibilizado por" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Texto usado para a ligação de atribuição no rodapé de cada página" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL da atribuição" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL usada para a ligação de atribuição no rodapé de cada página" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Endereço de correio electrónico de contacto para o site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso horário, por omissão" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horário por omissão, para o site; normalmente, UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Idioma do site, por omissão" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Instantâneos" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Aleatoriamente, durante o acesso pela internet" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Num processo agendado" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Instantâneos dos dados" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando enviar dados estatÃsticos para os servidores do status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequência" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Instantâneos serão enviados uma vez a cada N acessos da internet" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL para relatórios" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Instantâneos serão enviados para esta URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite de texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Número máximo de caracteres nas notas." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de duplicações" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo os utilizadores terão de esperar (em segundos) para publicar a " "mesma coisa outra vez." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Aviso do site" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Mensagem nova" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Não foi possÃvel gravar as configurações do estilo." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Aviso do site" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Aviso do site" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Configurações de SMS" @@ -3997,6 +4016,66 @@ msgstr "" msgid "No code entered" msgstr "Nenhum código introduzido" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Instantâneos" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Alterar a configuração do site" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Valor de criação do instantâneo é inválido." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Frequência dos instantâneos estatÃsticos tem de ser um número." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "URL para onde enviar instantâneos é inválida" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Aleatoriamente, durante o acesso pela internet" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Num processo agendado" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Instantâneos dos dados" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando enviar dados estatÃsticos para os servidores do status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequência" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Instantâneos serão enviados uma vez a cada N acessos da internet" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL para relatórios" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Instantâneos serão enviados para esta URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Gravar configurações do site" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Não subscreveu esse perfil." @@ -4206,7 +4285,7 @@ msgstr "O pedido não tem a identificação do perfil." msgid "Unsubscribed" msgstr "Subscrição cancelada" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4410,16 +4489,22 @@ msgstr "Membros do grupo %1$s, página %2$d" msgid "Search for more groups" msgstr "Procurar mais grupos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s não é membro de nenhum grupo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "Tente [pesquisar grupos](%%action.groupsearch%%) e juntar-se a eles." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Actualizações de %1#s a %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4474,7 +4559,7 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versão" @@ -4544,22 +4629,22 @@ msgstr "Não foi possÃvel actualizar a mensagem com a nova URI." msgid "DB error inserting hashtag: %s" msgstr "Erro na base de dados ao inserir a marca: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema na gravação da nota. Demasiado longa." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema na gravação da nota. Utilizador desconhecido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Demasiadas notas, demasiado rápido; descanse e volte a publicar daqui a " "alguns minutos." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4567,20 +4652,20 @@ msgstr "" "Demasiadas mensagens duplicadas, demasiado rápido; descanse e volte a " "publicar daqui a alguns minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Está proibido de publicar notas neste site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema na gravação da nota." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Problema na gravação da nota." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4605,7 +4690,12 @@ msgstr "Não subscrito!" msgid "Couldn't delete self-subscription." msgstr "Não foi possÃvel apagar a auto-subscrição." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Não foi possÃvel apagar a subscrição." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Não foi possÃvel apagar a subscrição." @@ -4614,20 +4704,20 @@ msgstr "Não foi possÃvel apagar a subscrição." msgid "Welcome to %1$s, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Não foi possÃvel criar o grupo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Não foi possÃvel configurar membros do grupo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Não foi possÃvel configurar membros do grupo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Não foi possÃvel gravar a subscrição." @@ -4669,194 +4759,188 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "Página sem tÃtulo" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegação primária deste site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e notas dos amigos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Altere o seu endereço electrónico, avatar, senha, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Conta" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ligar aos serviços" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Ligar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Alterar a configuração do site" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Gestor" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Terminar esta sessão" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Criar uma conta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registar" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Iniciar uma sessão" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procurar pessoas ou pesquisar texto" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Pesquisa" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Aviso do site" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Vistas locais" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Aviso da página" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegação secundária deste site" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ajuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Sobre" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Termos" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Código" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contacto" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Emblema" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licença de software do StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4865,12 +4949,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblogues disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogues. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4881,53 +4965,53 @@ msgstr "" "disponibilizado nos termos da [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licença de conteúdos do site" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Tudo " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licença." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Posteriores" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Anteriores" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4942,94 +5026,83 @@ msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Não foi possÃvel apagar a configuração do estilo." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuração do estilo" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Estilo" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Configuração das localizações" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Utilizador" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Configuração do estilo" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Acesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuração das localizações" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Localizações" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Configuração do estilo" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessões" +msgid "Edit site notice" +msgstr "Aviso do site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuração das localizações" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5562,6 +5635,11 @@ msgstr "Escolha uma categoria para reduzir a lista" msgid "Go" msgstr "Prosseguir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL da página ou do blogue, deste grupo ou assunto" @@ -6178,10 +6256,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utilizador" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" @@ -6207,7 +6281,7 @@ msgstr "Categorias nas notas de %s" msgid "Unknown" msgstr "Desconhecida" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Subscrições" @@ -6215,23 +6289,23 @@ msgstr "Subscrições" msgid "All subscriptions" msgstr "Todas as subscrições" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Subscritores" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Todos os subscritores" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID do utilizador" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro desde" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Todos os grupos" @@ -6271,7 +6345,12 @@ msgstr "Repetir esta nota?" msgid "Repeat this notice" msgstr "Repetir esta nota" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquear acesso deste utilizador a este grupo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6425,47 +6504,64 @@ msgstr "Mensagem" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Gestores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "há alguns segundos" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "há cerca de um minuto" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "há cerca de %d minutos" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "há cerca de uma hora" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "há cerca de %d horas" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "há cerca de um dia" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "há cerca de %d dias" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "há cerca de um mês" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "há cerca de %d meses" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "há cerca de um ano" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 041a2d4a3..7ba00b717 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -11,19 +11,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:41+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:07+0000\n" "Language-Team: Brazilian Portuguese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Acesso" @@ -120,7 +121,7 @@ msgstr "%1$s e amigos, pág. %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -184,7 +185,7 @@ msgstr "" "atenção de %s ou publicar uma mensagem para sua atenção." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Você e amigos" @@ -211,11 +212,11 @@ msgstr "Atualizações de %1$s e amigos no %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "O método da API não foi encontrado!" @@ -584,7 +585,7 @@ msgstr "" "fornecer acesso à sua conta %4$s somente para terceiros nos quais você " "confia." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Conta" @@ -671,18 +672,6 @@ msgstr "%1$s / Favoritas de %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s marcadas como favoritas por %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Mensagens de %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Mensagens de %1$s no %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -693,12 +682,12 @@ msgstr "%1$s / Mensagens mencionando %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "Mensagens públicas de %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s mensagens de todo mundo!" @@ -946,7 +935,7 @@ msgid "Conversation" msgstr "Conversa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Mensagens" @@ -965,7 +954,7 @@ msgstr "Você não é o dono desta aplicação." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Ocorreu um problema com o seu token de sessão." @@ -1161,8 +1150,9 @@ msgstr "Restaura de volta ao padrão" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1278,7 +1268,7 @@ msgstr "descrição muito extensa (máximo %d caracteres)." msgid "Could not update group." msgstr "Não foi possÃvel atualizar o grupo." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Não foi possÃvel criar os apelidos." @@ -1404,7 +1394,7 @@ msgid "Cannot normalize that email address" msgstr "Não foi possÃvel normalizar este endereço de e-mail" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Não é um endereço de e-mail válido." @@ -1598,6 +1588,25 @@ msgstr "Esse arquivo não existe." msgid "Cannot read file." msgstr "Não foi possÃvel ler o arquivo." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Token inválido." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Você não pode colocar usuários deste site em isolamento." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "O usuário já está silenciado." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1746,12 +1755,18 @@ msgstr "Tornar administrador" msgid "Make this user an admin" msgstr "Torna este usuário um administrador" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Mensagens de %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Atualizações dos membros de %1$s no %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupos" @@ -2381,8 +2396,8 @@ msgstr "tipo de conteúdo " msgid "Only " msgstr "Apenas " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Não é um formato de dados suportado." @@ -2523,7 +2538,8 @@ msgstr "Não é possÃvel salvar a nova senha." msgid "Password saved." msgstr "A senha foi salva." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Caminhos" @@ -2644,7 +2660,7 @@ msgstr "Diretório das imagens de fundo" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Nunca" @@ -2699,11 +2715,11 @@ msgstr "Não é uma etiqueta de pessoa válida: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "O conteúdo da mensagem é inválido" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2784,7 +2800,7 @@ msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vÃrgulas ou " "espaços" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Idioma" @@ -2811,7 +2827,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "A descrição é muito extensa (máximo %d caracteres)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "O fuso horário não foi selecionado." @@ -3134,7 +3150,7 @@ msgid "Same as password above. Required." msgstr "Igual à senha acima. Obrigatório." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -3240,7 +3256,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil em outro serviço de microblog compatÃvel" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Assinar" @@ -3344,6 +3360,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respostas para %1$s no %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Você não pode silenciar os usuários neste site." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Usuário sem um perfil correspondente" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3356,7 +3382,9 @@ msgstr "Você não pode colocar usuários deste site em isolamento." msgid "User is already sandboxed." msgstr "O usuário já está em isolamento." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessões" @@ -3380,7 +3408,7 @@ msgstr "Depuração da sessão" msgid "Turn on debugging output for sessions." msgstr "Ativa a saÃda de depuração para as sessões." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Salvar as configurações do site" @@ -3411,8 +3439,8 @@ msgstr "Organização" msgid "Description" msgstr "Descrição" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "EstatÃsticas" @@ -3554,45 +3582,45 @@ msgstr "Apelidos" msgid "Group actions" msgstr "Ações do grupo" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Fonte de mensagens do grupo %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Fonte de mensagens do grupo %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Fonte de mensagens do grupo %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF para o grupo %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Membros" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Nenhum)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Todos os membros" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Criado" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3608,7 +3636,7 @@ msgstr "" "para se tornar parte deste grupo e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3621,7 +3649,7 @@ msgstr "" "[StatusNet](http://status.net/). Seus membros compartilham mensagens curtas " "sobre suas vidas e interesses. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administradores" @@ -3745,148 +3773,139 @@ msgid "User is already silenced." msgstr "O usuário já está silenciado." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Configurações básicas para esta instância do StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Você deve digitar alguma coisa para o nome do site." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Você deve ter um endereço de e-mail para contato válido." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Idioma \"%s\" desconhecido." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "A URL para o envio das estatÃsticas é inválida." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "O valor de execução da obtenção das estatÃsticas é inválido." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "A frequência de geração de estatÃsticas deve ser um número." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "O comprimento máximo do texto é de 140 caracteres." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "O limite de duplicatas deve ser de um ou mais segundos." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Geral" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Nome do site" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "O nome do seu site, por exemplo \"Microblog da Sua Empresa\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Disponibilizado por" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Texto utilizado para o link de créditos no rodapé de cada página" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL do disponibilizado por" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL utilizada para o link de créditos no rodapé de cada página" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Endereço de e-mail para contatos do seu site" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Local" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Fuso horário padrão" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Fuso horário padrão para o seu site; geralmente UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Idioma padrão do site" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "EstatÃsticas" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Aleatoriamente durante o funcionamento" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Em horários pré-definidos" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "EstatÃsticas dos dados" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Quando enviar dados estatÃsticos para os servidores status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frequentemente" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "As estatÃsticas serão enviadas uma vez a cada N usos da web" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL para envio" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "As estatÃsticas serão enviadas para esta URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Limites" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Limite do texto" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Número máximo de caracteres para as mensagens." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Limite de duplicatas" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Quanto tempo (em segundos) os usuários devem esperar para publicar a mesma " "coisa novamente." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Mensagem do site" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nova mensagem" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Não foi possÃvel salvar suas configurações de aparência." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Mensagem do site" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Mensagem do site" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Configuração do SMS" @@ -3985,6 +4004,66 @@ msgstr "" msgid "No code entered" msgstr "Não foi digitado nenhum código" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "EstatÃsticas" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Mude as configurações do site" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "O valor de execução da obtenção das estatÃsticas é inválido." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "A frequência de geração de estatÃsticas deve ser um número." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "A URL para o envio das estatÃsticas é inválida." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Aleatoriamente durante o funcionamento" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Em horários pré-definidos" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "EstatÃsticas dos dados" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Quando enviar dados estatÃsticos para os servidores status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frequentemente" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "As estatÃsticas serão enviadas uma vez a cada N usos da web" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL para envio" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "As estatÃsticas serão enviadas para esta URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Salvar as configurações do site" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Você não está assinando esse perfil." @@ -4194,7 +4273,7 @@ msgstr "Nenhuma ID de perfil na requisição." msgid "Unsubscribed" msgstr "Cancelado" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4399,18 +4478,24 @@ msgstr "Grupos de %1$s, pág. %2$d" msgid "Search for more groups" msgstr "Procurar por outros grupos" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s não é membro de nenhum grupo." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Experimente [procurar por grupos](%%action.groupsearch%%) e associar-se à " "eles." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Mensagens de %1$s no %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4466,7 +4551,7 @@ msgstr "" msgid "Plugins" msgstr "Plugins" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Versão" @@ -4532,22 +4617,22 @@ msgstr "Não foi possÃvel atualizar a mensagem com a nova URI." msgid "DB error inserting hashtag: %s" msgstr "Erro no banco de dados durante a inserção da hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problema no salvamento da mensagem. Ela é muito extensa." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problema no salvamento da mensagem. Usuário desconhecido." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Muitas mensagens em um perÃodo curto de tempo; dê uma respirada e publique " "novamente daqui a alguns minutos." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4555,19 +4640,19 @@ msgstr "" "Muitas mensagens duplicadas em um perÃodo curto de tempo; dê uma respirada e " "publique novamente daqui a alguns minutos." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Você está proibido de publicar mensagens neste site." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problema no salvamento da mensagem." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4592,7 +4677,12 @@ msgstr "Não assinado!" msgid "Couldn't delete self-subscription." msgstr "Não foi possÃvel excluir a auto-assinatura." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Não foi possÃvel excluir a assinatura." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Não foi possÃvel excluir a assinatura." @@ -4601,20 +4691,20 @@ msgstr "Não foi possÃvel excluir a assinatura." msgid "Welcome to %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Não foi possÃvel criar o grupo." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Não foi possÃvel configurar a associação ao grupo." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Não foi possÃvel configurar a associação ao grupo." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Não foi possÃvel salvar a assinatura." @@ -4656,194 +4746,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Página sem tÃtulo" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Navegação primária no site" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Perfil pessoal e fluxo de mensagens dos amigos" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Pessoal" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Mude seu e-mail, avatar, senha, perfil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Conta" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Conecte-se a outros serviços" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Conectar" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Mude as configurações do site" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "Admin" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Convide seus amigos e colegas para unir-se a você no %s" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Convidar" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Sai do site" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Sair" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Cria uma conta" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Registrar-se" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Autentique-se no site" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Entrar" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Ajudem-me!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Ajuda" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Procura por pessoas ou textos" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Procurar" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Mensagem do site" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Visualizações locais" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "NotÃcia da página" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Navegação secundária no site" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Ajuda" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Sobre" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Termos de uso" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Fonte" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Contato" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Mini-aplicativo" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Licença do software StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4852,12 +4936,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblog disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblog. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4868,55 +4952,55 @@ msgstr "" "versão %s, disponÃvel sob a [GNU Affero General Public License] (http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licença do conteúdo do site" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "O conteúdo e os dados de %1$s são privados e confidenciais." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "Conteúdo e dados licenciados sob %1$s. Todos os direitos reservados." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " "reservados." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Todas " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licença." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Próximo" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Anterior" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4931,91 +5015,80 @@ msgid "Changes to that panel are not allowed." msgstr "Não são permitidas alterações a esse painel." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() não implementado." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Não foi possÃvel excluir as configurações da aparência." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Configuração básica do site" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Site" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Configuração da aparência" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Aparência" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Configuração do usuário" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Usuário" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Configuração do acesso" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Acesso" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Configuração dos caminhos" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Caminhos" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Configuração das sessões" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessões" +msgid "Edit site notice" +msgstr "Mensagem do site" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Configuração dos caminhos" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5548,6 +5621,11 @@ msgstr "Selecione uma etiqueta para reduzir a lista" msgid "Go" msgstr "Ir" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL para o site ou blog do grupo ou tópico" @@ -6168,10 +6246,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuário" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Recebidas" @@ -6197,7 +6271,7 @@ msgstr "Etiquetas nas mensagens de %s" msgid "Unknown" msgstr "Desconhecido" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Assinaturas" @@ -6205,23 +6279,23 @@ msgstr "Assinaturas" msgid "All subscriptions" msgstr "Todas as assinaturas" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Assinantes" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Todos os assinantes" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID do usuário" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Membro desde" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Todos os grupos" @@ -6261,7 +6335,12 @@ msgstr "Repetir esta mensagem?" msgid "Repeat this notice" msgstr "Repetir esta mensagem" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Bloquear este usuário neste grupo" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Nenhum usuário definido para o modo de usuário único." @@ -6415,47 +6494,64 @@ msgstr "Mensagem" msgid "Moderate" msgstr "Moderar" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Perfil do usuário" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administradores" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderar" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "alguns segundos atrás" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "cerca de 1 minuto atrás" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "cerca de %d minutos atrás" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "cerca de 1 hora atrás" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "cerca de %d horas atrás" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "cerca de 1 dia atrás" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "cerca de %d dias atrás" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "cerca de 1 mês atrás" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "cerca de %d meses atrás" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "cerca de 1 ano atrás" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index 4db3b0684..c97bb5461 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:44+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:17+0000\n" "Language-Team: Russian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: out-statusnet\n" @@ -25,7 +25,8 @@ msgstr "" "10< =4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "ПринÑÑ‚ÑŒ" @@ -47,7 +48,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Личное" @@ -78,7 +78,6 @@ msgid "Save access settings" msgstr "Сохранить наÑтройки доÑтупа" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -123,7 +122,7 @@ msgstr "%1$s и друзьÑ, Ñтраница %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -185,7 +184,7 @@ msgstr "" "s или отправить запиÑÑŒ Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð²Ð»ÐµÑ‡ÐµÐ½Ð¸Ñ ÐµÐ³Ð¾ или её вниманиÑ?" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Ð’Ñ‹ и друзьÑ" @@ -212,11 +211,11 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "Метод API не найден." @@ -582,7 +581,7 @@ msgstr "" "предоÑтавлÑÑ‚ÑŒ разрешение на доÑтуп к вашей учётной запиÑи %4$s только тем " "Ñторонним приложениÑм, которым вы доверÑете." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "ÐаÑтройки" @@ -669,18 +668,6 @@ msgstr "%1$s / Любимое от %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ %1$s, отмеченные как любимые %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "Лента %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Обновлено от %1$s на %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -691,12 +678,12 @@ msgstr "%1$s / ОбновлениÑ, упоминающие %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s обновил Ñтот ответ на Ñообщение: %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "ÐžÐ±Ñ‰Ð°Ñ Ð»ÐµÐ½Ñ‚Ð° %s" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ %s от вÑех!" @@ -943,7 +930,7 @@ msgid "Conversation" msgstr "ДиÑкуÑÑиÑ" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "ЗапиÑи" @@ -962,7 +949,7 @@ msgstr "Ð’Ñ‹ не ÑвлÑетеÑÑŒ владельцем Ñтого прилоР#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Проблема Ñ Ð’Ð°ÑˆÐµÐ¹ ÑеÑÑией. Попробуйте ещё раз, пожалуйÑта." @@ -1158,8 +1145,9 @@ msgstr "ВоÑÑтановить Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1275,7 +1263,7 @@ msgstr "Слишком длинное опиÑание (макÑимум %d Ñи msgid "Could not update group." msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ информацию о группе." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Ðе удаётÑÑ Ñоздать алиаÑÑ‹." @@ -1407,7 +1395,7 @@ msgid "Cannot normalize that email address" msgstr "Ðе удаётÑÑ Ñтандартизировать Ñтот Ñлектронный адреÑ" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Ðеверный Ñлектронный адреÑ." @@ -1600,6 +1588,26 @@ msgstr "Ðет такого файла." msgid "Cannot read file." msgstr "Ðе удалоÑÑŒ прочеÑÑ‚ÑŒ файл." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ðеправильный токен" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "" +"Ð’Ñ‹ не можете уÑтанавливать режим пеÑочницы Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÐµÐ¹ Ñтого Ñайта." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Пользователь уже заглушён." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1747,12 +1755,18 @@ msgstr "Сделать админиÑтратором" msgid "Make this user an admin" msgstr "Сделать Ñтого Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратором" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "Лента %s" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑƒÑ‡Ð°Ñтников %1$s на %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Группы" @@ -2015,7 +2029,6 @@ msgstr "Можно добавить к приглашению личное ÑоР#. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Отправить" @@ -2372,8 +2385,8 @@ msgstr "тип Ñодержимого " msgid "Only " msgstr "Только " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ðеподдерживаемый формат данных." @@ -2514,7 +2527,8 @@ msgstr "Ðе удаётÑÑ Ñохранить новый пароль." msgid "Password saved." msgstr "Пароль Ñохранён." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Пути" @@ -2634,7 +2648,7 @@ msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð¸Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¾Ð³Ð¾ изображениÑ" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Ðикогда" @@ -2689,11 +2703,11 @@ msgstr "Ðеверный тег человека: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Пользователи, уÑтановившие Ñебе тег %1$s — Ñтраница %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ðеверный контент запиÑи" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Ð›Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ Ð·Ð°Ð¿Ð¸Ñи «%1$s» не ÑовмеÑтима Ñ Ð»Ð¸Ñ†ÐµÐ½Ð·Ð¸ÐµÐ¹ Ñайта «%2$s»." @@ -2773,7 +2787,7 @@ msgstr "" "Теги Ð´Ð»Ñ Ñамого ÑÐµÐ±Ñ (буквы, цифры, -, ., и _), разделенные запÑтой или " "пробелом" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Язык" @@ -2799,7 +2813,7 @@ msgstr "ÐвтоматичеÑки подпиÑыватьÑÑ Ð½Ð° вÑех, ÐºÑ msgid "Bio is too long (max %d chars)." msgstr "Слишком Ð´Ð»Ð¸Ð½Ð½Ð°Ñ Ð±Ð¸Ð¾Ð³Ñ€Ð°Ñ„Ð¸Ñ (макÑимум %d Ñимволов)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "ЧаÑовой поÑÑ Ð½Ðµ выбран." @@ -3120,7 +3134,7 @@ msgid "Same as password above. Required." msgstr "Тот же пароль что и Ñверху. ОбÑзательное поле." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3225,7 +3239,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "ÐÐ´Ñ€ÐµÑ URL твоего Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð½Ð° другом подходÑщем ÑервиÑе микроблогинга" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "ПодпиÑатьÑÑ" @@ -3327,6 +3341,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Ответы на запиÑи %1$s на %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Ð’Ñ‹ не можете заглушать пользователей на Ñтом Ñайте." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Пользователь без ÑоответÑтвующего профилÑ." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3340,7 +3364,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "Пользователь уже в режиме пеÑочницы." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "СеÑÑии" @@ -3364,7 +3390,7 @@ msgstr "Отладка ÑеÑÑий" msgid "Turn on debugging output for sessions." msgstr "Включить отладочный вывод Ð´Ð»Ñ ÑеÑÑий." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Сохранить наÑтройки Ñайта" @@ -3395,8 +3421,8 @@ msgstr "ОрганизациÑ" msgid "Description" msgstr "ОпиÑание" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "СтатиÑтика" @@ -3538,45 +3564,45 @@ msgstr "ÐлиаÑÑ‹" msgid "Group actions" msgstr "ДейÑÑ‚Ð²Ð¸Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Лента запиÑей группы %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Лента запиÑей группы %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Лента запиÑей группы %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF Ð´Ð»Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹ %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "УчаÑтники" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(пока ничего нет)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Ð’Ñе учаÑтники" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Создано" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3592,7 +3618,7 @@ msgstr "" "action.register%%%%), чтобы Ñтать учаÑтником группы и получить множеÑтво " "других возможноÑтей! ([Читать далее](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3605,7 +3631,7 @@ msgstr "" "обеÑпечении [StatusNet](http://status.net/). УчаÑтники обмениваютÑÑ " "короткими ÑообщениÑми о Ñвоей жизни и интереÑах. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "ÐдминиÑтраторы" @@ -3730,149 +3756,140 @@ msgid "User is already silenced." msgstr "Пользователь уже заглушён." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "ОÑновные наÑтройки Ð´Ð»Ñ Ñтого Ñайта StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Ð˜Ð¼Ñ Ñайта должно быть ненулевой длины." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "У Ð²Ð°Ñ Ð´Ð¾Ð»Ð¶ÐµÐ½ быть дейÑтвительный контактный email-адреÑ." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "ÐеизвеÑтный Ñзык «%s»." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Ðеверный URL отчёта Ñнимка." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Ðеверное значение запуÑка Ñнимка." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "ЧаÑтота Ñнимков должна быть чиÑлом." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Минимальное ограничение текÑта ÑоÑтавлÑет 140 Ñимволов." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Ограничение Ð´ÑƒÐ±Ð»Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð¾Ð»Ð¶Ð½Ð¾ ÑоÑтавлÑÑ‚ÑŒ 1 или более Ñекунд." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Базовые" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Ð˜Ð¼Ñ Ñайта" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Ð˜Ð¼Ñ Ð²Ð°ÑˆÐµÐ³Ð¾ Ñайта, например, «Yourcompany Microblog»" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "ПредоÑтавлено" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" "ТекÑÑ‚, иÑпользуемый Ð´Ð»Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð¾Ð² в нижнем колонтитуле каждой Ñтраницы" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "URL-Ð°Ð´Ñ€ÐµÑ Ð¿Ð¾Ñтавщика уÑлуг" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" "URL, иÑпользуемый Ð´Ð»Ñ ÑÑылки на авторов в нижнем колонтитуле каждой Ñтраницы" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Контактный email-Ð°Ð´Ñ€ÐµÑ Ð´Ð»Ñ Ð²Ð°ÑˆÐµÐ³Ð¾ Ñайта" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Внутренние наÑтройки" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "ЧаÑовой поÑÑ Ð¿Ð¾ умолчанию" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "ЧаÑовой поÑÑ Ð¿Ð¾ умолчанию Ð´Ð»Ñ Ñайта; обычно UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Язык Ñайта по умолчанию" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Снимки" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "При Ñлучайном поÑещении" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "По заданному графику" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Снимки данных" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Когда отправлÑÑ‚ÑŒ ÑтатиÑтичеÑкие данные на Ñервера status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "ЧаÑтота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Снимки будут отправлÑÑ‚ÑŒÑÑ ÐºÐ°Ð¶Ð´Ñ‹Ðµ N поÑещений" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL отчёта" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Снимки будут отправлÑÑ‚ÑŒÑÑ Ð¿Ð¾ Ñтому URL-адреÑу" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Границы" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Границы текÑта" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "МакÑимальное чиÑло Ñимволов Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñей." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Предел дубликатов" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Сколько нужно ждать пользователÑм (в Ñекундах) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ того же ещё раз." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ðовое Ñообщение" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Ðе удаётÑÑ Ñохранить ваши наÑтройки оформлениÑ!" + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "УÑтановки СМС" @@ -3974,6 +3991,66 @@ msgstr "" msgid "No code entered" msgstr "Код не введён" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Снимки" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Изменить конфигурацию Ñайта" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Ðеверное значение запуÑка Ñнимка." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "ЧаÑтота Ñнимков должна быть чиÑлом." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Ðеверный URL отчёта Ñнимка." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "При Ñлучайном поÑещении" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "По заданному графику" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Снимки данных" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Когда отправлÑÑ‚ÑŒ ÑтатиÑтичеÑкие данные на Ñервера status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "ЧаÑтота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Снимки будут отправлÑÑ‚ÑŒÑÑ ÐºÐ°Ð¶Ð´Ñ‹Ðµ N поÑещений" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL отчёта" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Снимки будут отправлÑÑ‚ÑŒÑÑ Ð¿Ð¾ Ñтому URL-адреÑу" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Сохранить наÑтройки Ñайта" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Ð’Ñ‹ не подпиÑаны на Ñтот профиль." @@ -4184,7 +4261,7 @@ msgstr "Ðет ID Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð² запроÑе." msgid "Unsubscribed" msgstr "ОтпиÑано" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4193,7 +4270,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Пользователь" @@ -4386,17 +4462,23 @@ msgstr "Группы %1$s, Ñтраница %2$d" msgid "Search for more groups" msgstr "ИÑкать другие группы" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не ÑоÑтоит ни в одной группе." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Попробуйте [найти группы](%%action.groupsearch%%) и приÑоединитьÑÑ Ðº ним." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Обновлено от %1$s на %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4452,7 +4534,7 @@ msgstr "" msgid "Plugins" msgstr "Плагины" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "ВерÑиÑ" @@ -4517,22 +4599,22 @@ msgstr "Ðе удаётÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ Ñообщение Ñ Ð½Ð¾Ð²Ñ‹Ð¼ UR msgid "DB error inserting hashtag: %s" msgstr "Ошибка баз данных при вÑтавке хеш-тегов Ð´Ð»Ñ %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Проблемы Ñ Ñохранением запиÑи. Слишком длинно." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Проблема при Ñохранении запиÑи. ÐеизвеÑтный пользователь." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Слишком много запиÑей за Ñтоль короткий Ñрок; передохните немного и " "попробуйте вновь через пару минут." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4540,19 +4622,19 @@ msgstr "" "Слишком много одинаковых запиÑей за Ñтоль короткий Ñрок; передохните немного " "и попробуйте вновь через пару минут." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Вам запрещено поÑтитьÑÑ Ð½Ð° Ñтом Ñайте (бан)" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблемы Ñ Ñохранением запиÑи." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Проблемы Ñ Ñохранением входÑщих Ñообщений группы." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4577,7 +4659,12 @@ msgstr "Ðе подпиÑаны!" msgid "Couldn't delete self-subscription." msgstr "Ðевозможно удалить ÑамоподпиÑку." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Ðе удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ подпиÑку." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Ðе удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ подпиÑку." @@ -4586,19 +4673,19 @@ msgstr "Ðе удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ подпиÑку." msgid "Welcome to %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Ðе удаётÑÑ Ñоздать группу." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Ðе удаётÑÑ Ð½Ð°Ð·Ð½Ð°Ñ‡Ð¸Ñ‚ÑŒ URI группы." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Ðе удаётÑÑ Ð½Ð°Ð·Ð½Ð°Ñ‡Ð¸Ñ‚ÑŒ членÑтво в группе." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Ðе удаётÑÑ Ñохранить информацию о локальной группе." @@ -4639,194 +4726,171 @@ msgstr "%1$s — %2$s" msgid "Untitled page" msgstr "Страница без названиÑ" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Ð“Ð»Ð°Ð²Ð½Ð°Ñ Ð½Ð°Ð²Ð¸Ð³Ð°Ñ†Ð¸Ñ" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Личный профиль и лента друзей" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Личное" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" -msgstr "Изменить ваш email, аватару, пароль, профиль" - -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "ÐаÑтройки" +msgstr "Изменить ваш email, аватар, пароль, профиль" #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Соединить Ñ ÑервиÑами" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Соединить" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Изменить конфигурацию Ñайта" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "ÐаÑтройки" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" -msgstr "ПриглаÑите друзей и коллег Ñтать такими же как вы учаÑтниками %s" +msgstr "ПриглаÑите друзей и коллег Ñтать такими же как Ð’Ñ‹ учаÑтниками %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "ПриглаÑить" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Выйти" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Выход" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Создать новый аккаунт" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "РегиÑтрациÑ" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Войти" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Вход" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Помощь" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Помощь" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "ИÑкать людей или текÑÑ‚" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "ПоиÑк" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Локальные виды" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "ÐÐ°Ð²Ð¸Ð³Ð°Ñ†Ð¸Ñ Ð¿Ð¾ подпиÑкам" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Помощь" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "О проекте" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ЧаВо" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "TOS" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "ПользовательÑкое Ñоглашение" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "ИÑходный код" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "ÐšÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Бедж" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet лицензиÑ" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4835,12 +4899,12 @@ msgstr "" "**%%site.name%%** — Ñто ÑÐµÑ€Ð²Ð¸Ñ Ð¼Ð¸ÐºÑ€Ð¾Ð±Ð»Ð¾Ð³Ð¸Ð½Ð³Ð°, Ñозданный Ð´Ð»Ñ Ð²Ð°Ñ Ð¿Ñ€Ð¸ помощи [%" "%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — ÑÐµÑ€Ð²Ð¸Ñ Ð¼Ð¸ÐºÑ€Ð¾Ð±Ð»Ð¾Ð³Ð¸Ð½Ð³Ð°. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4852,56 +4916,56 @@ msgstr "" "лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Ð›Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ Ñодержимого Ñайта" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "Содержание и данные %1$s ÑвлÑÑŽÑ‚ÑÑ Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ и конфиденциальными." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" "ÐвторÑкие права на Ñодержание и данные принадлежат %1$s. Ð’Ñе права защищены." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "ÐвторÑкие права на Ñодержание и данные принадлежат разработчикам. Ð’Ñе права " "защищены." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "All " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "license." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Разбиение на Ñтраницы" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Сюда" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Туда" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Пока ещё Ð½ÐµÐ»ÑŒÐ·Ñ Ð¾Ð±Ñ€Ð°Ð±Ð°Ñ‚Ñ‹Ð²Ð°Ñ‚ÑŒ удалённое Ñодержимое." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Пока ещё Ð½ÐµÐ»ÑŒÐ·Ñ Ð¾Ð±Ñ€Ð°Ð±Ð°Ñ‚Ñ‹Ð²Ð°Ñ‚ÑŒ вÑтроенный XML." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Пока ещё Ð½ÐµÐ»ÑŒÐ·Ñ Ð¾Ð±Ñ€Ð°Ð±Ð°Ñ‚Ñ‹Ð²Ð°Ñ‚ÑŒ вÑтроенное Ñодержание Base64." @@ -4916,91 +4980,78 @@ msgid "Changes to that panel are not allowed." msgstr "Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñтой панели недопуÑтимы." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не реализована." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() не реализована." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Ðе удаётÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ наÑтройки оформлениÑ." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ОÑÐ½Ð¾Ð²Ð½Ð°Ñ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ñайта" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ñ" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Оформление" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Пользователь" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð´Ð¾Ñтупа" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "ПринÑÑ‚ÑŒ" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿ÑƒÑ‚ÐµÐ¹" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Пути" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ ÑеÑÑий" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "СеÑÑии" +msgid "Edit site notice" +msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð¿ÑƒÑ‚ÐµÐ¹" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5532,6 +5583,11 @@ msgstr "Выберите тег из выпадающего ÑпиÑка" msgid "Go" msgstr "Перейти" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "ÐÐ´Ñ€ÐµÑ Ñтраницы, дневника или Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹ на другом портале" @@ -6148,10 +6204,6 @@ msgstr "Ответы" msgid "Favorites" msgstr "Любимое" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Пользователь" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "ВходÑщие" @@ -6177,7 +6229,7 @@ msgstr "Теги запиÑей Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %s" msgid "Unknown" msgstr "ÐеизвеÑтно" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "ПодпиÑки" @@ -6185,23 +6237,23 @@ msgstr "ПодпиÑки" msgid "All subscriptions" msgstr "Ð’Ñе подпиÑки." -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "ПодпиÑчики" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Ð’Ñе подпиÑчики" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ID пользователÑ" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "РегиÑтрациÑ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Ð’Ñе группы" @@ -6241,7 +6293,12 @@ msgstr "Повторить Ñту запиÑÑŒ?" msgid "Repeat this notice" msgstr "Повторить Ñту запиÑÑŒ" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Заблокировать Ñтого Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð· Ñтой группы" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Ðи задан пользователь Ð´Ð»Ñ Ð¾Ð´Ð½Ð¾Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑкого режима." @@ -6395,47 +6452,64 @@ msgstr "Сообщение" msgid "Moderate" msgstr "Модерировать" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Профиль пользователÑ" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "ÐдминиÑтраторы" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Модерировать" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "пару Ñекунд назад" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "около минуты назад" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "около %d минут(Ñ‹) назад" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "около чаÑа назад" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "около %d чаÑа(ов) назад" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "около Ð´Ð½Ñ Ð½Ð°Ð·Ð°Ð´" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "около %d днÑ(ей) назад" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "около меÑÑца назад" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "около %d меÑÑца(ев) назад" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "около года назад" diff --git a/locale/statusnet.po b/locale/statusnet.po index 3f4ad499f..b4b22d311 100644 --- a/locale/statusnet.po +++ b/locale/statusnet.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" +"POT-Creation-Date: 2010-03-04 19:12+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" @@ -18,7 +18,8 @@ msgstr "" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "" @@ -113,7 +114,7 @@ msgstr "" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -168,7 +169,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "" @@ -195,11 +196,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "" @@ -551,7 +552,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "" @@ -638,18 +639,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -660,12 +649,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -908,7 +897,7 @@ msgid "Conversation" msgstr "" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -927,7 +916,7 @@ msgstr "" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1114,8 +1103,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1231,7 +1221,7 @@ msgstr "" msgid "Could not update group." msgstr "" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "" @@ -1351,7 +1341,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "" @@ -1535,6 +1525,22 @@ msgstr "" msgid "Cannot read file." msgstr "" +#: actions/grantrole.php:62 actions/revokerole.php:62 +msgid "Invalid role." +msgstr "" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +msgid "You cannot grant user roles on this site." +msgstr "" + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1675,12 +1681,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2230,8 +2242,8 @@ msgstr "" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2370,7 +2382,8 @@ msgstr "" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2490,7 +2503,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "" @@ -2543,11 +2556,11 @@ msgstr "" msgid "Users self-tagged with %1$s - page %2$d" msgstr "" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2623,7 +2636,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2649,7 +2662,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -2947,7 +2960,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -3031,7 +3044,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3127,6 +3140,14 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/revokerole.php:75 +msgid "You cannot revoke user roles on this site." +msgstr "" + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "" @@ -3139,7 +3160,9 @@ msgstr "" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3163,7 +3186,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "" @@ -3194,8 +3217,8 @@ msgstr "" msgid "Description" msgstr "" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "" @@ -3327,45 +3350,45 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3375,7 +3398,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3384,7 +3407,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3494,144 +3517,128 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" -msgstr "" - -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" +#: actions/sitenoticeadminpanel.php:56 +msgid "Site Notice" msgstr "" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" msgstr "" -#: actions/siteadminpanel.php:315 -msgid "Limits" +#: actions/sitenoticeadminpanel.php:103 +msgid "Unable to save site notice." msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." +#: actions/sitenoticeadminpanel.php:176 +msgid "Site notice text" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." +#: actions/sitenoticeadminpanel.php:198 +msgid "Save site notice" msgstr "" #: actions/smssettings.php:58 @@ -3726,6 +3733,64 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +msgid "Manage snapshot configuration" +msgstr "" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +msgid "Save snapshot settings" +msgstr "" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -3919,7 +3984,7 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4109,16 +4174,22 @@ msgstr "" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4162,7 +4233,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "" @@ -4225,38 +4296,38 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "" -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4281,7 +4352,11 @@ msgstr "" msgid "Couldn't delete self-subscription." msgstr "" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +msgid "Couldn't delete subscription OMB token." +msgstr "" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "" @@ -4290,19 +4365,19 @@ msgstr "" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "" -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "" -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "" -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "" @@ -4343,187 +4418,182 @@ msgstr "" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "" -#: lib/action.php:447 -msgctxt "MENU" -msgid "Account" -msgstr "" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "" -#: lib/action.php:453 -msgctxt "MENU" +#: lib/action.php:443 msgid "Connect" msgstr "" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "" -#: lib/action.php:484 +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" -#: lib/action.php:496 +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4531,53 +4601,53 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4592,84 +4662,75 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -msgctxt "MENU" -msgid "Access" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:388 +msgid "Sessions configuration" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 -msgid "Sessions configuration" +#: lib/adminpanelaction.php:396 +msgid "Edit site notice" msgstr "" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 -msgctxt "MENU" -msgid "Sessions" +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +msgid "Snapshots configuration" msgstr "" #: lib/apiauth.php:94 @@ -5151,6 +5212,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5674,10 +5740,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5703,7 +5765,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5711,23 +5773,23 @@ msgstr "" msgid "All subscriptions" msgstr "" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -5767,7 +5829,12 @@ msgstr "" msgid "Repeat this notice" msgstr "" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -5921,47 +5988,61 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 -msgid "a few seconds ago" +#: lib/userprofile.php:352 +msgid "User role" +msgstr "" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" msgstr "" #: lib/util.php:1015 -msgid "about a minute ago" +msgid "a few seconds ago" msgstr "" #: lib/util.php:1017 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index b1ac66f65..b9f921c7f 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:47+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:20+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "Ã…tkomst" @@ -43,7 +44,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Privat" @@ -74,7 +74,6 @@ msgid "Save access settings" msgstr "Spara inställningar för Ã¥tkomst" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -119,7 +118,7 @@ msgstr "%1$s och vänner, sida %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -181,7 +180,7 @@ msgstr "" "%s eller skriva en notis för hans eller hennes uppmärksamhet." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Du och vänner" @@ -208,11 +207,11 @@ msgstr "Uppdateringar frÃ¥n %1$s och vänner pÃ¥ %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API-metod hittades inte." @@ -570,7 +569,7 @@ msgstr "" "möjligheten att <strong>%3$s</strong> din %4$s kontoinformation. Du bör bara " "ge tillgÃ¥ng till ditt %4$s-konto till tredje-parter du litar pÃ¥." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Konto" @@ -657,18 +656,6 @@ msgstr "%1$s / Favoriter frÃ¥n %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s tidslinje" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "Uppdateringar frÃ¥n %1$s pÃ¥ %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -679,12 +666,12 @@ msgstr "%1$s / Uppdateringar som nämner %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s uppdateringar med svar pÃ¥ uppdatering frÃ¥n %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s publika tidslinje" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s uppdateringar frÃ¥n alla!" @@ -932,7 +919,7 @@ msgid "Conversation" msgstr "Konversationer" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Notiser" @@ -951,7 +938,7 @@ msgstr "Du är inte ägaren av denna applikation." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Det var ett problem med din sessions-token." @@ -1147,8 +1134,9 @@ msgstr "Ã…terställ till standardvärde" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1264,7 +1252,7 @@ msgstr "beskrivning är för lÃ¥ng (max %d tecken)." msgid "Could not update group." msgstr "Kunde inte uppdatera grupp." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Kunde inte skapa alias." @@ -1387,7 +1375,7 @@ msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den e-postadressen" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Inte en giltig e-postadress." @@ -1580,6 +1568,25 @@ msgstr "Ingen sÃ¥dan fil." msgid "Cannot read file." msgstr "Kan inte läsa fil." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ogiltig token." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Du kan inte flytta användare till sandlÃ¥dan pÃ¥ denna webbplats." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Användaren är redan nedtystad." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1726,12 +1733,18 @@ msgstr "Gör till administratör" msgid "Make this user an admin" msgstr "Gör denna användare till administratör" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s tidslinje" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Uppdateringar frÃ¥n medlemmar i %1$s pÃ¥ %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Grupper" @@ -1993,7 +2006,6 @@ msgstr "Om du vill, skriv ett personligt meddelande till inbjudan." #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "Skicka" @@ -2352,8 +2364,8 @@ msgstr "innehÃ¥llstyp " msgid "Only " msgstr "Bara " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Ett dataformat som inte stödjs" @@ -2492,7 +2504,8 @@ msgstr "Kan inte spara nytt lösenord." msgid "Password saved." msgstr "Lösenord sparat." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "Sökvägar" @@ -2613,7 +2626,7 @@ msgstr "Katalog med bakgrunder" msgid "SSL" msgstr "SSL" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Aldrig" @@ -2668,11 +2681,11 @@ msgstr "Inte en giltig persontagg: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "Användare som taggat sig själv med %1$s - sida %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ogiltigt notisinnehÃ¥ll" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Licensen för notiser ‘%1$s’ är inte förenlig webbplatslicensen ‘%2$s’." @@ -2752,7 +2765,7 @@ msgstr "" "Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med " "kommatecken eller mellanslag" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "SprÃ¥k" @@ -2780,7 +2793,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Biografin är för lÃ¥ng (max %d tecken)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "Tidszon inte valt." @@ -3100,7 +3113,7 @@ msgid "Same as password above. Required." msgstr "Samma som lösenordet ovan. MÃ¥ste fyllas i." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-post" @@ -3208,7 +3221,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL till din profil pÃ¥ en annan kompatibel mikrobloggtjänst" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Prenumerera" @@ -3312,6 +3325,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Svar till %1$s pÃ¥ %2$s" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Du kan inte tysta ned användare pÃ¥ denna webbplats." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Användare utan matchande profil." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3324,7 +3347,9 @@ msgstr "Du kan inte flytta användare till sandlÃ¥dan pÃ¥ denna webbplats." msgid "User is already sandboxed." msgstr "Användare är redan flyttad till sandlÃ¥dan." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "Sessioner" @@ -3348,7 +3373,7 @@ msgstr "Sessionsfelsökning" msgid "Turn on debugging output for sessions." msgstr "Sätt pÃ¥ felsökningsutdata för sessioner." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Spara webbplatsinställningar" @@ -3379,8 +3404,8 @@ msgstr "Organisation" msgid "Description" msgstr "Beskrivning" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Statistik" @@ -3523,45 +3548,45 @@ msgstr "Alias" msgid "Group actions" msgstr "Ã…tgärder för grupp" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Flöde av notiser för %s grupp (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Flöde av notiser för %s grupp (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Flöde av notiser för %s grupp (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF för %s grupp" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Medlemmar" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(Ingen)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Alla medlemmar" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Skapad" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3576,7 +3601,7 @@ msgstr "" "sina liv och intressen. [GÃ¥ med nu](%%%%action.register%%%%) för att bli en " "del av denna grupp och mÃ¥nga fler! ([Läs mer](%%%%doc.help%%%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3589,7 +3614,7 @@ msgstr "" "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "sina liv och intressen. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Administratörer" @@ -3710,147 +3735,138 @@ msgid "User is already silenced." msgstr "Användaren är redan nedtystad." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Grundinställningar för din StatusNet-webbplats" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Webbplatsnamnet mÃ¥ste vara minst ett tecken lÃ¥ngt." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Du mÃ¥ste ha en giltig e-postadress." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Okänt sprÃ¥k \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Ogiltig rapport-URL för ögonblicksbild" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Ogiltigt körvärde för ögonblicksbild." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "Frekvens för ögonblicksbilder mÃ¥ste vara ett nummer." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Minsta textbegränsning är 140 tecken." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "Begränsning av duplikat mÃ¥ste vara en eller fler sekuner." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "Allmänt" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Webbplatsnamn" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Namnet pÃ¥ din webbplats, t.ex. \"Företagsnamn mikroblogg\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "TillhandahÃ¥llen av" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "Text som används för tillskrivningslänkar i sidfoten pÃ¥ varje sida." -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "TillhandahÃ¥llen av URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL som används för tillskrivningslänkar i sidfoten pÃ¥ varje sida" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Kontakte-postadress för din webbplats" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Lokal" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "Standardtidszon" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "Standardtidzon för denna webbplats; vanligtvis UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Webbplatsens standardsprÃ¥k" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Ögonblicksbild" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Slumpmässigt vid webbförfrÃ¥gningar" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "I ett schemalagt jobb" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Ögonblicksbild av data" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "När statistikdata skall skickas till status.net-servrar" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "Frekvens" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Ögonblicksbild kommer skickas var N:te webbträff" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "URL för rapport" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Ögonblicksbild kommer skickat till denna URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "Begränsningar" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "Textbegränsning" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "Maximala antalet tecken för notiser." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "Duplikatbegränsning" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Hur länge användare mÃ¥ste vänta (i sekunder) för att posta samma sak igen." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Webbplatsnotis" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Nytt meddelande" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Kunde inte spara dina utseendeinställningar." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Webbplatsnotis" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Webbplatsnotis" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "Inställningar för SMS" @@ -3950,6 +3966,66 @@ msgstr "" msgid "No code entered" msgstr "Ingen kod ifylld" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Ögonblicksbild" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Ändra webbplatskonfiguration" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Ogiltigt körvärde för ögonblicksbild." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "Frekvens för ögonblicksbilder mÃ¥ste vara ett nummer." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Ogiltig rapport-URL för ögonblicksbild" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Slumpmässigt vid webbförfrÃ¥gningar" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "I ett schemalagt jobb" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Ögonblicksbild av data" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "När statistikdata skall skickas till status.net-servrar" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "Frekvens" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Ögonblicksbild kommer skickas var N:te webbträff" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "URL för rapport" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Ögonblicksbild kommer skickat till denna URL" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Spara webbplatsinställningar" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Du är inte prenumerat hos den profilen." @@ -4158,7 +4234,7 @@ msgstr "Ingen profil-ID i begäran." msgid "Unsubscribed" msgstr "Prenumeration avslutad" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4168,7 +4244,6 @@ msgstr "" #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "Användare" @@ -4363,17 +4438,23 @@ msgstr "%1$s grupper, sida %2$d" msgid "Search for more groups" msgstr "Sök efter fler grupper" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s är inte en medlem i nÃ¥gon grupp." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Prova att [söka efter grupper](%%action.groupsearch%%) och gÃ¥ med i dem." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "Uppdateringar frÃ¥n %1$s pÃ¥ %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4429,7 +4510,7 @@ msgstr "" msgid "Plugins" msgstr "Insticksmoduler" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "Version" @@ -4494,22 +4575,22 @@ msgstr "Kunde inte uppdatera meddelande med ny URI." msgid "DB error inserting hashtag: %s" msgstr "Databasfel vid infogning av hashtag: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Problem vid sparande av notis. För lÃ¥ngt." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Problem vid sparande av notis. Okänd användare." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "För mÃ¥nga notiser för snabbt; ta en vilopaus och posta igen om ett par " "minuter." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4517,19 +4598,19 @@ msgstr "" "För mÃ¥nga duplicerade meddelanden för snabbt; ta en vilopaus och posta igen " "om ett par minuter." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Du är utestängd frÃ¥n att posta notiser pÃ¥ denna webbplats." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Problem med att spara notis." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4554,7 +4635,12 @@ msgstr "Inte prenumerant!" msgid "Couldn't delete self-subscription." msgstr "Kunde inte ta bort själv-prenumeration." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Kunde inte ta bort prenumeration." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Kunde inte ta bort prenumeration." @@ -4563,19 +4649,19 @@ msgstr "Kunde inte ta bort prenumeration." msgid "Welcome to %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Kunde inte skapa grupp." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Kunde inte ställa in grupp-URI." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Kunde inte ställa in gruppmedlemskap." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Kunde inte spara lokal gruppinformation." @@ -4616,194 +4702,171 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "Namnlös sida" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Primär webbplatsnavigation" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "Personlig profil och vänners tidslinje" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "Personligt" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Ändra din e-post, avatar, lösenord, profil" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Konto" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Anslut till tjänster" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Anslut" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Ändra webbplatskonfiguration" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "Administratör" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "Bjud in vänner och kollegor att gÃ¥ med dig pÃ¥ %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "Bjud in" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Logga ut frÃ¥n webbplatsen" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Logga ut" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Skapa ett konto" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "Registrera" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Logga in pÃ¥ webbplatsen" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Logga in" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hjälp mig!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" msgstr "Hjälp" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Sök efter personer eller text" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Sök" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Webbplatsnotis" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "Lokala vyer" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Sidnotis" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "Sekundär webbplatsnavigation" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Hjälp" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Om" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FrÃ¥gor & svar" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Användarvillkor" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Sekretess" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Källa" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Emblem" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Programvarulicens för StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4812,12 +4875,12 @@ msgstr "" "**%%site.name%%** är en mikrobloggtjänst tillhandahÃ¥llen av [%%site.broughtby" "%%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** är en mikrobloggtjänst. " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4828,54 +4891,54 @@ msgstr "" "version %s, tillgänglig under [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Licens för webbplatsinnehÃ¥ll" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "InnehÃ¥ll och data av %1$s är privat och konfidensiell." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "InnehÃ¥ll och data copyright av %1$s. Alla rättigheter reserverade." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "InnehÃ¥ll och data copyright av medarbetare. Alla rättigheter reserverade." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Alla " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "licens." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "Numrering av sidor" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Senare" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Tidigare" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Kan inte hantera fjärrinnehÃ¥ll ännu." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Kan inte hantera inbäddat XML-innehÃ¥ll ännu." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Kan inte hantera inbäddat Base64-innehÃ¥ll ännu." @@ -4890,91 +4953,78 @@ msgid "Changes to that panel are not allowed." msgstr "Ändringar av den panelen tillÃ¥ts inte." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() är inte implementerat." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSetting() är inte implementerat." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Kunde inte ta bort utseendeinställning." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "Grundläggande webbplatskonfiguration" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Webbplats" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "Konfiguration av utseende" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Utseende" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "Konfiguration av användare" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "Användare" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "Konfiguration av Ã¥tkomst" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Ã…tkomst" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "Konfiguration av sökvägar" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "Sökvägar" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "Konfiguration av sessioner" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Sessioner" +msgid "Edit site notice" +msgstr "Webbplatsnotis" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Konfiguration av sökvägar" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5503,6 +5553,11 @@ msgstr "Välj en tagg för att begränsa lista" msgid "Go" msgstr "GÃ¥" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL till gruppen eller ämnets hemsida eller blogg" @@ -6117,10 +6172,6 @@ msgstr "Svar" msgid "Favorites" msgstr "Favoriter" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Användare" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Inkorg" @@ -6146,7 +6197,7 @@ msgstr "Taggar i %ss notiser" msgid "Unknown" msgstr "Okänd" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Prenumerationer" @@ -6154,23 +6205,23 @@ msgstr "Prenumerationer" msgid "All subscriptions" msgstr "Alla prenumerationer" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Prenumeranter" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Alla prenumeranter" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "Användar-ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Medlem sedan" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Alla grupper" @@ -6210,7 +6261,12 @@ msgstr "Upprepa denna notis?" msgid "Repeat this notice" msgstr "Upprepa denna notis" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Blockera denna användare frÃ¥n denna grupp" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "Ingen enskild användare definierad för enanvändarläge." @@ -6364,47 +6420,64 @@ msgstr "Meddelande" msgid "Moderate" msgstr "Moderera" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Användarprofil" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Administratörer" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Moderera" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "ett par sekunder sedan" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "för nÃ¥n minut sedan" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "för %d minuter sedan" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "för en timma sedan" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "för %d timmar sedan" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "för en dag sedan" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "för %d dagar sedan" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "för en mÃ¥nad sedan" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "för %d mÃ¥nader sedan" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "för ett Ã¥r sedan" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index f0527f3fa..f2e49f934 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:50+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:23+0000\n" "Language-Team: Telugu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "అంగీకరించà±" @@ -121,7 +122,7 @@ msgstr "%1$s మరియౠమితà±à°°à±à°²à±, పేజీ %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -176,7 +177,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "మీరౠమరియౠమీ à°¸à±à°¨à±‡à°¹à°¿à°¤à±à°²à±" @@ -203,11 +204,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "నిరà±à°§à°¾à°°à°£ సంకేతం కనబడలేదà±." @@ -569,7 +570,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "ఖాతా" @@ -656,18 +657,6 @@ msgstr "" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s యొకà±à°• మైకà±à°°à±‹à°¬à±à°²à°¾à°—à±" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s కాలరేఖ" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -678,12 +667,12 @@ msgstr "" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s బహిరంగ కాలరేఖ" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "అందరి à°¨à±à°‚à°¡à°¿ %s తాజాకరణలà±!" @@ -929,7 +918,7 @@ msgid "Conversation" msgstr "సంà°à°¾à°·à°£" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "సందేశాలà±" @@ -948,7 +937,7 @@ msgstr "మీరౠఈ ఉపకరణం యొకà±à°• యజమాని à #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1139,8 +1128,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1260,7 +1250,7 @@ msgstr "వివరణ చాలా పెదà±à°¦à°¦à°¿à°—à°¾ ఉంది (1 msgid "Could not update group." msgstr "à°—à±à°‚à°ªà±à°¨à°¿ తాజాకరించలేకà±à°¨à±à°¨à°¾à°‚." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "మారà±à°ªà±‡à°°à±à°²à°¨à°¿ సృషà±à°Ÿà°¿à°‚చలేకపోయాం." @@ -1380,7 +1370,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "సరైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ కాదà±:" @@ -1565,6 +1555,25 @@ msgstr "à°…à°Ÿà±à°µà°‚à°Ÿà°¿ ఫైలౠలేదà±." msgid "Cannot read file." msgstr "ఫైలà±à°¨à°¿ చదవలేకపోతà±à°¨à±à°¨à°¾à°‚." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "తపà±à°ªà±à°¡à± పరిమాణం." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "మీరౠఇపà±à°ªà°Ÿà°¿à°•à±‡ లోనికి à°ªà±à°°à°µà±‡à°¶à°¿à°‚చారà±!" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "వాడà±à°•à°°à°¿à°¨à°¿ ఇపà±à°ªà°Ÿà°¿à°•à±‡ à°—à±à°‚à°ªà±à°¨à±à°‚à°¡à°¿ నిరోధించారà±." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1710,12 +1719,18 @@ msgstr "నిరà±à°µà°¾à°¹à°•à±à°¨à±à°¨à°¿ చేయి" msgid "Make this user an admin" msgstr "à°ˆ వాడà±à°•à°°à°¿à°¨à°¿ నిరà±à°µà°¾à°¹à°•à±à°¨à±à°¨à°¿ చేయి" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s కాలరేఖ" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s యొకà±à°• మైకà±à°°à±‹à°¬à±à°²à°¾à°—à±" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "à°—à±à°‚à°ªà±à°²à±" @@ -2285,8 +2300,8 @@ msgstr "విషయ à°°à°•à°‚ " msgid "Only " msgstr "మాతà±à°°à°®à±‡ " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2430,7 +2445,8 @@ msgstr "కొతà±à°¤ సంకేతపదానà±à°¨à°¿ à°à°¦à±à°°à°ªà°°à msgid "Password saved." msgstr "సంకేతపదం à°à°¦à±à°°à°®à°¯à±à°¯à°¿à°‚ది." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2553,7 +2569,7 @@ msgstr "నేపథà±à°¯à°¾à°² సంచయం" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "వైదొలగà±" @@ -2611,11 +2627,11 @@ msgstr "సరైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ కాదౠmsgid "Users self-tagged with %1$s - page %2$d" msgstr "%s యొకà±à°• మైకà±à°°à±‹à°¬à±à°²à°¾à°—à±" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "సందేశపౠవిషయం సరైనది కాదà±" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2693,7 +2709,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "à°à°¾à°·" @@ -2719,7 +2735,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "à°¸à±à°µà°ªà°°à°¿à°šà°¯à°‚ చాలా పెదà±à°¦à°—à°¾ ఉంది (%d à°…à°•à±à°·à°°à°¾à°²à± à°—à°°à°¿à°·à±à° à°‚)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "కాలమండలానà±à°¨à°¿ à°Žà°‚à°šà±à°•à±‹à°²à±‡à°¦à±." @@ -3025,7 +3041,7 @@ msgid "Same as password above. Required." msgstr "పై సంకేతపదం మరోసారి. తపà±à°ªà°¨à°¿à°¸à°°à°¿." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "ఈమెయిలà±" @@ -3122,7 +3138,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "చందాచేరà±" @@ -3225,6 +3241,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%sà°•à°¿ à°¸à±à°ªà°‚దనలà±" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "మీరౠఇపà±à°ªà°Ÿà°¿à°•à±‡ లోనికి à°ªà±à°°à°µà±‡à°¶à°¿à°‚చారà±!" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "వాడà±à°•à°°à°¿à°•à°¿ à°ªà±à°°à±Šà°«à±ˆà°²à± లేదà±." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "à°¸à±à°Ÿà±‡à°Ÿà°¸à±â€Œà°¨à±†à°Ÿà±" @@ -3239,7 +3265,9 @@ msgstr "మీరౠఇపà±à°ªà°Ÿà°¿à°•à±‡ లోనికి à°ªà±à°°à°µà±‡ msgid "User is already sandboxed." msgstr "వాడà±à°•à°°à°¿à°¨à°¿ ఇపà±à°ªà°Ÿà°¿à°•à±‡ à°—à±à°‚à°ªà±à°¨à±à°‚à°¡à°¿ నిరోధించారà±." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3264,7 +3292,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "సైటౠఅమరికలనౠà°à°¦à±à°°à°ªà°°à°šà±" @@ -3296,8 +3324,8 @@ msgstr "సంసà±à°§" msgid "Description" msgstr "వివరణ" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "గణాంకాలà±" @@ -3431,45 +3459,45 @@ msgstr "మారà±à°ªà±‡à°°à±à°²à±" msgid "Group actions" msgstr "à°—à±à°‚పౠచరà±à°¯à°²à±" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s యొకà±à°• సందేశమà±à°² ఫీడà±" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s యొకà±à°• సందేశమà±à°² ఫీడà±" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s యొకà±à°• సందేశమà±à°² ఫీడà±" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%s à°—à±à°‚à°ªà±" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "à°¸à°à±à°¯à±à°²à±" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(à°à°®à±€à°²à±‡à°¦à±)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "అందరౠసà°à±à°¯à±à°²à±‚" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "సృషà±à°Ÿà°¿à°¤à°‚" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3479,7 +3507,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3488,7 +3516,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "నిరà±à°µà°¾à°¹à°•à±à°²à±" @@ -3600,147 +3628,138 @@ msgid "User is already silenced." msgstr "వాడà±à°•à°°à°¿à°¨à°¿ ఇపà±à°ªà°Ÿà°¿à°•à±‡ à°—à±à°‚à°ªà±à°¨à±à°‚à°¡à°¿ నిరోధించారà±." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "à°ˆ à°¸à±à°Ÿà±‡à°Ÿà°¸à±‌నెటౠసైటà±à°•à°¿ à°ªà±à°°à°¾à°§à°®à°¿à°• అమరికలà±." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "సైటౠపేరౠతపà±à°ªà°¨à°¿à°¸à°°à°¿à°—à°¾ à°¸à±à°¨à±à°¨à°¾ కంటే à°Žà°•à±à°•à±à°µ పొడవà±à°‚డాలి." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "మీకౠసరైన సంపà±à°°à°¦à°¿à°‚పౠఈమెయిలౠచిరà±à°¨à°¾à°®à°¾ ఉండాలి." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "à°—à±à°°à±à°¤à± తెలియని à°à°¾à°· \"%s\"." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "కనిషà±à° పాఠà±à°¯ పరిమితి 140 à°…à°•à±à°·à°°à°¾à°²à±." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "సాధారణ" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "సైటౠపేరà±" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "మీ సైటౠయొకà±à°• పేరà±, ఇలా \"మీకంపెనీ మైకà±à°°à±‹à°¬à±à°²à°¾à°—à±\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "à°ˆ వాడà±à°•à°°à°¿à°•à±ˆ నమోదైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾à°²à± à°à°®à±€ లేవà±." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "à°¸à±à°¥à°¾à°¨à°¿à°•" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "à°…à°ªà±à°°à°®à±‡à°¯ కాలమండలం" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "à°…à°ªà±à°°à°®à±‡à°¯ సైటౠà°à°¾à°·" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "తరచà±à°¦à°¨à°‚" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "పరిమితà±à°²à±" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "పాఠà±à°¯à°ªà± పరిమితి" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "సందేశాలలోని à°…à°•à±à°·à°°à°¾à°² à°—à°°à°¿à°·à±à° సంఖà±à°¯." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "సైటౠగమనిక" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "కొతà±à°¤ సందేశం" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "సందేశానà±à°¨à°¿ à°à°¦à±à°°à°ªà°°à°šà°¡à°‚లో పొరపాటà±." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "సైటౠగమనిక" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "సైటౠగమనిక" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "SMS అమరికలà±" @@ -3835,6 +3854,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "చందాలà±" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "తరచà±à°¦à°¨à°‚" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "సైటౠఅమరికలనౠà°à°¦à±à°°à°ªà°°à°šà±" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4036,7 +4115,7 @@ msgstr "" msgid "Unsubscribed" msgstr "చందాదారà±à°²à±" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4228,16 +4307,22 @@ msgstr "%1$s à°—à±à°‚పౠసà°à±à°¯à±à°²à±, పేజీ %2$d" msgid "Search for more groups" msgstr "మరినà±à°¨à°¿ à°—à±à°‚à°ªà±à°²à°•à±ˆ వెతà±à°•à±" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s à° à°—à±à°‚పౠలోనూ à°¸à°à±à°¯à±à°²à± కాదà±." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "[à°—à±à°‚à°ªà±à°²à°¨à°¿ వెతికి](%%action.groupsearch%%) వాటిలో చేరడానికి à°ªà±à°°à°¯à°¤à±à°¨à°¿à°‚à°šà°‚à°¡à°¿." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4281,7 +4366,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "సంచిక" @@ -4345,41 +4430,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "సందేశానà±à°¨à°¿ à°à°¦à±à°°à°ªà°°à°šà°¡à°‚లో పొరపాటà±." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "సందేశానà±à°¨à°¿ à°à°¦à±à°°à°ªà°°à°šà°¡à°‚లో పొరపాటà±." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "à°ˆ సైటà±à°²à±‹ నోటీసà±à°²à± రాయడం à°¨à±à°‚à°¡à°¿ మిమà±à°®à°²à±à°¨à°¿ నిషేధించారà±." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "సందేశానà±à°¨à°¿ à°à°¦à±à°°à°ªà°°à°šà°¡à°‚లో పొరపాటà±." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "సందేశానà±à°¨à°¿ à°à°¦à±à°°à°ªà°°à°šà°¡à°‚లో పొరపాటà±." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4406,7 +4491,12 @@ msgstr "చందాదారà±à°²à±" msgid "Couldn't delete self-subscription." msgstr "చందాని తొలగించలేకపోయాం." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "చందాని తొలగించలేకపోయాం." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "చందాని తొలగించలేకపోయాం." @@ -4415,20 +4505,20 @@ msgstr "చందాని తొలగించలేకపోయాం." msgid "Welcome to %1$s, @%2$s!" msgstr "@%2$s, %1$sà°•à°¿ à°¸à±à°µà°¾à°—తం!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "à°—à±à°‚à°ªà±à°¨à°¿ సృషà±à°Ÿà°¿à°‚చలేకపోయాం." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "à°—à±à°‚పౠసà°à±à°¯à°¤à±à°µà°¾à°¨à±à°¨à°¿ అమరà±à°šà°²à±‡à°•à°ªà±‹à°¯à°¾à°‚." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "à°—à±à°‚పౠసà°à±à°¯à°¤à±à°µà°¾à°¨à±à°¨à°¿ అమరà±à°šà°²à±‡à°•à°ªà±‹à°¯à°¾à°‚." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "చందాని సృషà±à°Ÿà°¿à°‚చలేకపోయాం." @@ -4471,194 +4561,188 @@ msgstr "%1$s - %2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "à°µà±à°¯à°•à±à°¤à°¿à°—à°¤" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "మీ ఈమెయిలà±, అవతారం, సంకేతపదం మరియౠపà±à°°à±Œà°«à±ˆà°³à±à°³à°¨à± మారà±à°šà±à°•à±‹à°‚à°¡à°¿" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "ఖాతా" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "à°…à°¨à±à°¸à°‚ధానాలà±" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "à°…à°¨à±à°¸à°‚ధానించà±" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "చందాలà±" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "నిరà±à°µà°¾à°¹à°•à±à°²à±" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "à°ˆ ఫారానà±à°¨à°¿ ఉపయోగించి మీ à°¸à±à°¨à±‡à°¹à°¿à°¤à±à°²à°¨à± మరియౠసహోదà±à°¯à±‹à°—à±à°²à°¨à± à°ˆ సేవనౠవినియోగించà±à°•à±‹à°®à°¨à°¿ ఆహà±à°µà°¾à°¨à°¿à°‚à°šà°‚à°¡à°¿." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ఆహà±à°µà°¾à°¨à°¿à°‚à°šà±" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "సైటౠనà±à°‚à°¡à°¿ నిషà±à°•à±à°°à°®à°¿à°‚à°šà±" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "నిషà±à°•à±à°°à°®à°¿à°‚à°šà±" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "కొతà±à°¤ ఖాతా సృషà±à°Ÿà°¿à°‚à°šà±" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "నమోదà±" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "సైటà±à°²à±‹à°¨à°¿ à°ªà±à°°à°µà±‡à°¶à°¿à°‚à°šà±" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "à°ªà±à°°à°µà±‡à°¶à°¿à°‚à°šà°‚à°¡à°¿" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "సహాయం కావాలి!" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "సహాయం" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "మరినà±à°¨à°¿ à°—à±à°‚à°ªà±à°²à°•à±ˆ వెతà±à°•à±" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "వెతà±à°•à±" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "సైటౠగమనిక" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "à°¸à±à°¥à°¾à°¨à°¿à°• వీకà±à°·à°£à°²à±" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "పేజీ గమనిక" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "చందాలà±" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "సహాయం" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "à°—à±à°°à°¿à°‚à°šà°¿" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "à°ªà±à°°à°¶à±à°¨à°²à±" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "సేవా నియమాలà±" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "అంతరంగికత" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "మూలమà±" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "సంపà±à°°à°¦à°¿à°‚à°šà±" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "బాడà±à°œà°¿" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "à°¸à±à°Ÿà±‡à°Ÿà°¸à±â€Œà°¨à±†à°Ÿà± మృదూపకరణ లైసెనà±à°¸à±" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4667,12 +4751,12 @@ msgstr "" "**%%site.name%%** అనేది [%%site.broughtby%%](%%site.broughtbyurl%%) వారౠ" "అందిసà±à°¤à±à°¨à±à°¨ మైకà±à°°à±‹ à°¬à±à°²à°¾à°—ింగౠసదà±à°ªà°¾à°¯à°‚. " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** అనేది మైకà±à°°à±‹ à°¬à±à°²à°¾à°—ింగౠసదà±à°ªà°¾à°¯à°‚." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4683,54 +4767,54 @@ msgstr "" "html) à°•à°¿à°‚à°¦ à°²à°à±à°¯à°®à°¯à±à°¯à±‡ [à°¸à±à°Ÿà±‡à°Ÿà°¸à±‌నెటà±](http://status.net/) మైకà±à°°à±‹à°¬à±à°²à°¾à°—ింగౠఉపకరణం సంచిక %s " "పై నడà±à°¸à±à°¤à±à°‚ది." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "కొతà±à°¤ సందేశం" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "à°…à°¨à±à°¨à±€ " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "పేజీకరణ" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "తరà±à°µà°¾à°¤" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "ఇంతకà±à°°à°¿à°¤à°‚" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4745,93 +4829,83 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "à°ªà±à°°à°¾à°¥à°®à°¿à°• సైటౠసà±à°µà°°à±‚పణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "సైటà±" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "రూపకలà±à°ªà°¨ à°¸à±à°µà°°à±‚పణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "రూపà±à°°à±‡à°–à°²à±" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "వాడà±à°•à°°à°¿ à°¸à±à°µà°°à±‚పణం" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "వాడà±à°•à°°à°¿" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMS నిరà±à°§à°¾à°°à°£" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "అంగీకరించà±" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMS నిరà±à°§à°¾à°°à°£" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "రూపకలà±à°ªà°¨ à°¸à±à°µà°°à±‚పణం" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "సంచిక" +msgid "Edit site notice" +msgstr "సైటౠగమనిక" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMS నిరà±à°§à°¾à°°à°£" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5327,6 +5401,11 @@ msgstr "" msgid "Go" msgstr "వెళà±à°³à±" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -5884,10 +5963,6 @@ msgstr "à°¸à±à°ªà°‚దనలà±" msgid "Favorites" msgstr "ఇషà±à°Ÿà°¾à°‚శాలà±" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "వాడà±à°•à°°à°¿" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "వచà±à°šà°¿à°¨à°µà°¿" @@ -5913,7 +5988,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "చందాలà±" @@ -5921,23 +5996,23 @@ msgstr "చందాలà±" msgid "All subscriptions" msgstr "à°…à°¨à±à°¨à°¿ చందాలà±" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "చందాదారà±à°²à±" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "అందరౠచందాదారà±à°²à±" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "వాడà±à°•à°°à°¿ ID" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "à°¸à°à±à°¯à±à°²à±ˆà°¨ తేదీ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "à°…à°¨à±à°¨à°¿ à°—à±à°‚à°ªà±à°²à±" @@ -5978,7 +6053,12 @@ msgstr "à°ˆ నోటీసà±à°¨à°¿ à°ªà±à°¨à°°à°¾à°µà±ƒà°¤à°¿à°‚చాలా? msgid "Repeat this notice" msgstr "à°ˆ నోటీసà±à°¨à°¿ à°ªà±à°¨à°°à°¾à°µà±ƒà°¤à°¿à°‚à°šà±" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "à°ˆ à°—à±à°‚à°ªà±à°¨à±à°‚à°¡à°¿ à°ˆ వాడà±à°•à°°à°¿à°¨à°¿ నిరోధించà±" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6138,47 +6218,63 @@ msgstr "సందేశం" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "వాడà±à°•à°°à°¿ à°ªà±à°°à±Šà°«à±ˆà°²à±" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "నిరà±à°µà°¾à°¹à°•à±à°²à±" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "కొనà±à°¨à°¿ à°•à±à°·à°£à°¾à°² à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "à°“ నిమిషం à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d నిమిషాల à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "à°’à°• à°—à°‚à°Ÿ à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d à°—à°‚à°Ÿà°² à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "à°“ రోజౠకà±à°°à°¿à°¤à°‚" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%d రోజà±à°² à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "à°“ నెల à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d నెలల à°•à±à°°à°¿à°¤à°‚" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "à°’à°• సంవతà±à°¸à°°à°‚ à°•à±à°°à°¿à°¤à°‚" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 71aaa6813..8051f448b 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -9,19 +9,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:53+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:26+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Kabul et" @@ -124,7 +125,7 @@ msgstr "%s ve arkadaÅŸları" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -179,7 +180,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s ve arkadaÅŸları" @@ -207,11 +208,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "Onay kodu bulunamadı." @@ -583,7 +584,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "Hakkında" @@ -676,18 +677,6 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s adli kullanicinin durum mesajlari" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -698,12 +687,12 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -959,7 +948,7 @@ msgid "Conversation" msgstr "Yer" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Durum mesajları" @@ -981,7 +970,7 @@ msgstr "Bize o profili yollamadınız" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1185,8 +1174,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1311,7 +1301,7 @@ msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." msgid "Could not update group." msgstr "Kullanıcı güncellenemedi." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Avatar bilgisi kaydedilemedi" @@ -1435,7 +1425,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Geçersiz bir eposta adresi." @@ -1628,6 +1618,25 @@ msgstr "Böyle bir durum mesajı yok." msgid "Cannot read file." msgstr "Böyle bir durum mesajı yok." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Geçersiz büyüklük." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "Kullanıcının profili yok." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1779,12 +1788,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2371,8 +2386,8 @@ msgstr "BaÄŸlan" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2520,7 +2535,8 @@ msgstr "Yeni parola kaydedilemedi." msgid "Password saved." msgstr "Parola kaydedildi." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2645,7 +2661,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Geri al" @@ -2705,11 +2721,11 @@ msgstr "Geçersiz bir eposta adresi." msgid "Users self-tagged with %1$s - page %2$d" msgstr "%s adli kullanicinin durum mesajlari" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Geçersiz durum mesajı" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2792,7 +2808,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2818,7 +2834,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3125,7 +3141,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Eposta" @@ -3214,7 +3230,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Abone ol" @@ -3316,6 +3332,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s için cevaplar" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Kullanıcının profili yok." + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3331,7 +3357,9 @@ msgstr "Bize o profili yollamadınız" msgid "User is already sandboxed." msgstr "Kullanıcının profili yok." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3355,7 +3383,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3391,8 +3419,8 @@ msgstr "Yer" msgid "Description" msgstr "Abonelikler" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Ä°statistikler" @@ -3526,47 +3554,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "%s için durum RSS beslemesi" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "Ãœyelik baÅŸlangıcı" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Yarat" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3576,7 +3604,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3585,7 +3613,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3697,149 +3725,137 @@ msgid "User is already silenced." msgstr "Kullanıcının profili yok." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Geçersiz bir eposta adresi." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Yeni durum mesajı" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Kullanıcı için kaydedilmiÅŸ eposta adresi yok." -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Yer" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" -msgstr "" - -#: actions/siteadminpanel.php:289 -msgid "Snapshots" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Yeni durum mesajı" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" msgstr "" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Durum mesajını kaydederken hata oluÅŸtu." -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Yeni durum mesajı" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Yeni durum mesajı" #: actions/smssettings.php:58 #, fuzzy @@ -3936,6 +3952,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Abonelikler" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Ayarlar" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4144,7 +4220,7 @@ msgstr "Yetkilendirme isteÄŸi yok!" msgid "Unsubscribed" msgstr "AboneliÄŸi sonlandır" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4344,16 +4420,22 @@ msgstr "Bütün abonelikler" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Bize o profili yollamadınız" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4397,7 +4479,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "KiÅŸisel" @@ -4465,41 +4547,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Durum mesajını kaydederken hata oluÅŸtu." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Durum mesajını kaydederken hata oluÅŸtu." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluÅŸtu." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluÅŸtu." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4527,7 +4609,12 @@ msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" msgid "Couldn't delete self-subscription." msgstr "Abonelik silinemedi." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Abonelik silinemedi." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." @@ -4536,22 +4623,22 @@ msgstr "Abonelik silinemedi." msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Avatar bilgisi kaydedilemedi" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Abonelik oluÅŸturulamadı." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Abonelik oluÅŸturulamadı." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Abonelik oluÅŸturulamadı." @@ -4595,192 +4682,186 @@ msgstr "%1$s'in %2$s'deki durum mesajları " msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "KiÅŸisel" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Parolayı deÄŸiÅŸtir" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Hakkında" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "BaÄŸlan" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Abonelikler" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "Geçersiz büyüklük." #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Çıkış" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Yeni hesap oluÅŸtur" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Kayıt" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "GiriÅŸ" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "Yardım" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "Yardım" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Ara" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Yardım" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Hakkında" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "SSS" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Gizlilik" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Kaynak" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Ä°letiÅŸim" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4789,12 +4870,12 @@ msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaÅŸma ağıdır. " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** bir aninda mesajlaÅŸma sosyal ağıdır." -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4805,56 +4886,56 @@ msgstr "" "licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " "microbloglama yazılımının %s. versiyonunu kullanmaktadır." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Yeni durum mesajı" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« Sonra" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "Önce »" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4869,95 +4950,86 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "Yeni durum mesajı" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "KiÅŸisel" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Eposta adresi onayı" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Eposta adresi onayı" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Kabul et" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Eposta adresi onayı" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Eposta adresi onayı" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "KiÅŸisel" +msgid "Edit site notice" +msgstr "Yeni durum mesajı" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Eposta adresi onayı" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5461,6 +5533,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6013,10 +6090,6 @@ msgstr "Cevaplar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -6042,7 +6115,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Abonelikler" @@ -6050,24 +6123,24 @@ msgstr "Abonelikler" msgid "All subscriptions" msgstr "Bütün abonelikler" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Abone olanlar" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Abone olanlar" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Ãœyelik baÅŸlangıcı" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6111,7 +6184,12 @@ msgstr "Böyle bir durum mesajı yok." msgid "Repeat this notice" msgstr "Böyle bir durum mesajı yok." -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Böyle bir kullanıcı yok." + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6274,47 +6352,62 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Kullanıcının profili yok." + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "birkaç saniye önce" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "yaklaşık bir dakika önce" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "yaklaşık %d dakika önce" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "yaklaşık bir saat önce" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "yaklaşık %d saat önce" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "yaklaşık bir gün önce" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "yaklaşık %d gün önce" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "yaklaşık bir ay önce" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "yaklaşık %d ay önce" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "yaklaşık bir yıl önce" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index fd168ba50..08f93f255 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:56+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:28+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -23,7 +23,8 @@ msgstr "" "10< =4 && (n%100<10 or n%100>=20) ? 1 : 2);\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 msgid "Access" msgstr "ПогодитиÑÑŒ" @@ -46,7 +47,6 @@ msgstr "" #. TRANS: Checkbox label for prohibiting anonymous users from viewing site. #: actions/accessadminpanel.php:167 -#, fuzzy msgctxt "LABEL" msgid "Private" msgstr "Приватно" @@ -77,7 +77,6 @@ msgid "Save access settings" msgstr "Зберегти параметри доÑтупу" #: actions/accessadminpanel.php:203 -#, fuzzy msgctxt "BUTTON" msgid "Save" msgstr "Зберегти" @@ -122,7 +121,7 @@ msgstr "%1$s та друзі, Ñторінка %2$d" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -183,7 +182,7 @@ msgstr "" "«розштовхати» %s або щоÑÑŒ йому напиÑати." #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 msgid "You and friends" msgstr "Ви з друзÑми" @@ -210,11 +209,11 @@ msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ %1$s та друзів на %2$s!" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 msgid "API method not found." msgstr "API метод не знайдено." @@ -579,7 +578,7 @@ msgstr "" "на доÑтуп до Вашого акаунту %4$s лише тим Ñтороннім додаткам, Ñким Ви " "довірÑєте." -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "Ðкаунт" @@ -668,18 +667,6 @@ msgstr "%1$s / Обрані від %2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%1$s Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ñ… від %2$s / %2$s." -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s Ñтрічка" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ %1$s на %2$s!" - #: actions/apitimelinementions.php:117 #, php-format msgid "%1$s / Updates mentioning %2$s" @@ -690,12 +677,12 @@ msgstr "%1$s / Оновленні відповіді %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "%1$s оновив цю відповідь на Ð´Ð¾Ð¿Ð¸Ñ Ð²Ñ–Ð´ %2$s / %3$s." -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s загальна Ñтрічка" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ уÑÑ–Ñ…!" @@ -941,7 +928,7 @@ msgid "Conversation" msgstr "Розмова" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "ДопиÑи" @@ -960,7 +947,7 @@ msgstr "Ви не Ñ” влаÑником цього додатку." #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної ÑеÑÑ–Ñ—." @@ -1154,8 +1141,9 @@ msgstr "ПовернутиÑÑŒ до початкових налаштувань" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1271,7 +1259,7 @@ msgstr "Ð¾Ð¿Ð¸Ñ Ð½Ð°Ð´Ñ‚Ð¾ довгий (%d знаків макÑимум)." msgid "Could not update group." msgstr "Ðе вдалоÑÑ Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ групу." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 msgid "Could not create aliases." msgstr "Ðеможна призначити додаткові імена." @@ -1393,7 +1381,7 @@ msgid "Cannot normalize that email address" msgstr "Ðе можна полагодити цю поштову адреÑу" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Це недійÑна електронна адреÑа." @@ -1584,6 +1572,25 @@ msgstr "Такого файлу немає." msgid "Cannot read file." msgstr "Ðе можу прочитати файл." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "Ðевірний токен." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Ви не можете нікого ізолювати на цьому Ñайті." + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "КориÑтувачу наразі заклеїли рота Ñкотчем." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1731,12 +1738,18 @@ msgstr "Зробити адміном" msgid "Make this user an admin" msgstr "Ðадати цьому кориÑтувачеві права адмініÑтратора" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s Ñтрічка" + #: actions/grouprss.php:140 #, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñ‡Ð»ÐµÐ½Ñ–Ð² %1$s на %2$s!" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "Групи" @@ -1999,7 +2012,6 @@ msgstr "Можна додати перÑональне Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ #. TRANS: Send button for inviting friends #: actions/invite.php:198 -#, fuzzy msgctxt "BUTTON" msgid "Send" msgstr "ÐадіÑлати" @@ -2361,8 +2373,8 @@ msgstr "тип зміÑту " msgid "Only " msgstr "Лише " -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Такий формат даних не підтримуєтьÑÑ." @@ -2503,7 +2515,8 @@ msgstr "Ðеможна зберегти новий пароль." msgid "Password saved." msgstr "Пароль збережено." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "ШлÑÑ…" @@ -2623,7 +2636,7 @@ msgstr "Ð”Ð¸Ñ€ÐµÐºÑ‚Ð¾Ñ€Ñ–Ñ Ñ„Ð¾Ð½Ñ–Ð²" msgid "SSL" msgstr "SSL-шифруваннÑ" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "Ðіколи" @@ -2679,11 +2692,11 @@ msgstr "Це недійÑний оÑобиÑтий теґ: %s" msgid "Users self-tagged with %1$s - page %2$d" msgstr "КориÑтувачі з оÑобиÑтим теґом %1$s — Ñторінка %2$d" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "ÐедійÑний зміÑÑ‚ допиÑу" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "Ð›Ñ–Ñ†ÐµÐ½Ð·Ñ–Ñ Ð´Ð¾Ð¿Ð¸Ñу «%1$s» Ñ” неÑуміÑною з ліцензією Ñайту «%2$s»." @@ -2763,7 +2776,7 @@ msgstr "" "Позначте Ñебе теґами (літери, цифри, -, . та _), відокремлюючи кожен комою " "або пробілом" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Мова" @@ -2790,7 +2803,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Ви перевищили ліміт (%d знаків макÑимум)." -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "ЧаÑовий поÑÑ Ð½Ðµ обрано." @@ -3111,7 +3124,7 @@ msgid "Same as password above. Required." msgstr "Такий Ñамо, Ñк Ñ– пароль вище. Ðеодмінно." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Пошта" @@ -3216,7 +3229,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL-адреÑа Вашого профілю на іншому ÑуміÑному ÑервіÑÑ–" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "ПідпиÑатиÑÑŒ" @@ -3319,6 +3332,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Відповіді до %1$s на %2$s!" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Ви не можете позбавлÑти кориÑтувачів права голоÑу на цьому Ñайті." + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "КориÑтувач без відповідного профілю." + #: actions/rsd.php:146 actions/version.php:157 msgid "StatusNet" msgstr "StatusNet" @@ -3331,7 +3354,9 @@ msgstr "Ви не можете нікого ізолювати на цьому Ñ msgid "User is already sandboxed." msgstr "КориÑтувача ізольовано доки наберетьÑÑ ÑƒÐ¼Ñƒ-розуму." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "СеÑÑ–Ñ—" @@ -3355,7 +3380,7 @@ msgstr "СеÑÑ–Ñ Ð½Ð°Ð»Ð°Ð´ÐºÐ¸" msgid "Turn on debugging output for sessions." msgstr "Виводити дані ÑеÑÑ–Ñ— наладки." -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 msgid "Save site settings" msgstr "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñайту" @@ -3386,8 +3411,8 @@ msgstr "ОрганізаціÑ" msgid "Description" msgstr "ОпиÑ" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "СтатиÑтика" @@ -3529,45 +3554,45 @@ msgstr "Додаткові імена" msgid "Group actions" msgstr "ДіÑльніÑÑ‚ÑŒ групи" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Стрічка допиÑів групи %s (RSS 1.0)" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Стрічка допиÑів групи %s (RSS 2.0)" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "Стрічка допиÑів групи %s (Atom)" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "FOAF Ð´Ð»Ñ Ð³Ñ€ÑƒÐ¿Ð¸ %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "УчаÑники" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(ПуÑто)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "Ð’ÑÑ– учаÑники" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 msgid "Created" msgstr "Створено" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3582,7 +3607,7 @@ msgstr "" "короткі допиÑи про Ñвоє Ð¶Ð¸Ñ‚Ñ‚Ñ Ñ‚Ð° інтереÑи. [ПриєднуйтеÑÑŒ](%%action.register%" "%) зараз Ñ– долучітьÑÑ Ð´Ð¾ ÑпілкуваннÑ! ([ДізнатиÑÑ Ð±Ñ–Ð»ÑŒÑˆÐµ](%%doc.help%%))" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3595,7 +3620,7 @@ msgstr "" "забезпеченні [StatusNet](http://status.net/). Члени цієї групи роблÑÑ‚ÑŒ " "короткі допиÑи про Ñвоє Ð¶Ð¸Ñ‚Ñ‚Ñ Ñ‚Ð° інтереÑи. " -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "Ðдміни" @@ -3717,150 +3742,141 @@ msgid "User is already silenced." msgstr "КориÑтувачу наразі заклеїли рота Ñкотчем." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +#, fuzzy +msgid "Basic settings for this StatusNet site" msgstr "Загальні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ñайту StatusNet." -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "Ð†Ð¼â€™Ñ Ñайту не може бути порожнім." -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." msgstr "Електронна адреÑа має бути чинною." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "Ðевідома мова «%s»." #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "Помилковий Ñнепшот URL." - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "Помилкове Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñнепшоту." - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "ЧаÑтота Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÐµÐ½Ð½Ñ Ñнепшотів має міÑтити цифру." - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "Ліміт текÑтових повідомлень Ñтановить 140 знаків." -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" "ЧаÑове Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¸ надÑиланні дублікату Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¼Ð°Ñ” Ñтановити від 1 Ñ– " "більше Ñекунд." -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "ОÑновні" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 msgid "Site name" msgstr "Ðазва Ñайту" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "Ðазва Вашого Ñайту, штибу \"Мікроблоґи компанії ...\"" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "Ðадано" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "ТекÑÑ‚ викориÑтаний Ð´Ð»Ñ Ð¿Ð¾Ñілань кредитів унизу кожної Ñторінки" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "Ðаданий URL" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "URL викориÑтаний Ð´Ð»Ñ Ð¿Ð¾Ñілань кредитів унизу кожної Ñторінки" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 msgid "Contact email address for your site" msgstr "Контактна електронна адреÑа Ð´Ð»Ñ Ð’Ð°ÑˆÐ¾Ð³Ð¾ Ñайту" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 msgid "Local" msgstr "Локаль" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "ЧаÑовий поÑÑ Ð·Ð° замовчуваннÑм" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "ЧаÑовий поÑÑ Ð·Ð° замовчуваннÑм Ð´Ð»Ñ Ñайту; зазвичай UTC." -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +#, fuzzy +msgid "Default language" msgstr "Мова Ñайту за замовчуваннÑм" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "Снепшоти" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" -msgstr "Випадково під Ñ‡Ð°Ñ Ð²ÐµÐ±-хіта" - -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" -msgstr "Згідно плану робіт" - -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" -msgstr "Снепшоти даних" - -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" -msgstr "Коли надÑилати ÑтатиÑтичні дані до Ñерверів status.net" - -#: actions/siteadminpanel.php:301 -msgid "Frequency" -msgstr "ЧаÑтота" - -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" -msgstr "Снепшоти надÑилатимутьÑÑ Ñ€Ð°Ð· на N веб-хітів" - -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "Ð—Ð²Ñ–Ñ‚Ð½Ñ URL-адреÑа" - -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "Снепшоти надÑилатимутьÑÑ Ð½Ð° цю URL-адреÑу" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" +msgstr "" -#: actions/siteadminpanel.php:315 +#: actions/siteadminpanel.php:271 msgid "Limits" msgstr "ОбмеженнÑ" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Text limit" msgstr "ТекÑтові обмеженнÑ" -#: actions/siteadminpanel.php:318 +#: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." msgstr "МакÑимальна кількіÑÑ‚ÑŒ знаків у допиÑÑ–." -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "Dupe limit" msgstr "ЧаÑове обмеженнÑ" -#: actions/siteadminpanel.php:322 +#: actions/siteadminpanel.php:278 msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" "Як довго кориÑтувачі мають зачекати (в Ñекундах) аби надіÑлати той Ñамий " "Ð´Ð¾Ð¿Ð¸Ñ Ñ‰Ðµ раз." +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Ð—Ð°ÑƒÐ²Ð°Ð¶ÐµÐ½Ð½Ñ Ñайту" + +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Ðове повідомленнÑ" + +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Ðе маю можливоÑÑ‚Ñ– зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." + +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" +msgstr "" + +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Ð—Ð°ÑƒÐ²Ð°Ð¶ÐµÐ½Ð½Ñ Ñайту" + +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" +msgstr "" + +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Ð—Ð°ÑƒÐ²Ð°Ð¶ÐµÐ½Ð½Ñ Ñайту" + #: actions/smssettings.php:58 msgid "SMS settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¡ÐœÐ¡" @@ -3960,6 +3976,66 @@ msgstr "" msgid "No code entered" msgstr "Код не введено" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "Снепшоти" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Змінити конфігурацію Ñайту" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "Помилкове Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñнепшоту." + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "ЧаÑтота Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÐµÐ½Ð½Ñ Ñнепшотів має міÑтити цифру." + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "Помилковий Ñнепшот URL." + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "Випадково під Ñ‡Ð°Ñ Ð²ÐµÐ±-хіта" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "Згідно плану робіт" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "Снепшоти даних" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "Коли надÑилати ÑтатиÑтичні дані до Ñерверів status.net" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "ЧаÑтота" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "Снепшоти надÑилатимутьÑÑ Ñ€Ð°Ð· на N веб-хітів" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "Ð—Ð²Ñ–Ñ‚Ð½Ñ URL-адреÑа" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "Снепшоти надÑилатимутьÑÑ Ð½Ð° цю URL-адреÑу" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Зберегти Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñайту" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "Ви не підпиÑані до цього профілю." @@ -4167,7 +4243,7 @@ msgstr "У запиті відÑутній ID профілю." msgid "Unsubscribed" msgstr "ВідпиÑано" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4175,7 +4251,6 @@ msgstr "Ð›Ñ–Ñ†ÐµÐ½Ð·Ñ–Ñ Â«%1$s» не відповідає ліцензії ÑÐ #. TRANS: User admin panel title #: actions/useradminpanel.php:59 -#, fuzzy msgctxt "TITLE" msgid "User" msgstr "КориÑтувач" @@ -4370,17 +4445,23 @@ msgstr "Групи %1$s, Ñторінка %2$d" msgid "Search for more groups" msgstr "Шукати групи ще" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "%s не Ñ” учаÑником жодної групи." -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" "Спробуйте [знайти ÑкіÑÑŒ групи](%%action.groupsearch%%) Ñ– приєднайтеÑÑ Ð´Ð¾ них." +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ %1$s на %2$s!" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4436,7 +4517,7 @@ msgstr "" msgid "Plugins" msgstr "Додатки" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 msgid "Version" msgstr "ВерÑÑ–Ñ" @@ -4501,22 +4582,22 @@ msgstr "Ðе можна оновити Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð· новим UR msgid "DB error inserting hashtag: %s" msgstr "Помилка бази даних при додаванні теґу: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 msgid "Problem saving notice. Too long." msgstr "Проблема при збереженні допиÑу. Ðадто довге." -#: classes/Notice.php:243 +#: classes/Notice.php:245 msgid "Problem saving notice. Unknown user." msgstr "Проблема при збереженні допиÑу. Ðевідомий кориÑтувач." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" "Дуже багато допиÑів за короткий термін; ходіть подихайте повітрÑм Ñ– " "повертайтеÑÑŒ за кілька хвилин." -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." @@ -4524,19 +4605,19 @@ msgstr "" "Дуже багато повідомлень за короткий термін; ходіть подихайте повітрÑм Ñ– " "повертайтеÑÑŒ за кілька хвилин." -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надÑилати допиÑи до цього Ñайту." -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Проблема при збереженні допиÑу." -#: classes/Notice.php:911 +#: classes/Notice.php:927 msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних допиÑів Ð´Ð»Ñ Ð³Ñ€ÑƒÐ¿Ð¸." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "RT @%1$s %2$s" @@ -4561,7 +4642,12 @@ msgstr "Ðе підпиÑано!" msgid "Couldn't delete self-subscription." msgstr "Ðе можу видалити ÑамопідпиÑку." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ підпиÑку." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ підпиÑку." @@ -4570,19 +4656,19 @@ msgstr "Ðе вдалоÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ підпиÑку." msgid "Welcome to %1$s, @%2$s!" msgstr "Вітаємо на %1$s, @%2$s!" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "Ðе вдалоÑÑ Ñтворити нову групу." -#: classes/User_group.php:471 +#: classes/User_group.php:486 msgid "Could not set group URI." msgstr "Ðе вдалоÑÑ Ð²Ñтановити URI групи." -#: classes/User_group.php:492 +#: classes/User_group.php:507 msgid "Could not set group membership." msgstr "Ðе вдалоÑÑ Ð²Ñтановити членÑтво." -#: classes/User_group.php:506 +#: classes/User_group.php:521 msgid "Could not save local group info." msgstr "Ðе вдалоÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ інформацію про локальну групу." @@ -4623,194 +4709,171 @@ msgstr "%1$s — %2$s" msgid "Untitled page" msgstr "Сторінка без заголовку" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "Відправна Ð½Ð°Ð²Ñ–Ð³Ð°Ñ†Ñ–Ñ Ð¿Ð¾ Ñайту" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 -#, fuzzy +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "ПерÑональний профіль Ñ– Ñтрічка друзів" -#: lib/action.php:442 -#, fuzzy +#: lib/action.php:433 msgctxt "MENU" msgid "Personal" msgstr "ОÑобиÑте" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 -#, fuzzy +#: lib/action.php:435 msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Змінити електронну адреÑу, аватару, пароль, профіль" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Ðкаунт" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 -#, fuzzy +#: lib/action.php:440 msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Ð—â€™Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· ÑервіÑами" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "З’єднаннÑ" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 -#, fuzzy +#: lib/action.php:446 msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Змінити конфігурацію Ñайту" -#: lib/action.php:460 -#, fuzzy +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "Ðдмін" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 -#, fuzzy, php-format +#: lib/action.php:453 +#, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "ЗапроÑÑ–Ñ‚ÑŒ друзів та колег приєднатиÑÑŒ до Ð’Ð°Ñ Ð½Ð° %s" -#: lib/action.php:467 -#, fuzzy +#: lib/action.php:456 msgctxt "MENU" msgid "Invite" msgstr "ЗапроÑити" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 -#, fuzzy +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "Вийти з Ñайту" -#: lib/action.php:476 -#, fuzzy +#: lib/action.php:465 msgctxt "MENU" msgid "Logout" msgstr "Вийти" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 -#, fuzzy +#: lib/action.php:470 msgctxt "TOOLTIP" msgid "Create an account" msgstr "Створити новий акаунт" -#: lib/action.php:484 -#, fuzzy +#: lib/action.php:473 msgctxt "MENU" msgid "Register" msgstr "РеєÑтраціÑ" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 -#, fuzzy +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Увійти на Ñайт" -#: lib/action.php:490 -#, fuzzy +#: lib/action.php:479 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 -#, fuzzy +#: lib/action.php:482 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:496 -#, fuzzy +#: lib/action.php:485 msgctxt "MENU" msgid "Help" -msgstr "Допомога" +msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 -#, fuzzy +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текÑтів" -#: lib/action.php:502 -#, fuzzy +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "Пошук" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 msgid "Site notice" msgstr "Ð—Ð°ÑƒÐ²Ð°Ð¶ÐµÐ½Ð½Ñ Ñайту" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "ОглÑд" -#: lib/action.php:656 +#: lib/action.php:645 msgid "Page notice" msgstr "Ð—Ð°ÑƒÐ²Ð°Ð¶ÐµÐ½Ð½Ñ Ñторінки" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "ДругорÑдна Ð½Ð°Ð²Ñ–Ð³Ð°Ñ†Ñ–Ñ Ð¿Ð¾ Ñайту" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "Допомога" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Про" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "ЧаПи" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "Умови" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "КонфіденційніÑÑ‚ÑŒ" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Джерело" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Контакт" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "Бедж" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "Ð›Ñ–Ñ†ÐµÐ½Ð·Ñ–Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ StatusNet" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4819,12 +4882,12 @@ msgstr "" "**%%site.name%%** — це ÑÐµÑ€Ð²Ñ–Ñ Ð¼Ñ–ÐºÑ€Ð¾Ð±Ð»Ð¾Ò‘Ñ–Ð² наданий вам [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** — це ÑÐµÑ€Ð²Ñ–Ñ Ð¼Ñ–ÐºÑ€Ð¾Ð±Ð»Ð¾Ò‘Ñ–Ð². " -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4835,54 +4898,54 @@ msgstr "" "Ð´Ð»Ñ Ð¼Ñ–ÐºÑ€Ð¾Ð±Ð»Ð¾Ò‘Ñ–Ð², верÑÑ–Ñ %s, доÑтупному під [GNU Affero General Public " "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 msgid "Site content license" msgstr "Ð›Ñ–Ñ†ÐµÐ½Ð·Ñ–Ñ Ð·Ð¼Ñ–Ñту Ñайту" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "ЗміÑÑ‚ Ñ– дані %1$s Ñ” приватними Ñ– конфіденційними." -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "ÐвторÑькі права на зміÑÑ‚ Ñ– дані належать %1$s. Ð’ÑÑ– права захищено." -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" "ÐвторÑькі права на зміÑÑ‚ Ñ– дані належать розробникам. Ð’ÑÑ– права захищено." -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "Ð’ÑÑ– " -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "ліцензіÑ." -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "ÐÑƒÐ¼ÐµÑ€Ð°Ñ†Ñ–Ñ Ñторінок" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "Вперед" -#: lib/action.php:1180 +#: lib/action.php:1169 msgid "Before" msgstr "Ðазад" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "Поки що не можу обробити віддалений контент." -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "Поки що не можу обробити вбудований XML контент." -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "Поки що не можу обробити вбудований контент Base64." @@ -4897,91 +4960,78 @@ msgid "Changes to that panel are not allowed." msgstr "Ð”Ð»Ñ Ñ†Ñ–Ñ”Ñ— панелі зміни не припуÑтимі." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "showForm() не виконано." #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "saveSettings() не виконано." #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "Ðемає можливоÑÑ‚Ñ– видалити Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ." #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 msgid "Basic site configuration" msgstr "ОÑновна ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ñайту" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 -#, fuzzy +#: lib/adminpanelaction.php:350 msgctxt "MENU" msgid "Site" msgstr "Сайт" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 msgid "Design configuration" msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ Ð´Ð¸Ð·Ð°Ð¹Ð½Ñƒ" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 -#, fuzzy +#: lib/adminpanelaction.php:358 msgctxt "MENU" msgid "Design" msgstr "Дизайн" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 msgid "User configuration" msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ ÐºÐ¾Ñ€Ð¸Ñтувача" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "КориÑтувач" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 msgid "Access configuration" msgstr "ПрийнÑти конфігурацію" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "ПогодитиÑÑŒ" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 msgid "Paths configuration" msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ ÑˆÐ»Ñху" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -#, fuzzy -msgctxt "MENU" -msgid "Paths" -msgstr "ШлÑÑ…" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 msgid "Sessions configuration" msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ ÑеÑій" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "СеÑÑ–Ñ—" +msgid "Edit site notice" +msgstr "Ð—Ð°ÑƒÐ²Ð°Ð¶ÐµÐ½Ð½Ñ Ñайту" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "ÐšÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ ÑˆÐ»Ñху" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5510,6 +5560,11 @@ msgstr "Оберіть теґ до звуженого ÑпиÑку" msgid "Go" msgstr "Вперед" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "URL-адреÑа веб-Ñторінки, блоґу групи, або тематичного блоґу" @@ -6125,10 +6180,6 @@ msgstr "Відповіді" msgid "Favorites" msgstr "Обрані" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "КориÑтувач" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Вхідні" @@ -6154,7 +6205,7 @@ msgstr "Теґи у допиÑах %s" msgid "Unknown" msgstr "Ðевідомо" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "ПідпиÑки" @@ -6162,23 +6213,23 @@ msgstr "ПідпиÑки" msgid "All subscriptions" msgstr "Ð’ÑÑ– підпиÑки" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "ПідпиÑчики" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 msgid "All subscribers" msgstr "Ð’ÑÑ– підпиÑчики" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "ІД" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "З нами від" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "Ð’ÑÑ– групи" @@ -6218,7 +6269,12 @@ msgstr "Повторити цей допиÑ?" msgid "Repeat this notice" msgstr "Вторувати цьому допиÑу" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Блокувати кориÑтувача цієї групи" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "КориÑтувача Ð´Ð»Ñ Ð¾Ð´Ð½Ð¾ÐºÐ¾Ñ€Ð¸Ñтувацького режиму не визначено." @@ -6372,47 +6428,64 @@ msgstr "ПовідомленнÑ" msgid "Moderate" msgstr "Модерувати" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Профіль кориÑтувача." + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "Ðдміни" + +#: lib/userprofile.php:355 +#, fuzzy +msgctxt "role" +msgid "Moderator" +msgstr "Модерувати" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "мить тому" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "хвилину тому" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "близько %d хвилин тому" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "годину тому" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "близько %d годин тому" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "день тому" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "близько %d днів тому" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "міÑÑць тому" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "близько %d міÑÑців тому" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "рік тому" diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index d64fae91d..2a3c0ceeb 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:03:59+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:31+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "Chấp nháºn" @@ -123,7 +124,7 @@ msgstr "%s và bạn bè" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -178,7 +179,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s và bạn bè" @@ -206,11 +207,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "PhÆ°Æ¡ng thức API không tìm thấy!" @@ -585,7 +586,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "Giá»›i thiệu" @@ -677,18 +678,6 @@ msgstr "Tìm kiếm các tin nhắn Æ°a thÃch của %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "Tất cả các cáºp nháºt của %s" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, fuzzy, php-format -msgid "%s timeline" -msgstr "Dòng tin nhắn của %s" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -699,12 +688,12 @@ msgstr "%1$s / Các cáºp nháºt Ä‘ang trả lá»i tá»›i %2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, fuzzy, php-format msgid "%s public timeline" msgstr "Dòng tin công cá»™ng" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "%s cáºp nháºt từ tất cả má»i ngÆ°á»i!" @@ -963,7 +952,7 @@ msgid "Conversation" msgstr "Không có mã số xác nháºn." #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "Tin nhắn" @@ -985,7 +974,7 @@ msgstr "Bạn chÆ°a cáºp nháºt thông tin riêng" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 #, fuzzy msgid "There was a problem with your session token." msgstr "Có lá»—i xảy ra khi thao tác. Hãy thá» lại lần nữa." @@ -1197,8 +1186,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1330,7 +1320,7 @@ msgstr "Lý lịch quá dà i (không quá 140 ký tá»±)" msgid "Could not update group." msgstr "Không thể cáºp nháºt thà nh viên." -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "Không thể tạo favorite." @@ -1461,7 +1451,7 @@ msgid "Cannot normalize that email address" msgstr "Không thể bình thÆ°á»ng hóa địa chỉ GTalk nà y" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "Äịa chỉ email không hợp lệ." @@ -1667,6 +1657,25 @@ msgstr "Không có tin nhắn nà o." msgid "Cannot read file." msgstr "Không có tin nhắn nà o." +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "KÃch thÆ°á»›c không hợp lệ." + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "Bạn đã theo những ngÆ°á»i nà y:" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "NgÆ°á»i dùng không có thông tin." + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1824,12 +1833,18 @@ msgstr "" msgid "Make this user an admin" msgstr "Kênh mà bạn tham gia" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, fuzzy, php-format +msgid "%s timeline" +msgstr "Dòng tin nhắn của %s" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "Dòng tin nhắn cho %s" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 #, fuzzy msgid "Groups" @@ -2460,8 +2475,8 @@ msgstr "Kết nối" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "Không há»— trợ định dạng dữ liệu nà y." @@ -2613,7 +2628,8 @@ msgstr "Không thể lÆ°u máºt khẩu má»›i" msgid "Password saved." msgstr "Äã lÆ°u máºt khẩu." -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2745,7 +2761,7 @@ msgstr "Background Theme:" msgid "SSL" msgstr "SMS" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "Khôi phục" @@ -2804,11 +2820,11 @@ msgstr "Äịa chỉ email không hợp lệ." msgid "Users self-tagged with %1$s - page %2$d" msgstr "Dòng tin nhắn cho %s" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "Ná»™i dung tin nhắn không hợp lệ" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2888,7 +2904,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "Ngôn ngữ" @@ -2914,7 +2930,7 @@ msgstr "Tá»± Ä‘á»™ng theo những ngÆ°á»i nà o đăng ký theo tôi" msgid "Bio is too long (max %d chars)." msgstr "Lý lịch quá dà i (không quá 140 ký tá»±)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3228,7 +3244,7 @@ msgid "Same as password above. Required." msgstr "Cùng máºt khẩu ở trên. Bắt buá»™c." #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -3332,7 +3348,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL trong hồ sÆ¡ cá nhân của bạn ở trên các trang microblogging khác" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "Theo bạn nà y" @@ -3435,6 +3451,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s chà o mừng bạn " +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "Bạn đã theo những ngÆ°á»i nà y:" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "Hồ sÆ¡ ở nÆ¡i khác không khá»›p vá»›i hồ sÆ¡ nà y của bạn" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3450,7 +3476,9 @@ msgstr "Bạn đã theo những ngÆ°á»i nà y:" msgid "User is already sandboxed." msgstr "NgÆ°á»i dùng không có thông tin." +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3474,7 +3502,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3510,8 +3538,8 @@ msgstr "ThÆ° má»i đã gá»i" msgid "Description" msgstr "Mô tả" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "Số liệu thống kê" @@ -3647,47 +3675,47 @@ msgstr "" msgid "Group actions" msgstr "Mã nhóm" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "Dòng tin nhắn cho %s" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "Há»™p thÆ° Ä‘i của %s" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 msgid "Members" msgstr "Thà nh viên" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 #, fuzzy msgid "All members" msgstr "Thà nh viên" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "Tạo" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3697,7 +3725,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3706,7 +3734,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3820,150 +3848,139 @@ msgid "User is already silenced." msgstr "NgÆ°á»i dùng không có thông tin." #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "Äịa chỉ email không hợp lệ." -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "Thông báo má»›i" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "Dia chi email moi de gui tin nhan den %s" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "Thà nh phố" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "Ngôn ngữ bạn thÃch" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "Thông báo má»›i" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "Tin má»›i nhất" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "Không thể lÆ°u thông tin Twitter của bạn!" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "Thông báo má»›i" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "Thông báo má»›i" #: actions/smssettings.php:58 #, fuzzy @@ -4075,6 +4092,66 @@ msgstr "" msgid "No code entered" msgstr "Không có mã nà o được nháºp" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "Tôi theo" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "Thay đổi hình đại diện" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4284,7 +4361,7 @@ msgstr "Không có URL cho hồ sÆ¡ để quay vá»." msgid "Unsubscribed" msgstr "Hết theo" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4493,16 +4570,22 @@ msgstr "Thà nh viên" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "Bạn chÆ°a cáºp nháºt thông tin riêng" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4546,7 +4629,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "Cá nhân" @@ -4617,41 +4700,41 @@ msgstr "Không thể cáºp nháºt thông tin user vá»›i địa chỉ email đã msgid "DB error inserting hashtag: %s" msgstr "Lá»—i cÆ¡ sở dữ liệu khi chèn trả lá»i: %s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "Có lá»—i xảy ra khi lÆ°u tin nhắn." -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "Có lá»—i xảy ra khi lÆ°u tin nhắn." -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "Có lá»—i xảy ra khi lÆ°u tin nhắn." -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "Có lá»—i xảy ra khi lÆ°u tin nhắn." -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%s (%s)" @@ -4679,7 +4762,12 @@ msgstr "ChÆ°a đăng nháºn!" msgid "Couldn't delete self-subscription." msgstr "Không thể xóa đăng nháºn." -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "Không thể xóa đăng nháºn." + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "Không thể xóa đăng nháºn." @@ -4688,22 +4776,22 @@ msgstr "Không thể xóa đăng nháºn." msgid "Welcome to %1$s, @%2$s!" msgstr "%s chà o mừng bạn " -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "Không thể tạo favorite." -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "Không thể tạo đăng nháºn." -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "Không thể tạo đăng nháºn." -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "Không thể tạo đăng nháºn." @@ -4748,62 +4836,55 @@ msgstr "%s (%s)" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "Cá nhân" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "Thay đổi máºt khẩu của bạn" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "Giá»›i thiệu" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "Không thể chuyển đến máy chủ: %s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "Kết nối" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "Tôi theo" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" @@ -4811,132 +4892,133 @@ msgstr "" "Äiá»n địa chỉ email và ná»™i dung tin nhắn để gá»i thÆ° má»i bạn bè và đồng nghiệp " "của bạn tham gia và o dịch vụ nà y." -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "ThÆ° má»i" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "Thoát" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "Tạo tà i khoản má»›i" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "Äăng ký" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "Äăng nháºp" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "HÆ°á»›ng dẫn" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "HÆ°á»›ng dẫn" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "Tìm kiếm" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "Thông báo má»›i" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "Thông báo má»›i" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "HÆ°á»›ng dẫn" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "Giá»›i thiệu" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "Riêng tÆ°" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "Nguồn" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "Liên hệ" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "Tin đã gá»i" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4945,12 +5027,12 @@ msgstr "" "**%%site.name%%** là dịch vụ gá»i tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** là dịch vụ gá»i tin nhắn. " -#: lib/action.php:817 +#: lib/action.php:806 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4961,56 +5043,56 @@ msgstr "" "quyá»n [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "Tìm theo ná»™i dung của tin nhắn" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "Sau" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "TrÆ°á»›c" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -5027,96 +5109,87 @@ msgid "Changes to that panel are not allowed." msgstr "Biệt hiệu không được cho phép." #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "Không thể lÆ°u thông tin Twitter của bạn!" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "Xac nhan dia chi email" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "ThÆ° má»i" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "Xác nháºn SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "Cá nhân" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "Xác nháºn SMS" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "Xác nháºn SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "Chấp nháºn" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "Xác nháºn SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "Xác nháºn SMS" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "Cá nhân" +msgid "Edit site notice" +msgstr "Thông báo má»›i" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "Xác nháºn SMS" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5630,6 +5703,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6241,10 +6319,6 @@ msgstr "Trả lá»i" msgid "Favorites" msgstr "Ưa thÃch" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "Há»™p thÆ° đến" @@ -6271,7 +6345,7 @@ msgstr "cảnh báo tin nhắn" msgid "Unknown" msgstr "Không tìm thấy action" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "Tôi theo bạn nà y" @@ -6279,24 +6353,24 @@ msgstr "Tôi theo bạn nà y" msgid "All subscriptions" msgstr "Tất cả đăng nháºn" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "Bạn nà y theo tôi" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "Bạn nà y theo tôi" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "Gia nháºp từ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 #, fuzzy msgid "All groups" msgstr "Nhóm" @@ -6343,7 +6417,12 @@ msgstr "Trả lá»i tin nhắn nà y" msgid "Repeat this notice" msgstr "Trả lá»i tin nhắn nà y" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "Ban user" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6515,47 +6594,62 @@ msgstr "Tin má»›i nhất" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "Hồ sÆ¡" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "và i giây trÆ°á»›c" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "1 phút trÆ°á»›c" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d phút trÆ°á»›c" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "1 giá» trÆ°á»›c" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d giá» trÆ°á»›c" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "1 ngà y trÆ°á»›c" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%d ngà y trÆ°á»›c" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "1 tháng trÆ°á»›c" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d tháng trÆ°á»›c" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "1 năm trÆ°á»›c" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 45fdfe6dc..5b2dae110 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,19 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:04:02+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:34+0000\n" "Language-Team: Simplified Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "接å—" @@ -125,7 +126,7 @@ msgstr "%s åŠå¥½å‹" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -180,7 +181,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s åŠå¥½å‹" @@ -208,11 +209,11 @@ msgstr "æ¥è‡ª%2$s 上 %1$s 和好å‹çš„æ›´æ–°ï¼" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "API 方法未实现ï¼" @@ -583,7 +584,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 msgid "Account" msgstr "å¸å·" @@ -675,18 +676,6 @@ msgstr "%s çš„æ”¶è— / %s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "%s 收è—了 %s çš„ %s 通告。" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "%s 时间表" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "%2$s 上 %1$s çš„æ›´æ–°ï¼" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -697,12 +686,12 @@ msgstr "%1$s / å›žå¤ %2$s 的消æ¯" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "å›žå¤ %2$s / %3$s çš„ %1$s 更新。" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "%s 公众时间表" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "æ¥è‡ªæ‰€æœ‰äººçš„ %s 消æ¯ï¼" @@ -959,7 +948,7 @@ msgid "Conversation" msgstr "确认ç " #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "通告" @@ -981,7 +970,7 @@ msgstr "您未告知æ¤ä¸ªäººä¿¡æ¯" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 #, fuzzy msgid "There was a problem with your session token." msgstr "会è¯æ ‡è¯†æœ‰é—®é¢˜ï¼Œè¯·é‡è¯•ã€‚" @@ -1189,8 +1178,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1318,7 +1308,7 @@ msgstr "æ述过长(ä¸èƒ½è¶…过140å—符)。" msgid "Could not update group." msgstr "æ— æ³•æ›´æ–°ç»„" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "æ— æ³•åˆ›å»ºæ”¶è—。" @@ -1444,7 +1434,7 @@ msgid "Cannot normalize that email address" msgstr "æ— æ³•è¯†åˆ«æ¤ç”µå邮件" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "ä¸æ˜¯æœ‰æ•ˆçš„电å邮件。" @@ -1643,6 +1633,25 @@ msgstr "没有这份通告。" msgid "Cannot read file." msgstr "没有这份通告。" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "大å°ä¸æ£ç¡®ã€‚" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "æ— æ³•å‘æ¤ç”¨æˆ·å‘é€æ¶ˆæ¯ã€‚" + +#: actions/grantrole.php:82 +#, fuzzy +msgid "User already has this role." +msgstr "用户没有个人信æ¯ã€‚" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1801,12 +1810,18 @@ msgstr "admin管ç†å‘˜" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "%s 时间表" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "%2$s 上 %1$s çš„æ›´æ–°ï¼" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "组" @@ -2410,8 +2425,8 @@ msgstr "连接" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "ä¸æ”¯æŒçš„æ•°æ®æ ¼å¼ã€‚" @@ -2560,7 +2575,8 @@ msgstr "æ— æ³•ä¿å˜æ–°å¯†ç 。" msgid "Password saved." msgstr "密ç å·²ä¿å˜ã€‚" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2688,7 +2704,7 @@ msgstr "" msgid "SSL" msgstr "SMSçŸä¿¡" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 #, fuzzy msgid "Never" msgstr "æ¢å¤" @@ -2747,11 +2763,11 @@ msgstr "ä¸æ˜¯æœ‰æ•ˆçš„电å邮件" msgid "Users self-tagged with %1$s - page %2$d" msgstr "ç”¨æˆ·è‡ªåŠ æ ‡ç¾ %s - 第 %d 页" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "通告内容ä¸æ£ç¡®" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2829,7 +2845,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "ä½ çš„æ ‡ç¾ (å—æ¯letters, æ•°å—numbers, -, ., å’Œ _), 以逗å·æˆ–ç©ºæ ¼åˆ†éš”" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "è¯è¨€" @@ -2855,7 +2871,7 @@ msgstr "自动订阅任何订阅我的更新的人(这个选项最适åˆæœºå™¨äº msgid "Bio is too long (max %d chars)." msgstr "自述过长(ä¸èƒ½è¶…过140å—符)。" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "未选择时区。" @@ -3163,7 +3179,7 @@ msgid "Same as password above. Required." msgstr "相åŒçš„密ç 。æ¤é¡¹å¿…填。" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "电å邮件" @@ -3264,7 +3280,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "您在其他兼容的微åšå®¢æœåŠ¡çš„个人信æ¯URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "订阅" @@ -3369,6 +3385,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "å‘é€ç»™ %1$s çš„ %2$s 消æ¯" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "æ— æ³•å‘æ¤ç”¨æˆ·å‘é€æ¶ˆæ¯ã€‚" + +#: actions/revokerole.php:82 +#, fuzzy +msgid "User doesn't have this role." +msgstr "找ä¸åˆ°åŒ¹é…的用户。" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3384,7 +3410,9 @@ msgstr "æ— æ³•å‘æ¤ç”¨æˆ·å‘é€æ¶ˆæ¯ã€‚" msgid "User is already sandboxed." msgstr "用户没有个人信æ¯ã€‚" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3408,7 +3436,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3445,8 +3473,8 @@ msgstr "分页" msgid "Description" msgstr "æè¿°" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "统计" @@ -3581,47 +3609,47 @@ msgstr "" msgid "Group actions" msgstr "组动作" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "%s 的通告èšåˆ" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, fuzzy, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "%s 的通告èšåˆ" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, fuzzy, php-format msgid "Notice feed for %s group (Atom)" msgstr "%s 的通告èšåˆ" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, php-format msgid "FOAF for %s group" msgstr "%s çš„å‘件箱" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "注册于" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "(没有)" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "所有æˆå‘˜" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "创建" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3631,7 +3659,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, fuzzy, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3642,7 +3670,7 @@ msgstr "" "**%s** 是一个 %%%%site.name%%%% 的用户组,一个微åšå®¢æœåŠ¡ [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 #, fuzzy msgid "Admins" msgstr "admin管ç†å‘˜" @@ -3758,150 +3786,139 @@ msgid "User is already silenced." msgstr "用户没有个人信æ¯ã€‚" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "ä¸æ˜¯æœ‰æ•ˆçš„电å邮件" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "新通告" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "新的电å邮件地å€ï¼Œç”¨äºŽå‘布 %s ä¿¡æ¯" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "本地显示" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 +#: actions/siteadminpanel.php:262 #, fuzzy -msgid "Default site language" +msgid "Default language" msgstr "首选è¯è¨€" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "新通告" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:67 +#, fuzzy +msgid "Edit site-wide message" +msgstr "新消æ¯" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "æ— æ³•ä¿å˜ Twitter 设置ï¼" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "新通告" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "新通告" #: actions/smssettings.php:58 #, fuzzy @@ -4004,6 +4021,66 @@ msgstr "" msgid "No code entered" msgstr "没有输入验è¯ç " +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "主站导航" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "头åƒè®¾ç½®" + #: actions/subedit.php:70 #, fuzzy msgid "You are not subscribed to that profile." @@ -4214,7 +4291,7 @@ msgstr "æœåŠ¡å™¨æ²¡æœ‰è¿”回个人信æ¯URL。" msgid "Unsubscribed" msgstr "退订" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4421,16 +4498,22 @@ msgstr "%s 组æˆå‘˜, 第 %d 页" msgid "Search for more groups" msgstr "检索人或文å—" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, fuzzy, php-format msgid "%s is not a member of any group." msgstr "您未告知æ¤ä¸ªäººä¿¡æ¯" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "%2$s 上 %1$s çš„æ›´æ–°ï¼" + #: actions/version.php:73 #, fuzzy, php-format msgid "StatusNet %s" @@ -4474,7 +4557,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "个人" @@ -4543,42 +4626,42 @@ msgstr "æ— æ³•æ·»åŠ æ–°URIçš„ä¿¡æ¯ã€‚" msgid "DB error inserting hashtag: %s" msgstr "æ·»åŠ æ ‡ç¾æ—¶æ•°æ®åº“出错:%s" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "ä¿å˜é€šå‘Šæ—¶å‡ºé”™ã€‚" -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "ä¿å˜é€šå‘Šæ—¶å‡ºé”™ã€‚" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "ä½ åœ¨çŸæ—¶é—´é‡Œå‘布了过多的消æ¯ï¼Œè¯·æ·±å‘¼å¸ï¼Œè¿‡å‡ 分钟å†å‘消æ¯ã€‚" -#: classes/Notice.php:254 +#: classes/Notice.php:256 #, fuzzy msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "ä½ åœ¨çŸæ—¶é—´é‡Œå‘布了过多的消æ¯ï¼Œè¯·æ·±å‘¼å¸ï¼Œè¿‡å‡ 分钟å†å‘消æ¯ã€‚" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "åœ¨è¿™ä¸ªç½‘ç«™ä½ è¢«ç¦æ¢å‘布消æ¯ã€‚" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "ä¿å˜é€šå‘Šæ—¶å‡ºé”™ã€‚" -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "ä¿å˜é€šå‘Šæ—¶å‡ºé”™ã€‚" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, fuzzy, php-format msgid "RT @%1$s %2$s" msgstr "%1$s (%2$s)" @@ -4607,7 +4690,12 @@ msgstr "未订阅ï¼" msgid "Couldn't delete self-subscription." msgstr "æ— æ³•åˆ é™¤è®¢é˜…ã€‚" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "æ— æ³•åˆ é™¤è®¢é˜…ã€‚" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "æ— æ³•åˆ é™¤è®¢é˜…ã€‚" @@ -4616,21 +4704,21 @@ msgstr "æ— æ³•åˆ é™¤è®¢é˜…ã€‚" msgid "Welcome to %1$s, @%2$s!" msgstr "å‘é€ç»™ %1$s çš„ %2$s 消æ¯" -#: classes/User_group.php:462 +#: classes/User_group.php:477 msgid "Could not create group." msgstr "æ— æ³•åˆ›å»ºç»„ã€‚" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "æ— æ³•åˆ é™¤è®¢é˜…ã€‚" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "æ— æ³•åˆ é™¤è®¢é˜…ã€‚" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "æ— æ³•åˆ é™¤è®¢é˜…ã€‚" @@ -4673,198 +4761,192 @@ msgstr "%1$s (%2$s)" msgid "Untitled page" msgstr "æ— æ ‡é¢˜é¡µ" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "主站导航" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 #, fuzzy msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "个人资料åŠæœ‹å‹å¹´è¡¨" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "个人" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "修改资料" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "å¸å·" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "æ— æ³•é‡å®šå‘到æœåŠ¡å™¨ï¼š%s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "连接" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "主站导航" -#: lib/action.php:460 +#: lib/action.php:449 #, fuzzy msgctxt "MENU" msgid "Admin" msgstr "admin管ç†å‘˜" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, fuzzy, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表å•æ¥é‚€è¯·å¥½å‹å’ŒåŒäº‹åŠ 入。" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "邀请" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 #, fuzzy msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "创建新å¸å·" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "注册" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 #, fuzzy msgctxt "TOOLTIP" msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "登录" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "帮助" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "帮助" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 #, fuzzy msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "检索人或文å—" -#: lib/action.php:502 +#: lib/action.php:491 #, fuzzy msgctxt "MENU" msgid "Search" msgstr "æœç´¢" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "本地显示" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:758 +#: lib/action.php:747 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "帮助" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "关于" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "常è§é—®é¢˜FAQ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "éšç§" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "æ¥æº" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "è”系人" -#: lib/action.php:782 +#: lib/action.php:771 #, fuzzy msgid "Badge" msgstr "呼å«" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "StatusNet软件注册è¯" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4873,12 +4955,12 @@ msgstr "" "**%%site.name%%** 是一个微åšå®¢æœåŠ¡ï¼Œæ供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 是一个微åšå®¢æœåŠ¡ã€‚" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4889,56 +4971,56 @@ msgstr "" "General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" "授æƒã€‚" -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "StatusNet软件注册è¯" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "全部" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "注册è¯" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "分页" -#: lib/action.php:1172 +#: lib/action.php:1161 #, fuzzy msgid "After" msgstr "« 之åŽ" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "ä¹‹å‰ Â»" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4955,99 +5037,89 @@ msgid "Changes to that panel are not allowed." msgstr "ä¸å…许注册。" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 #, fuzzy msgid "showForm() not implemented." msgstr "命令尚未实现。" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 #, fuzzy msgid "saveSettings() not implemented." msgstr "命令尚未实现。" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 #, fuzzy msgid "Unable to delete design setting." msgstr "æ— æ³•ä¿å˜ Twitter 设置ï¼" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "电å邮件地å€ç¡®è®¤" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "邀请" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "SMSçŸä¿¡ç¡®è®¤" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "个人" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "SMSçŸä¿¡ç¡®è®¤" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -#, fuzzy -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "用户" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "SMSçŸä¿¡ç¡®è®¤" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "接å—" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "SMSçŸä¿¡ç¡®è®¤" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "SMSçŸä¿¡ç¡®è®¤" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "个人" +msgid "Edit site notice" +msgstr "新通告" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "SMSçŸä¿¡ç¡®è®¤" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5551,6 +5623,11 @@ msgstr "é€‰æ‹©æ ‡ç¾ç¼©å°æ¸…å•" msgid "Go" msgstr "执行" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 #, fuzzy msgid "URL of the homepage or blog of the group or topic" @@ -6114,10 +6191,6 @@ msgstr "回å¤" msgid "Favorites" msgstr "收è—夹" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "用户" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "收件箱" @@ -6144,7 +6217,7 @@ msgstr "%s's 的消æ¯çš„æ ‡ç¾" msgid "Unknown" msgstr "未知动作" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "订阅" @@ -6152,25 +6225,25 @@ msgstr "订阅" msgid "All subscriptions" msgstr "所有订阅" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "订阅者" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "订阅者" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 #, fuzzy msgid "User ID" msgstr "用户" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "用户始于" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "所有组" @@ -6215,7 +6288,12 @@ msgstr "æ— æ³•åˆ é™¤é€šå‘Šã€‚" msgid "Repeat this notice" msgstr "æ— æ³•åˆ é™¤é€šå‘Šã€‚" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "该组æˆå‘˜åˆ—表。" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6386,47 +6464,63 @@ msgstr "新消æ¯" msgid "Moderate" msgstr "" -#: lib/util.php:1013 +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "用户没有个人信æ¯ã€‚" + +#: lib/userprofile.php:354 +#, fuzzy +msgctxt "role" +msgid "Administrator" +msgstr "admin管ç†å‘˜" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" +msgstr "" + +#: lib/util.php:1015 msgid "a few seconds ago" msgstr "å‡ ç§’å‰" -#: lib/util.php:1015 +#: lib/util.php:1017 msgid "about a minute ago" msgstr "一分钟å‰" -#: lib/util.php:1017 +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "%d 分钟å‰" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "一å°æ—¶å‰" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "%d å°æ—¶å‰" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "一天å‰" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "%d 天å‰" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "一个月å‰" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "%d 个月å‰" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "一年å‰" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index 5cca450ca..e7314d5e6 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -7,19 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-02 21:02+0000\n" -"PO-Revision-Date: 2010-03-02 21:04:05+0000\n" +"POT-Creation-Date: 2010-03-04 18:55+0000\n" +"PO-Revision-Date: 2010-03-04 18:57:37+0000\n" "Language-Team: Traditional Chinese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r63186); Translate extension (2010-01-16)\n" +"X-Generator: MediaWiki 1.17alpha (r63249); Translate extension (2010-01-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" "Plural-Forms: nplurals=1; plural=0;\n" #. TRANS: Page title -#: actions/accessadminpanel.php:55 +#. TRANS: Menu item for site administration +#: actions/accessadminpanel.php:55 lib/adminpanelaction.php:374 #, fuzzy msgid "Access" msgstr "接å—" @@ -120,7 +121,7 @@ msgstr "%s與好å‹" #. TRANS: Page title. %1$s is user nickname #. TRANS: H1 text. %1$s is user nickname -#: actions/all.php:89 actions/all.php:177 actions/allrss.php:115 +#: actions/all.php:89 actions/all.php:181 actions/allrss.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: lib/personalgroupnav.php:100 #, php-format @@ -175,7 +176,7 @@ msgid "" msgstr "" #. TRANS: H1 text -#: actions/all.php:174 +#: actions/all.php:178 #, fuzzy msgid "You and friends" msgstr "%s與好å‹" @@ -203,11 +204,11 @@ msgstr "" #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:135 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 -#: actions/apitimelinegroup.php:185 actions/apitimelinehome.php:184 -#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 +#: actions/apitimelinegroup.php:160 actions/apitimelinehome.php:184 +#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:148 #: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 -#: actions/apitimelineuser.php:196 actions/apiusershow.php:101 +#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #, fuzzy msgid "API method not found." msgstr "確èªç¢¼éºå¤±" @@ -574,7 +575,7 @@ msgid "" "give access to your %4$s account to third parties you trust." msgstr "" -#: actions/apioauthauthorize.php:310 +#: actions/apioauthauthorize.php:310 lib/action.php:438 #, fuzzy msgid "Account" msgstr "關於" @@ -665,18 +666,6 @@ msgstr "%1$s的狀態是%2$s" msgid "%1$s updates favorited by %2$s / %2$s." msgstr "&s的微型部è½æ ¼" -#: actions/apitimelinegroup.php:109 actions/apitimelineuser.php:118 -#: actions/grouprss.php:138 actions/userrss.php:90 -#, php-format -msgid "%s timeline" -msgstr "" - -#: actions/apitimelinegroup.php:112 actions/apitimelineuser.php:124 -#: actions/userrss.php:92 -#, php-format -msgid "Updates from %1$s on %2$s!" -msgstr "" - #: actions/apitimelinementions.php:117 #, fuzzy, php-format msgid "%1$s / Updates mentioning %2$s" @@ -687,12 +676,12 @@ msgstr "%1$s的狀態是%2$s" msgid "%1$s updates that reply to updates from %2$s / %3$s." msgstr "" -#: actions/apitimelinepublic.php:111 actions/publicrss.php:103 +#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #, php-format msgid "%s public timeline" msgstr "" -#: actions/apitimelinepublic.php:115 actions/publicrss.php:105 +#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #, php-format msgid "%s updates from everyone!" msgstr "" @@ -948,7 +937,7 @@ msgid "Conversation" msgstr "地點" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 -#: lib/profileaction.php:216 lib/searchgroupnav.php:82 +#: lib/profileaction.php:218 lib/searchgroupnav.php:82 msgid "Notices" msgstr "" @@ -970,7 +959,7 @@ msgstr "無法連çµåˆ°ä¼ºæœå™¨:%s" #: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/newapplication.php:110 actions/showapplication.php:118 -#: lib/action.php:1228 +#: lib/action.php:1217 msgid "There was a problem with your session token." msgstr "" @@ -1172,8 +1161,9 @@ msgstr "" #: actions/designadminpanel.php:586 actions/emailsettings.php:195 #: actions/imsettings.php:163 actions/othersettings.php:126 #: actions/pathsadminpanel.php:351 actions/profilesettings.php:174 -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 -#: actions/smssettings.php:181 actions/subscriptions.php:208 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 +#: actions/sitenoticeadminpanel.php:195 actions/smssettings.php:181 +#: actions/snapshotadminpanel.php:245 actions/subscriptions.php:208 #: actions/tagother.php:154 actions/useradminpanel.php:294 #: lib/applicationeditform.php:333 lib/applicationeditform.php:334 #: lib/designsettings.php:256 lib/groupeditform.php:202 @@ -1298,7 +1288,7 @@ msgstr "自我介紹éŽé•·(å…±140個å—å…ƒ)" msgid "Could not update group." msgstr "無法更新使用者" -#: actions/editgroup.php:264 classes/User_group.php:478 +#: actions/editgroup.php:264 classes/User_group.php:493 #, fuzzy msgid "Could not create aliases." msgstr "無法å˜å–個人圖åƒè³‡æ–™" @@ -1421,7 +1411,7 @@ msgid "Cannot normalize that email address" msgstr "" #: actions/emailsettings.php:331 actions/register.php:201 -#: actions/siteadminpanel.php:143 +#: actions/siteadminpanel.php:144 msgid "Not a valid email address." msgstr "æ¤ä¿¡ç®±ç„¡æ•ˆ" @@ -1613,6 +1603,24 @@ msgstr "ç„¡æ¤é€šçŸ¥" msgid "Cannot read file." msgstr "ç„¡æ¤é€šçŸ¥" +#: actions/grantrole.php:62 actions/revokerole.php:62 +#, fuzzy +msgid "Invalid role." +msgstr "尺寸錯誤" + +#: actions/grantrole.php:66 actions/revokerole.php:66 +msgid "This role is reserved and cannot be set." +msgstr "" + +#: actions/grantrole.php:75 +#, fuzzy +msgid "You cannot grant user roles on this site." +msgstr "無法連çµåˆ°ä¼ºæœå™¨:%s" + +#: actions/grantrole.php:82 +msgid "User already has this role." +msgstr "" + #: actions/groupblock.php:71 actions/groupunblock.php:71 #: actions/makeadmin.php:71 actions/subedit.php:46 #: lib/profileformaction.php:70 @@ -1760,12 +1768,18 @@ msgstr "" msgid "Make this user an admin" msgstr "" +#: actions/grouprss.php:138 actions/userrss.php:90 +#: lib/atomgroupnoticefeed.php:61 lib/atomusernoticefeed.php:67 +#, php-format +msgid "%s timeline" +msgstr "" + #: actions/grouprss.php:140 #, fuzzy, php-format msgid "Updates from members of %1$s on %2$s!" msgstr "&s的微型部è½æ ¼" -#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230 +#: actions/groups.php:62 lib/profileaction.php:212 lib/profileaction.php:232 #: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98 msgid "Groups" msgstr "" @@ -2328,8 +2342,8 @@ msgstr "連çµ" msgid "Only " msgstr "" -#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1040 -#: lib/apiaction.php:1068 lib/apiaction.php:1177 +#: actions/oembed.php:181 actions/oembed.php:200 lib/apiaction.php:1042 +#: lib/apiaction.php:1070 lib/apiaction.php:1179 msgid "Not a supported data format." msgstr "" @@ -2475,7 +2489,8 @@ msgstr "無法å˜å–新密碼" msgid "Password saved." msgstr "" -#: actions/pathsadminpanel.php:59 +#. TRANS: Menu item for site administration +#: actions/pathsadminpanel.php:59 lib/adminpanelaction.php:382 msgid "Paths" msgstr "" @@ -2600,7 +2615,7 @@ msgstr "" msgid "SSL" msgstr "" -#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 +#: actions/pathsadminpanel.php:323 actions/snapshotadminpanel.php:202 msgid "Never" msgstr "" @@ -2655,11 +2670,11 @@ msgstr "æ¤ä¿¡ç®±ç„¡æ•ˆ" msgid "Users self-tagged with %1$s - page %2$d" msgstr "&s的微型部è½æ ¼" -#: actions/postnotice.php:84 +#: actions/postnotice.php:95 msgid "Invalid notice content" msgstr "" -#: actions/postnotice.php:90 +#: actions/postnotice.php:101 #, php-format msgid "Notice license ‘%1$s’ is not compatible with site license ‘%2$s’." msgstr "" @@ -2736,7 +2751,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 +#: actions/profilesettings.php:151 msgid "Language" msgstr "" @@ -2762,7 +2777,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "自我介紹éŽé•·(å…±140個å—å…ƒ)" -#: actions/profilesettings.php:235 actions/siteadminpanel.php:150 +#: actions/profilesettings.php:235 actions/siteadminpanel.php:151 msgid "Timezone not selected." msgstr "" @@ -3064,7 +3079,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:438 actions/register.php:442 -#: actions/siteadminpanel.php:256 lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:120 msgid "Email" msgstr "é›»åä¿¡ç®±" @@ -3149,7 +3164,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:368 +#: lib/userprofile.php:394 msgid "Subscribe" msgstr "" @@ -3250,6 +3265,15 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "&s的微型部è½æ ¼" +#: actions/revokerole.php:75 +#, fuzzy +msgid "You cannot revoke user roles on this site." +msgstr "無法連çµåˆ°ä¼ºæœå™¨:%s" + +#: actions/revokerole.php:82 +msgid "User doesn't have this role." +msgstr "" + #: actions/rsd.php:146 actions/version.php:157 #, fuzzy msgid "StatusNet" @@ -3264,7 +3288,9 @@ msgstr "無法連çµåˆ°ä¼ºæœå™¨:%s" msgid "User is already sandboxed." msgstr "" +#. TRANS: Menu item for site administration #: actions/sessionsadminpanel.php:54 actions/sessionsadminpanel.php:170 +#: lib/adminpanelaction.php:390 msgid "Sessions" msgstr "" @@ -3288,7 +3314,7 @@ msgstr "" msgid "Turn on debugging output for sessions." msgstr "" -#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:336 +#: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 #: actions/useradminpanel.php:294 #, fuzzy msgid "Save site settings" @@ -3323,8 +3349,8 @@ msgstr "地點" msgid "Description" msgstr "所有訂閱" -#: actions/showapplication.php:192 actions/showgroup.php:437 -#: lib/profileaction.php:174 +#: actions/showapplication.php:192 actions/showgroup.php:438 +#: lib/profileaction.php:176 msgid "Statistics" msgstr "" @@ -3457,47 +3483,47 @@ msgstr "" msgid "Group actions" msgstr "" -#: actions/showgroup.php:336 +#: actions/showgroup.php:337 #, php-format msgid "Notice feed for %s group (RSS 1.0)" msgstr "" -#: actions/showgroup.php:342 +#: actions/showgroup.php:343 #, php-format msgid "Notice feed for %s group (RSS 2.0)" msgstr "" -#: actions/showgroup.php:348 +#: actions/showgroup.php:349 #, php-format msgid "Notice feed for %s group (Atom)" msgstr "" -#: actions/showgroup.php:353 +#: actions/showgroup.php:354 #, fuzzy, php-format msgid "FOAF for %s group" msgstr "ç„¡æ¤é€šçŸ¥" -#: actions/showgroup.php:389 actions/showgroup.php:446 lib/groupnav.php:91 +#: actions/showgroup.php:390 actions/showgroup.php:447 lib/groupnav.php:91 #, fuzzy msgid "Members" msgstr "ä½•æ™‚åŠ å…¥æœƒå“¡çš„å‘¢ï¼Ÿ" -#: actions/showgroup.php:394 lib/profileaction.php:117 -#: lib/profileaction.php:148 lib/profileaction.php:236 lib/section.php:95 +#: actions/showgroup.php:395 lib/profileaction.php:117 +#: lib/profileaction.php:150 lib/profileaction.php:238 lib/section.php:95 #: lib/subscriptionlist.php:126 lib/tagcloudsection.php:71 msgid "(None)" msgstr "" -#: actions/showgroup.php:400 +#: actions/showgroup.php:401 msgid "All members" msgstr "" -#: actions/showgroup.php:440 +#: actions/showgroup.php:441 #, fuzzy msgid "Created" msgstr "新增" -#: actions/showgroup.php:456 +#: actions/showgroup.php:457 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3507,7 +3533,7 @@ msgid "" "of this group and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showgroup.php:462 +#: actions/showgroup.php:463 #, php-format msgid "" "**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3516,7 +3542,7 @@ msgid "" "their life and interests. " msgstr "" -#: actions/showgroup.php:490 +#: actions/showgroup.php:491 msgid "Admins" msgstr "" @@ -3627,149 +3653,137 @@ msgid "User is already silenced." msgstr "" #: actions/siteadminpanel.php:69 -msgid "Basic settings for this StatusNet site." +msgid "Basic settings for this StatusNet site" msgstr "" -#: actions/siteadminpanel.php:132 +#: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." msgstr "" -#: actions/siteadminpanel.php:140 +#: actions/siteadminpanel.php:141 #, fuzzy msgid "You must have a valid contact email address." msgstr "æ¤ä¿¡ç®±ç„¡æ•ˆ" -#: actions/siteadminpanel.php:158 +#: actions/siteadminpanel.php:159 #, php-format msgid "Unknown language \"%s\"." msgstr "" #: actions/siteadminpanel.php:165 -msgid "Invalid snapshot report URL." -msgstr "" - -#: actions/siteadminpanel.php:171 -msgid "Invalid snapshot run value." -msgstr "" - -#: actions/siteadminpanel.php:177 -msgid "Snapshot frequency must be a number." -msgstr "" - -#: actions/siteadminpanel.php:183 msgid "Minimum text limit is 140 characters." msgstr "" -#: actions/siteadminpanel.php:189 +#: actions/siteadminpanel.php:171 msgid "Dupe limit must 1 or more seconds." msgstr "" -#: actions/siteadminpanel.php:239 +#: actions/siteadminpanel.php:221 msgid "General" msgstr "" -#: actions/siteadminpanel.php:242 +#: actions/siteadminpanel.php:224 #, fuzzy msgid "Site name" msgstr "新訊æ¯" -#: actions/siteadminpanel.php:243 +#: actions/siteadminpanel.php:225 msgid "The name of your site, like \"Yourcompany Microblog\"" msgstr "" -#: actions/siteadminpanel.php:247 +#: actions/siteadminpanel.php:229 msgid "Brought by" msgstr "" -#: actions/siteadminpanel.php:248 +#: actions/siteadminpanel.php:230 msgid "Text used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:252 +#: actions/siteadminpanel.php:234 msgid "Brought by URL" msgstr "" -#: actions/siteadminpanel.php:253 +#: actions/siteadminpanel.php:235 msgid "URL used for credits link in footer of each page" msgstr "" -#: actions/siteadminpanel.php:257 +#: actions/siteadminpanel.php:239 #, fuzzy msgid "Contact email address for your site" msgstr "查無æ¤ä½¿ç”¨è€…所註冊的信箱" -#: actions/siteadminpanel.php:263 +#: actions/siteadminpanel.php:245 #, fuzzy msgid "Local" msgstr "地點" -#: actions/siteadminpanel.php:274 +#: actions/siteadminpanel.php:256 msgid "Default timezone" msgstr "" -#: actions/siteadminpanel.php:275 +#: actions/siteadminpanel.php:257 msgid "Default timezone for the site; usually UTC." msgstr "" -#: actions/siteadminpanel.php:281 -msgid "Default site language" +#: actions/siteadminpanel.php:262 +msgid "Default language" msgstr "" -#: actions/siteadminpanel.php:289 -msgid "Snapshots" -msgstr "" - -#: actions/siteadminpanel.php:292 -msgid "Randomly during Web hit" +#: actions/siteadminpanel.php:263 +msgid "Site language when autodetection from browser settings is not available" msgstr "" -#: actions/siteadminpanel.php:293 -msgid "In a scheduled job" +#: actions/siteadminpanel.php:271 +msgid "Limits" msgstr "" -#: actions/siteadminpanel.php:295 -msgid "Data snapshots" +#: actions/siteadminpanel.php:274 +msgid "Text limit" msgstr "" -#: actions/siteadminpanel.php:296 -msgid "When to send statistical data to status.net servers" +#: actions/siteadminpanel.php:274 +msgid "Maximum number of characters for notices." msgstr "" -#: actions/siteadminpanel.php:301 -msgid "Frequency" +#: actions/siteadminpanel.php:278 +msgid "Dupe limit" msgstr "" -#: actions/siteadminpanel.php:302 -msgid "Snapshots will be sent once every N web hits" +#: actions/siteadminpanel.php:278 +msgid "How long users must wait (in seconds) to post the same thing again." msgstr "" -#: actions/siteadminpanel.php:307 -msgid "Report URL" -msgstr "" +#: actions/sitenoticeadminpanel.php:56 +#, fuzzy +msgid "Site Notice" +msgstr "新訊æ¯" -#: actions/siteadminpanel.php:308 -msgid "Snapshots will be sent to this URL" +#: actions/sitenoticeadminpanel.php:67 +msgid "Edit site-wide message" msgstr "" -#: actions/siteadminpanel.php:315 -msgid "Limits" -msgstr "" +#: actions/sitenoticeadminpanel.php:103 +#, fuzzy +msgid "Unable to save site notice." +msgstr "新訊æ¯" -#: actions/siteadminpanel.php:318 -msgid "Text limit" +#: actions/sitenoticeadminpanel.php:113 +msgid "Max length for the site-wide notice is 255 chars" msgstr "" -#: actions/siteadminpanel.php:318 -msgid "Maximum number of characters for notices." -msgstr "" +#: actions/sitenoticeadminpanel.php:176 +#, fuzzy +msgid "Site notice text" +msgstr "新訊æ¯" -#: actions/siteadminpanel.php:322 -msgid "Dupe limit" +#: actions/sitenoticeadminpanel.php:178 +msgid "Site-wide notice text (255 chars max; HTML okay)" msgstr "" -#: actions/siteadminpanel.php:322 -msgid "How long users must wait (in seconds) to post the same thing again." -msgstr "" +#: actions/sitenoticeadminpanel.php:198 +#, fuzzy +msgid "Save site notice" +msgstr "新訊æ¯" #: actions/smssettings.php:58 #, fuzzy @@ -3866,6 +3880,66 @@ msgstr "" msgid "No code entered" msgstr "" +#. TRANS: Menu item for site administration +#: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 +#: lib/adminpanelaction.php:406 +msgid "Snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:65 +#, fuzzy +msgid "Manage snapshot configuration" +msgstr "確èªä¿¡ç®±" + +#: actions/snapshotadminpanel.php:127 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/snapshotadminpanel.php:133 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/snapshotadminpanel.php:144 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/snapshotadminpanel.php:200 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/snapshotadminpanel.php:201 +msgid "In a scheduled job" +msgstr "" + +#: actions/snapshotadminpanel.php:206 +msgid "Data snapshots" +msgstr "" + +#: actions/snapshotadminpanel.php:208 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/snapshotadminpanel.php:217 +msgid "Frequency" +msgstr "" + +#: actions/snapshotadminpanel.php:218 +msgid "Snapshots will be sent once every N web hits" +msgstr "" + +#: actions/snapshotadminpanel.php:226 +msgid "Report URL" +msgstr "" + +#: actions/snapshotadminpanel.php:227 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/snapshotadminpanel.php:248 +#, fuzzy +msgid "Save snapshot settings" +msgstr "線上å³æ™‚通è¨å®š" + #: actions/subedit.php:70 msgid "You are not subscribed to that profile." msgstr "" @@ -4070,7 +4144,7 @@ msgstr "無確èªè«‹æ±‚" msgid "Unsubscribed" msgstr "æ¤å¸³è™Ÿå·²è¨»å†Š" -#: actions/updateprofile.php:62 actions/userauthorization.php:337 +#: actions/updateprofile.php:64 actions/userauthorization.php:337 #, php-format msgid "" "Listenee stream license ‘%1$s’ is not compatible with site license ‘%2$s’." @@ -4263,16 +4337,22 @@ msgstr "所有訂閱" msgid "Search for more groups" msgstr "" -#: actions/usergroups.php:153 +#: actions/usergroups.php:157 #, php-format msgid "%s is not a member of any group." msgstr "" -#: actions/usergroups.php:158 +#: actions/usergroups.php:162 #, php-format msgid "Try [searching for groups](%%action.groupsearch%%) and joining them." msgstr "" +#: actions/userrss.php:92 lib/atomgroupnoticefeed.php:66 +#: lib/atomusernoticefeed.php:72 +#, php-format +msgid "Updates from %1$s on %2$s!" +msgstr "" + #: actions/version.php:73 #, php-format msgid "StatusNet %s" @@ -4316,7 +4396,7 @@ msgstr "" msgid "Plugins" msgstr "" -#: actions/version.php:196 lib/action.php:778 +#: actions/version.php:196 lib/action.php:767 #, fuzzy msgid "Version" msgstr "地點" @@ -4384,41 +4464,41 @@ msgstr "" msgid "DB error inserting hashtag: %s" msgstr "" -#: classes/Notice.php:239 +#: classes/Notice.php:241 #, fuzzy msgid "Problem saving notice. Too long." msgstr "儲å˜ä½¿ç”¨è€…發生錯誤" -#: classes/Notice.php:243 +#: classes/Notice.php:245 #, fuzzy msgid "Problem saving notice. Unknown user." msgstr "儲å˜ä½¿ç”¨è€…發生錯誤" -#: classes/Notice.php:248 +#: classes/Notice.php:250 msgid "" "Too many notices too fast; take a breather and post again in a few minutes." msgstr "" -#: classes/Notice.php:254 +#: classes/Notice.php:256 msgid "" "Too many duplicate messages too quickly; take a breather and post again in a " "few minutes." msgstr "" -#: classes/Notice.php:260 +#: classes/Notice.php:262 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:326 classes/Notice.php:352 +#: classes/Notice.php:328 classes/Notice.php:354 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:911 +#: classes/Notice.php:927 #, fuzzy msgid "Problem saving group inbox." msgstr "儲å˜ä½¿ç”¨è€…發生錯誤" -#: classes/Notice.php:1442 +#: classes/Notice.php:1459 #, php-format msgid "RT @%1$s %2$s" msgstr "" @@ -4445,7 +4525,12 @@ msgstr "æ¤å¸³è™Ÿå·²è¨»å†Š" msgid "Couldn't delete self-subscription." msgstr "無法刪除帳號" -#: classes/Subscription.php:179 lib/subs.php:69 +#: classes/Subscription.php:190 +#, fuzzy +msgid "Couldn't delete subscription OMB token." +msgstr "無法刪除帳號" + +#: classes/Subscription.php:201 lib/subs.php:69 msgid "Couldn't delete subscription." msgstr "無法刪除帳號" @@ -4454,22 +4539,22 @@ msgstr "無法刪除帳號" msgid "Welcome to %1$s, @%2$s!" msgstr "" -#: classes/User_group.php:462 +#: classes/User_group.php:477 #, fuzzy msgid "Could not create group." msgstr "無法å˜å–個人圖åƒè³‡æ–™" -#: classes/User_group.php:471 +#: classes/User_group.php:486 #, fuzzy msgid "Could not set group URI." msgstr "註冊失敗" -#: classes/User_group.php:492 +#: classes/User_group.php:507 #, fuzzy msgid "Could not set group membership." msgstr "註冊失敗" -#: classes/User_group.php:506 +#: classes/User_group.php:521 #, fuzzy msgid "Could not save local group info." msgstr "註冊失敗" @@ -4513,190 +4598,184 @@ msgstr "%1$s的狀態是%2$s" msgid "Untitled page" msgstr "" -#: lib/action.php:433 +#: lib/action.php:424 msgid "Primary site navigation" msgstr "" #. TRANS: Tooltip for main menu option "Personal" -#: lib/action.php:439 +#: lib/action.php:430 msgctxt "TOOLTIP" msgid "Personal profile and friends timeline" msgstr "" -#: lib/action.php:442 +#: lib/action.php:433 #, fuzzy msgctxt "MENU" msgid "Personal" msgstr "地點" #. TRANS: Tooltip for main menu option "Account" -#: lib/action.php:444 +#: lib/action.php:435 #, fuzzy msgctxt "TOOLTIP" msgid "Change your email, avatar, password, profile" msgstr "更改密碼" -#: lib/action.php:447 -#, fuzzy -msgctxt "MENU" -msgid "Account" -msgstr "關於" - #. TRANS: Tooltip for main menu option "Services" -#: lib/action.php:450 +#: lib/action.php:440 #, fuzzy msgctxt "TOOLTIP" msgid "Connect to services" msgstr "無法連çµåˆ°ä¼ºæœå™¨:%s" -#: lib/action.php:453 +#: lib/action.php:443 #, fuzzy -msgctxt "MENU" msgid "Connect" msgstr "連çµ" #. TRANS: Tooltip for menu option "Admin" -#: lib/action.php:457 +#: lib/action.php:446 #, fuzzy msgctxt "TOOLTIP" msgid "Change site configuration" msgstr "確èªä¿¡ç®±" -#: lib/action.php:460 +#: lib/action.php:449 msgctxt "MENU" msgid "Admin" msgstr "" #. TRANS: Tooltip for main menu option "Invite" -#: lib/action.php:464 +#: lib/action.php:453 #, php-format msgctxt "TOOLTIP" msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:467 +#: lib/action.php:456 #, fuzzy msgctxt "MENU" msgid "Invite" msgstr "尺寸錯誤" #. TRANS: Tooltip for main menu option "Logout" -#: lib/action.php:473 +#: lib/action.php:462 msgctxt "TOOLTIP" msgid "Logout from the site" msgstr "" -#: lib/action.php:476 +#: lib/action.php:465 #, fuzzy msgctxt "MENU" msgid "Logout" msgstr "登出" #. TRANS: Tooltip for main menu option "Register" -#: lib/action.php:481 +#: lib/action.php:470 #, fuzzy msgctxt "TOOLTIP" msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:484 +#: lib/action.php:473 #, fuzzy msgctxt "MENU" msgid "Register" msgstr "所有訂閱" #. TRANS: Tooltip for main menu option "Login" -#: lib/action.php:487 +#: lib/action.php:476 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" -#: lib/action.php:490 +#: lib/action.php:479 #, fuzzy msgctxt "MENU" msgid "Login" msgstr "登入" #. TRANS: Tooltip for main menu option "Help" -#: lib/action.php:493 +#: lib/action.php:482 #, fuzzy msgctxt "TOOLTIP" msgid "Help me!" msgstr "求救" -#: lib/action.php:496 +#: lib/action.php:485 #, fuzzy msgctxt "MENU" msgid "Help" msgstr "求救" #. TRANS: Tooltip for main menu option "Search" -#: lib/action.php:499 +#: lib/action.php:488 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" -#: lib/action.php:502 +#: lib/action.php:491 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: DT element for site notice. String is hidden in default CSS. -#: lib/action.php:524 +#. TRANS: Menu item for site administration +#: lib/action.php:513 lib/adminpanelaction.php:398 #, fuzzy msgid "Site notice" msgstr "新訊æ¯" -#: lib/action.php:590 +#: lib/action.php:579 msgid "Local views" msgstr "" -#: lib/action.php:656 +#: lib/action.php:645 #, fuzzy msgid "Page notice" msgstr "新訊æ¯" -#: lib/action.php:758 +#: lib/action.php:747 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:763 +#: lib/action.php:752 msgid "Help" msgstr "求救" -#: lib/action.php:765 +#: lib/action.php:754 msgid "About" msgstr "關於" -#: lib/action.php:767 +#: lib/action.php:756 msgid "FAQ" msgstr "常見å•é¡Œ" -#: lib/action.php:771 +#: lib/action.php:760 msgid "TOS" msgstr "" -#: lib/action.php:774 +#: lib/action.php:763 msgid "Privacy" msgstr "" -#: lib/action.php:776 +#: lib/action.php:765 msgid "Source" msgstr "" -#: lib/action.php:780 +#: lib/action.php:769 msgid "Contact" msgstr "好å‹åå–®" -#: lib/action.php:782 +#: lib/action.php:771 msgid "Badge" msgstr "" -#: lib/action.php:810 +#: lib/action.php:799 msgid "StatusNet software license" msgstr "" -#: lib/action.php:813 +#: lib/action.php:802 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -4705,12 +4784,12 @@ msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所æ供的微型" "部è½æ ¼æœå‹™" -#: lib/action.php:815 +#: lib/action.php:804 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%**是個微型部è½æ ¼" -#: lib/action.php:817 +#: lib/action.php:806 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -4718,55 +4797,55 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:832 +#: lib/action.php:821 #, fuzzy msgid "Site content license" msgstr "新訊æ¯" -#: lib/action.php:837 +#: lib/action.php:826 #, php-format msgid "Content and data of %1$s are private and confidential." msgstr "" -#: lib/action.php:842 +#: lib/action.php:831 #, php-format msgid "Content and data copyright by %1$s. All rights reserved." msgstr "" -#: lib/action.php:845 +#: lib/action.php:834 msgid "Content and data copyright by contributors. All rights reserved." msgstr "" -#: lib/action.php:858 +#: lib/action.php:847 msgid "All " msgstr "" -#: lib/action.php:864 +#: lib/action.php:853 msgid "license." msgstr "" -#: lib/action.php:1163 +#: lib/action.php:1152 msgid "Pagination" msgstr "" -#: lib/action.php:1172 +#: lib/action.php:1161 msgid "After" msgstr "" -#: lib/action.php:1180 +#: lib/action.php:1169 #, fuzzy msgid "Before" msgstr "之å‰çš„內容»" -#: lib/activity.php:449 +#: lib/activity.php:453 msgid "Can't handle remote content yet." msgstr "" -#: lib/activity.php:477 +#: lib/activity.php:481 msgid "Can't handle embedded XML content yet." msgstr "" -#: lib/activity.php:481 +#: lib/activity.php:485 msgid "Can't handle embedded Base64 content yet." msgstr "" @@ -4781,95 +4860,86 @@ msgid "Changes to that panel are not allowed." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:211 +#: lib/adminpanelaction.php:229 msgid "showForm() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:241 +#: lib/adminpanelaction.php:259 msgid "saveSettings() not implemented." msgstr "" #. TRANS: Client error message -#: lib/adminpanelaction.php:265 +#: lib/adminpanelaction.php:283 msgid "Unable to delete design setting." msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:330 +#: lib/adminpanelaction.php:348 #, fuzzy msgid "Basic site configuration" msgstr "確èªä¿¡ç®±" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:332 +#: lib/adminpanelaction.php:350 #, fuzzy msgctxt "MENU" msgid "Site" msgstr "新訊æ¯" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:338 +#: lib/adminpanelaction.php:356 #, fuzzy msgid "Design configuration" msgstr "確èªä¿¡ç®±" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:340 +#: lib/adminpanelaction.php:358 #, fuzzy msgctxt "MENU" msgid "Design" msgstr "地點" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:346 +#: lib/adminpanelaction.php:364 #, fuzzy msgid "User configuration" msgstr "確èªä¿¡ç®±" #. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:348 -msgctxt "MENU" +#: lib/adminpanelaction.php:366 lib/personalgroupnav.php:115 msgid "User" msgstr "" #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:354 +#: lib/adminpanelaction.php:372 #, fuzzy msgid "Access configuration" msgstr "確èªä¿¡ç®±" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:356 -#, fuzzy -msgctxt "MENU" -msgid "Access" -msgstr "接å—" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:362 +#: lib/adminpanelaction.php:380 #, fuzzy msgid "Paths configuration" msgstr "確èªä¿¡ç®±" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:364 -msgctxt "MENU" -msgid "Paths" -msgstr "" - #. TRANS: Menu item title/tooltip -#: lib/adminpanelaction.php:370 +#: lib/adminpanelaction.php:388 #, fuzzy msgid "Sessions configuration" msgstr "確èªä¿¡ç®±" -#. TRANS: Menu item for site administration -#: lib/adminpanelaction.php:372 +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:396 #, fuzzy -msgctxt "MENU" -msgid "Sessions" -msgstr "地點" +msgid "Edit site notice" +msgstr "新訊æ¯" + +#. TRANS: Menu item title/tooltip +#: lib/adminpanelaction.php:404 +#, fuzzy +msgid "Snapshots configuration" +msgstr "確èªä¿¡ç®±" #: lib/apiauth.php:94 msgid "API resource requires read-write access, but you only have read access." @@ -5361,6 +5431,11 @@ msgstr "" msgid "Go" msgstr "" +#: lib/grantroleform.php:91 +#, php-format +msgid "Grant this user the \"%s\" role" +msgstr "" + #: lib/groupeditform.php:163 msgid "URL of the homepage or blog of the group or topic" msgstr "" @@ -5907,10 +5982,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:125 msgid "Inbox" msgstr "" @@ -5936,7 +6007,7 @@ msgstr "" msgid "Unknown" msgstr "" -#: lib/profileaction.php:109 lib/profileaction.php:192 lib/subgroupnav.php:82 +#: lib/profileaction.php:109 lib/profileaction.php:194 lib/subgroupnav.php:82 msgid "Subscriptions" msgstr "" @@ -5944,24 +6015,24 @@ msgstr "" msgid "All subscriptions" msgstr "所有訂閱" -#: lib/profileaction.php:140 lib/profileaction.php:201 lib/subgroupnav.php:90 +#: lib/profileaction.php:142 lib/profileaction.php:203 lib/subgroupnav.php:90 msgid "Subscribers" msgstr "" -#: lib/profileaction.php:157 +#: lib/profileaction.php:159 #, fuzzy msgid "All subscribers" msgstr "所有訂閱" -#: lib/profileaction.php:178 +#: lib/profileaction.php:180 msgid "User ID" msgstr "" -#: lib/profileaction.php:183 +#: lib/profileaction.php:185 msgid "Member since" msgstr "ä½•æ™‚åŠ å…¥æœƒå“¡çš„å‘¢ï¼Ÿ" -#: lib/profileaction.php:245 +#: lib/profileaction.php:247 msgid "All groups" msgstr "" @@ -6004,7 +6075,12 @@ msgstr "ç„¡æ¤é€šçŸ¥" msgid "Repeat this notice" msgstr "ç„¡æ¤é€šçŸ¥" -#: lib/router.php:668 +#: lib/revokeroleform.php:91 +#, fuzzy, php-format +msgid "Revoke the \"%s\" role from this user" +msgstr "ç„¡æ¤ä½¿ç”¨è€…" + +#: lib/router.php:671 msgid "No single user defined for single-user mode." msgstr "" @@ -6165,47 +6241,62 @@ msgstr "" msgid "Moderate" msgstr "" -#: lib/util.php:1013 -msgid "a few seconds ago" +#: lib/userprofile.php:352 +#, fuzzy +msgid "User role" +msgstr "ç„¡æ¤é€šçŸ¥" + +#: lib/userprofile.php:354 +msgctxt "role" +msgid "Administrator" +msgstr "" + +#: lib/userprofile.php:355 +msgctxt "role" +msgid "Moderator" msgstr "" #: lib/util.php:1015 -msgid "about a minute ago" +msgid "a few seconds ago" msgstr "" #: lib/util.php:1017 +msgid "about a minute ago" +msgstr "" + +#: lib/util.php:1019 #, php-format msgid "about %d minutes ago" msgstr "" -#: lib/util.php:1019 +#: lib/util.php:1021 msgid "about an hour ago" msgstr "" -#: lib/util.php:1021 +#: lib/util.php:1023 #, php-format msgid "about %d hours ago" msgstr "" -#: lib/util.php:1023 +#: lib/util.php:1025 msgid "about a day ago" msgstr "" -#: lib/util.php:1025 +#: lib/util.php:1027 #, php-format msgid "about %d days ago" msgstr "" -#: lib/util.php:1027 +#: lib/util.php:1029 msgid "about a month ago" msgstr "" -#: lib/util.php:1029 +#: lib/util.php:1031 #, php-format msgid "about %d months ago" msgstr "" -#: lib/util.php:1031 +#: lib/util.php:1033 msgid "about a year ago" msgstr "" diff --git a/plugins/Autocomplete/jquery-autocomplete/indicator.gif b/plugins/Autocomplete/jquery-autocomplete/indicator.gif Binary files differnew file mode 100644 index 000000000..d0bce1542 --- /dev/null +++ b/plugins/Autocomplete/jquery-autocomplete/indicator.gif diff --git a/plugins/CasAuthentication/CasAuthenticationPlugin.php b/plugins/CasAuthentication/CasAuthenticationPlugin.php index 483b060ab..203e5fe42 100644 --- a/plugins/CasAuthentication/CasAuthenticationPlugin.php +++ b/plugins/CasAuthentication/CasAuthenticationPlugin.php @@ -137,6 +137,7 @@ class CasAuthenticationPlugin extends AuthenticationPlugin $casSettings['server']=$this->server; $casSettings['port']=$this->port; $casSettings['path']=$this->path; + $casSettings['takeOverLogin']=$this->takeOverLogin; } function onPluginVersion(&$versions) diff --git a/plugins/CasAuthentication/caslogin.php b/plugins/CasAuthentication/caslogin.php index 390a75d8b..a66774dc1 100644 --- a/plugins/CasAuthentication/caslogin.php +++ b/plugins/CasAuthentication/caslogin.php @@ -54,9 +54,18 @@ class CasloginAction extends Action // We don't have to return to it again common_set_returnto(null); } else { - $url = common_local_url('all', - array('nickname' => - $user->nickname)); + if(common_config('site', 'private') && $casSettings['takeOverLogin']) { + //SSO users expect to just go to the URL they entered + //if we don't have a returnto set, the user entered the + //main StatusNet url, so send them there. + $url = common_local_url('public'); + } else { + //With normal logins (regular form-based username/password), + //the user would expect to go to their home after logging in. + $url = common_local_url('public', + array('nickname' => + $user->nickname)); + } } common_redirect($url, 303); diff --git a/plugins/CasAuthentication/extlib/CAS.php b/plugins/CasAuthentication/extlib/CAS.php index f5ea0b12a..e75437419 100644 --- a/plugins/CasAuthentication/extlib/CAS.php +++ b/plugins/CasAuthentication/extlib/CAS.php @@ -1,1471 +1,1615 @@ -<?php - -// commented in 0.4.22-RC2 for Sylvain Derosiaux -// error_reporting(E_ALL ^ E_NOTICE); - -// -// hack by Vangelis Haniotakis to handle the absence of $_SERVER['REQUEST_URI'] in IIS -// -if (!$_SERVER['REQUEST_URI']) { - $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING']; -} - -// -// another one by Vangelis Haniotakis also to make phpCAS work with PHP5 -// -if (version_compare(PHP_VERSION,'5','>=')) { - require_once(dirname(__FILE__).'/CAS/domxml-php4-php5.php'); -} - -/** - * @file CAS/CAS.php - * Interface class of the phpCAS library - * - * @ingroup public - */ - -// ######################################################################## -// CONSTANTS -// ######################################################################## - -// ------------------------------------------------------------------------ -// CAS VERSIONS -// ------------------------------------------------------------------------ - -/** - * phpCAS version. accessible for the user by phpCAS::getVersion(). - */ -define('PHPCAS_VERSION','1.0.1'); - -// ------------------------------------------------------------------------ -// CAS VERSIONS -// ------------------------------------------------------------------------ - /** - * @addtogroup public - * @{ - */ - -/** - * CAS version 1.0 - */ -define("CAS_VERSION_1_0",'1.0'); -/*! - * CAS version 2.0 - */ -define("CAS_VERSION_2_0",'2.0'); - -/** @} */ - /** - * @addtogroup publicPGTStorage - * @{ - */ -// ------------------------------------------------------------------------ -// FILE PGT STORAGE -// ------------------------------------------------------------------------ - /** - * Default path used when storing PGT's to file - */ -define("CAS_PGT_STORAGE_FILE_DEFAULT_PATH",'/tmp'); -/** - * phpCAS::setPGTStorageFile()'s 2nd parameter to write plain text files - */ -define("CAS_PGT_STORAGE_FILE_FORMAT_PLAIN",'plain'); -/** - * phpCAS::setPGTStorageFile()'s 2nd parameter to write xml files - */ -define("CAS_PGT_STORAGE_FILE_FORMAT_XML",'xml'); -/** - * Default format used when storing PGT's to file - */ -define("CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT",CAS_PGT_STORAGE_FILE_FORMAT_PLAIN); -// ------------------------------------------------------------------------ -// DATABASE PGT STORAGE -// ------------------------------------------------------------------------ - /** - * default database type when storing PGT's to database - */ -define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE",'mysql'); -/** - * default host when storing PGT's to database - */ -define("CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME",'localhost'); -/** - * default port when storing PGT's to database - */ -define("CAS_PGT_STORAGE_DB_DEFAULT_PORT",''); -/** - * default database when storing PGT's to database - */ -define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE",'phpCAS'); -/** - * default table when storing PGT's to database - */ -define("CAS_PGT_STORAGE_DB_DEFAULT_TABLE",'pgt'); - -/** @} */ -// ------------------------------------------------------------------------ -// SERVICE ACCESS ERRORS -// ------------------------------------------------------------------------ - /** - * @addtogroup publicServices - * @{ - */ - -/** - * phpCAS::service() error code on success - */ -define("PHPCAS_SERVICE_OK",0); -/** - * phpCAS::service() error code when the PT could not retrieve because - * the CAS server did not respond. - */ -define("PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE",1); -/** - * phpCAS::service() error code when the PT could not retrieve because - * the response of the CAS server was ill-formed. - */ -define("PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE",2); -/** - * phpCAS::service() error code when the PT could not retrieve because - * the CAS server did not want to. - */ -define("PHPCAS_SERVICE_PT_FAILURE",3); -/** - * phpCAS::service() error code when the service was not available. - */ -define("PHPCAS_SERVICE_NOT AVAILABLE",4); - -/** @} */ -// ------------------------------------------------------------------------ -// LANGUAGES -// ------------------------------------------------------------------------ - /** - * @addtogroup publicLang - * @{ - */ - -define("PHPCAS_LANG_ENGLISH", 'english'); -define("PHPCAS_LANG_FRENCH", 'french'); -define("PHPCAS_LANG_GREEK", 'greek'); -define("PHPCAS_LANG_GERMAN", 'german'); -define("PHPCAS_LANG_JAPANESE", 'japanese'); -define("PHPCAS_LANG_SPANISH", 'spanish'); -define("PHPCAS_LANG_CATALAN", 'catalan'); - -/** @} */ - -/** - * @addtogroup internalLang - * @{ - */ - -/** - * phpCAS default language (when phpCAS::setLang() is not used) - */ -define("PHPCAS_LANG_DEFAULT", PHPCAS_LANG_ENGLISH); - -/** @} */ -// ------------------------------------------------------------------------ -// DEBUG -// ------------------------------------------------------------------------ - /** - * @addtogroup publicDebug - * @{ - */ - -/** - * The default directory for the debug file under Unix. - */ -define('DEFAULT_DEBUG_DIR','/tmp/'); - -/** @} */ -// ------------------------------------------------------------------------ -// MISC -// ------------------------------------------------------------------------ - /** - * @addtogroup internalMisc - * @{ - */ - -/** - * This global variable is used by the interface class phpCAS. - * - * @hideinitializer - */ -$GLOBALS['PHPCAS_CLIENT'] = null; - -/** - * This global variable is used to store where the initializer is called from - * (to print a comprehensive error in case of multiple calls). - * - * @hideinitializer - */ -$GLOBALS['PHPCAS_INIT_CALL'] = array('done' => FALSE, - 'file' => '?', - 'line' => -1, - 'method' => '?'); - -/** - * This global variable is used to store where the method checking - * the authentication is called from (to print comprehensive errors) - * - * @hideinitializer - */ -$GLOBALS['PHPCAS_AUTH_CHECK_CALL'] = array('done' => FALSE, - 'file' => '?', - 'line' => -1, - 'method' => '?', - 'result' => FALSE); - -/** - * This global variable is used to store phpCAS debug mode. - * - * @hideinitializer - */ -$GLOBALS['PHPCAS_DEBUG'] = array('filename' => FALSE, - 'indent' => 0, - 'unique_id' => ''); - -/** @} */ - -// ######################################################################## -// CLIENT CLASS -// ######################################################################## - -// include client class -include_once(dirname(__FILE__).'/CAS/client.php'); - -// ######################################################################## -// INTERFACE CLASS -// ######################################################################## - -/** - * @class phpCAS - * The phpCAS class is a simple container for the phpCAS library. It provides CAS - * authentication for web applications written in PHP. - * - * @ingroup public - * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> - * - * \internal All its methods access the same object ($PHPCAS_CLIENT, declared - * at the end of CAS/client.php). - */ - - - -class phpCAS -{ - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * @addtogroup publicInit - * @{ - */ - - /** - * phpCAS client initializer. - * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be - * called, only once, and before all other methods (except phpCAS::getVersion() - * and phpCAS::setDebug()). - * - * @param $server_version the version of the CAS server - * @param $server_hostname the hostname of the CAS server - * @param $server_port the port the CAS server is running on - * @param $server_uri the URI the CAS server is responding on - * @param $start_session Have phpCAS start PHP sessions (default true) - * - * @return a newly created CASClient object - */ - function client($server_version, - $server_hostname, - $server_port, - $server_uri, - $start_session = true) - { - global $PHPCAS_CLIENT, $PHPCAS_INIT_CALL; - - phpCAS::traceBegin(); - if ( is_object($PHPCAS_CLIENT) ) { - phpCAS::error($PHPCAS_INIT_CALL['method'].'() has already been called (at '.$PHPCAS_INIT_CALL['file'].':'.$PHPCAS_INIT_CALL['line'].')'); - } - if ( gettype($server_version) != 'string' ) { - phpCAS::error('type mismatched for parameter $server_version (should be `string\')'); - } - if ( gettype($server_hostname) != 'string' ) { - phpCAS::error('type mismatched for parameter $server_hostname (should be `string\')'); - } - if ( gettype($server_port) != 'integer' ) { - phpCAS::error('type mismatched for parameter $server_port (should be `integer\')'); - } - if ( gettype($server_uri) != 'string' ) { - phpCAS::error('type mismatched for parameter $server_uri (should be `string\')'); - } - - // store where the initialzer is called from - $dbg = phpCAS::backtrace(); - $PHPCAS_INIT_CALL = array('done' => TRUE, - 'file' => $dbg[0]['file'], - 'line' => $dbg[0]['line'], - 'method' => __CLASS__.'::'.__FUNCTION__); - - // initialize the global object $PHPCAS_CLIENT - $PHPCAS_CLIENT = new CASClient($server_version,FALSE/*proxy*/,$server_hostname,$server_port,$server_uri,$start_session); - phpCAS::traceEnd(); - } - - /** - * phpCAS proxy initializer. - * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be - * called, only once, and before all other methods (except phpCAS::getVersion() - * and phpCAS::setDebug()). - * - * @param $server_version the version of the CAS server - * @param $server_hostname the hostname of the CAS server - * @param $server_port the port the CAS server is running on - * @param $server_uri the URI the CAS server is responding on - * @param $start_session Have phpCAS start PHP sessions (default true) - * - * @return a newly created CASClient object - */ - function proxy($server_version, - $server_hostname, - $server_port, - $server_uri, - $start_session = true) - { - global $PHPCAS_CLIENT, $PHPCAS_INIT_CALL; - - phpCAS::traceBegin(); - if ( is_object($PHPCAS_CLIENT) ) { - phpCAS::error($PHPCAS_INIT_CALL['method'].'() has already been called (at '.$PHPCAS_INIT_CALL['file'].':'.$PHPCAS_INIT_CALL['line'].')'); - } - if ( gettype($server_version) != 'string' ) { - phpCAS::error('type mismatched for parameter $server_version (should be `string\')'); - } - if ( gettype($server_hostname) != 'string' ) { - phpCAS::error('type mismatched for parameter $server_hostname (should be `string\')'); - } - if ( gettype($server_port) != 'integer' ) { - phpCAS::error('type mismatched for parameter $server_port (should be `integer\')'); - } - if ( gettype($server_uri) != 'string' ) { - phpCAS::error('type mismatched for parameter $server_uri (should be `string\')'); - } - - // store where the initialzer is called from - $dbg = phpCAS::backtrace(); - $PHPCAS_INIT_CALL = array('done' => TRUE, - 'file' => $dbg[0]['file'], - 'line' => $dbg[0]['line'], - 'method' => __CLASS__.'::'.__FUNCTION__); - - // initialize the global object $PHPCAS_CLIENT - $PHPCAS_CLIENT = new CASClient($server_version,TRUE/*proxy*/,$server_hostname,$server_port,$server_uri,$start_session); - phpCAS::traceEnd(); - } - - /** @} */ - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * @addtogroup publicDebug - * @{ - */ - - /** - * Set/unset debug mode - * - * @param $filename the name of the file used for logging, or FALSE to stop debugging. - */ - function setDebug($filename='') - { - global $PHPCAS_DEBUG; - - if ( $filename != FALSE && gettype($filename) != 'string' ) { - phpCAS::error('type mismatched for parameter $dbg (should be FALSE or the name of the log file)'); - } - - if ( empty($filename) ) { - if ( preg_match('/^Win.*/',getenv('OS')) ) { - if ( isset($_ENV['TMP']) ) { - $debugDir = $_ENV['TMP'].'/'; - } else if ( isset($_ENV['TEMP']) ) { - $debugDir = $_ENV['TEMP'].'/'; - } else { - $debugDir = ''; - } - } else { - $debugDir = DEFAULT_DEBUG_DIR; - } - $filename = $debugDir . 'phpCAS.log'; - } - - if ( empty($PHPCAS_DEBUG['unique_id']) ) { - $PHPCAS_DEBUG['unique_id'] = substr(strtoupper(md5(uniqid(''))),0,4); - } - - $PHPCAS_DEBUG['filename'] = $filename; - - phpCAS::trace('START ******************'); - } - - /** @} */ - /** - * @addtogroup internalDebug - * @{ - */ - - /** - * This method is a wrapper for debug_backtrace() that is not available - * in all PHP versions (>= 4.3.0 only) - */ - function backtrace() - { - if ( function_exists('debug_backtrace') ) { - return debug_backtrace(); - } else { - // poor man's hack ... but it does work ... - return array(); - } - } - - /** - * Logs a string in debug mode. - * - * @param $str the string to write - * - * @private - */ - function log($str) - { - $indent_str = "."; - global $PHPCAS_DEBUG; - - if ( $PHPCAS_DEBUG['filename'] ) { - for ($i=0;$i<$PHPCAS_DEBUG['indent'];$i++) { - $indent_str .= '| '; - } - error_log($PHPCAS_DEBUG['unique_id'].' '.$indent_str.$str."\n",3,$PHPCAS_DEBUG['filename']); - } - - } - - /** - * This method is used by interface methods to print an error and where the function - * was originally called from. - * - * @param $msg the message to print - * - * @private - */ - function error($msg) - { - $dbg = phpCAS::backtrace(); - $function = '?'; - $file = '?'; - $line = '?'; - if ( is_array($dbg) ) { - for ( $i=1; $i<sizeof($dbg); $i++) { - if ( is_array($dbg[$i]) ) { - if ( $dbg[$i]['class'] == __CLASS__ ) { - $function = $dbg[$i]['function']; - $file = $dbg[$i]['file']; - $line = $dbg[$i]['line']; - } - } - } - } - echo "<br />\n<b>phpCAS error</b>: <font color=\"FF0000\"><b>".__CLASS__."::".$function.'(): '.htmlentities($msg)."</b></font> in <b>".$file."</b> on line <b>".$line."</b><br />\n"; - phpCAS::trace($msg); - phpCAS::traceExit(); - exit(); - } - - /** - * This method is used to log something in debug mode. - */ - function trace($str) - { - $dbg = phpCAS::backtrace(); - phpCAS::log($str.' ['.basename($dbg[1]['file']).':'.$dbg[1]['line'].']'); - } - - /** - * This method is used to indicate the start of the execution of a function in debug mode. - */ - function traceBegin() - { - global $PHPCAS_DEBUG; - - $dbg = phpCAS::backtrace(); - $str = '=> '; - if ( !empty($dbg[2]['class']) ) { - $str .= $dbg[2]['class'].'::'; - } - $str .= $dbg[2]['function'].'('; - if ( is_array($dbg[2]['args']) ) { - foreach ($dbg[2]['args'] as $index => $arg) { - if ( $index != 0 ) { - $str .= ', '; - } - $str .= str_replace("\n","",var_export($arg,TRUE)); - } - } - $str .= ') ['.basename($dbg[2]['file']).':'.$dbg[2]['line'].']'; - phpCAS::log($str); - $PHPCAS_DEBUG['indent'] ++; - } - - /** - * This method is used to indicate the end of the execution of a function in debug mode. - * - * @param $res the result of the function - */ - function traceEnd($res='') - { - global $PHPCAS_DEBUG; - - $PHPCAS_DEBUG['indent'] --; - $dbg = phpCAS::backtrace(); - $str = ''; - $str .= '<= '.str_replace("\n","",var_export($res,TRUE)); - phpCAS::log($str); - } - - /** - * This method is used to indicate the end of the execution of the program - */ - function traceExit() - { - global $PHPCAS_DEBUG; - - phpCAS::log('exit()'); - while ( $PHPCAS_DEBUG['indent'] > 0 ) { - phpCAS::log('-'); - $PHPCAS_DEBUG['indent'] --; - } - } - - /** @} */ - // ######################################################################## - // INTERNATIONALIZATION - // ######################################################################## - /** - * @addtogroup publicLang - * @{ - */ - - /** - * This method is used to set the language used by phpCAS. - * @note Can be called only once. - * - * @param $lang a string representing the language. - * - * @sa PHPCAS_LANG_FRENCH, PHPCAS_LANG_ENGLISH - */ - function setLang($lang) - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - if ( gettype($lang) != 'string' ) { - phpCAS::error('type mismatched for parameter $lang (should be `string\')'); - } - $PHPCAS_CLIENT->setLang($lang); - } - - /** @} */ - // ######################################################################## - // VERSION - // ######################################################################## - /** - * @addtogroup public - * @{ - */ - - /** - * This method returns the phpCAS version. - * - * @return the phpCAS version. - */ - function getVersion() - { - return PHPCAS_VERSION; - } - - /** @} */ - // ######################################################################## - // HTML OUTPUT - // ######################################################################## - /** - * @addtogroup publicOutput - * @{ - */ - - /** - * This method sets the HTML header used for all outputs. - * - * @param $header the HTML header. - */ - function setHTMLHeader($header) - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - if ( gettype($header) != 'string' ) { - phpCAS::error('type mismatched for parameter $header (should be `string\')'); - } - $PHPCAS_CLIENT->setHTMLHeader($header); - } - - /** - * This method sets the HTML footer used for all outputs. - * - * @param $footer the HTML footer. - */ - function setHTMLFooter($footer) - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - if ( gettype($footer) != 'string' ) { - phpCAS::error('type mismatched for parameter $footer (should be `string\')'); - } - $PHPCAS_CLIENT->setHTMLFooter($footer); - } - - /** @} */ - // ######################################################################## - // PGT STORAGE - // ######################################################################## - /** - * @addtogroup publicPGTStorage - * @{ - */ - - /** - * This method is used to tell phpCAS to store the response of the - * CAS server to PGT requests onto the filesystem. - * - * @param $format the format used to store the PGT's (`plain' and `xml' allowed) - * @param $path the path where the PGT's should be stored - */ - function setPGTStorageFile($format='', - $path='') - { - global $PHPCAS_CLIENT,$PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_CLIENT->isProxy() ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( $PHPCAS_AUTH_CHECK_CALL['done'] ) { - phpCAS::error('this method should only be called before '.$PHPCAS_AUTH_CHECK_CALL['method'].'() (called at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].')'); - } - if ( gettype($format) != 'string' ) { - phpCAS::error('type mismatched for parameter $format (should be `string\')'); - } - if ( gettype($path) != 'string' ) { - phpCAS::error('type mismatched for parameter $format (should be `string\')'); - } - $PHPCAS_CLIENT->setPGTStorageFile($format,$path); - phpCAS::traceEnd(); - } - - /** - * This method is used to tell phpCAS to store the response of the - * CAS server to PGT requests into a database. - * @note The connection to the database is done only when needed. - * As a consequence, bad parameters are detected only when - * initializing PGT storage, except in debug mode. - * - * @param $user the user to access the data with - * @param $password the user's password - * @param $database_type the type of the database hosting the data - * @param $hostname the server hosting the database - * @param $port the port the server is listening on - * @param $database the name of the database - * @param $table the name of the table storing the data - */ - function setPGTStorageDB($user, - $password, - $database_type='', - $hostname='', - $port=0, - $database='', - $table='') - { - global $PHPCAS_CLIENT,$PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_CLIENT->isProxy() ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( $PHPCAS_AUTH_CHECK_CALL['done'] ) { - phpCAS::error('this method should only be called before '.$PHPCAS_AUTH_CHECK_CALL['method'].'() (called at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].')'); - } - if ( gettype($user) != 'string' ) { - phpCAS::error('type mismatched for parameter $user (should be `string\')'); - } - if ( gettype($password) != 'string' ) { - phpCAS::error('type mismatched for parameter $password (should be `string\')'); - } - if ( gettype($database_type) != 'string' ) { - phpCAS::error('type mismatched for parameter $database_type (should be `string\')'); - } - if ( gettype($hostname) != 'string' ) { - phpCAS::error('type mismatched for parameter $hostname (should be `string\')'); - } - if ( gettype($port) != 'integer' ) { - phpCAS::error('type mismatched for parameter $port (should be `integer\')'); - } - if ( gettype($database) != 'string' ) { - phpCAS::error('type mismatched for parameter $database (should be `string\')'); - } - if ( gettype($table) != 'string' ) { - phpCAS::error('type mismatched for parameter $table (should be `string\')'); - } - $PHPCAS_CLIENT->setPGTStorageDB($this,$user,$password,$hostname,$port,$database,$table); - phpCAS::traceEnd(); - } - - /** @} */ - // ######################################################################## - // ACCESS TO EXTERNAL SERVICES - // ######################################################################## - /** - * @addtogroup publicServices - * @{ - */ - - /** - * This method is used to access an HTTP[S] service. - * - * @param $url the service to access. - * @param $err_code an error code Possible values are PHPCAS_SERVICE_OK (on - * success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, - * PHPCAS_SERVICE_PT_FAILURE, PHPCAS_SERVICE_NOT AVAILABLE. - * @param $output the output of the service (also used to give an error - * message on failure). - * - * @return TRUE on success, FALSE otherwise (in this later case, $err_code - * gives the reason why it failed and $output contains an error message). - */ - function serviceWeb($url,&$err_code,&$output) - { - global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_CLIENT->isProxy() ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) { - phpCAS::error('this method should only be called after the programmer is sure the user has been authenticated (by calling '.__CLASS__.'::checkAuthentication() or '.__CLASS__.'::forceAuthentication()'); - } - if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) { - phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE'); - } - if ( gettype($url) != 'string' ) { - phpCAS::error('type mismatched for parameter $url (should be `string\')'); - } - - $res = $PHPCAS_CLIENT->serviceWeb($url,$err_code,$output); - - phpCAS::traceEnd($res); - return $res; - } - - /** - * This method is used to access an IMAP/POP3/NNTP service. - * - * @param $url a string giving the URL of the service, including the mailing box - * for IMAP URLs, as accepted by imap_open(). - * @param $flags options given to imap_open(). - * @param $err_code an error code Possible values are PHPCAS_SERVICE_OK (on - * success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, - * PHPCAS_SERVICE_PT_FAILURE, PHPCAS_SERVICE_NOT AVAILABLE. - * @param $err_msg an error message on failure - * @param $pt the Proxy Ticket (PT) retrieved from the CAS server to access the URL - * on success, FALSE on error). - * - * @return an IMAP stream on success, FALSE otherwise (in this later case, $err_code - * gives the reason why it failed and $err_msg contains an error message). - */ - function serviceMail($url,$flags,&$err_code,&$err_msg,&$pt) - { - global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_CLIENT->isProxy() ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) { - phpCAS::error('this method should only be called after the programmer is sure the user has been authenticated (by calling '.__CLASS__.'::checkAuthentication() or '.__CLASS__.'::forceAuthentication()'); - } - if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) { - phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE'); - } - if ( gettype($url) != 'string' ) { - phpCAS::error('type mismatched for parameter $url (should be `string\')'); - } - - if ( gettype($flags) != 'integer' ) { - phpCAS::error('type mismatched for parameter $flags (should be `integer\')'); - } - - $res = $PHPCAS_CLIENT->serviceMail($url,$flags,$err_code,$err_msg,$pt); - - phpCAS::traceEnd($res); - return $res; - } - - /** @} */ - // ######################################################################## - // AUTHENTICATION - // ######################################################################## - /** - * @addtogroup publicAuth - * @{ - */ - - /** - * Set the times authentication will be cached before really accessing the CAS server in gateway mode: - * - -1: check only once, and then never again (until you pree login) - * - 0: always check - * - n: check every "n" time - * - * @param $n an integer. - */ - function setCacheTimesForAuthRecheck($n) - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - if ( gettype($n) != 'integer' ) { - phpCAS::error('type mismatched for parameter $header (should be `string\')'); - } - $PHPCAS_CLIENT->setCacheTimesForAuthRecheck($n); - } - - /** - * This method is called to check if the user is authenticated (use the gateway feature). - * @return TRUE when the user is authenticated; otherwise FALSE. - */ - function checkAuthentication() - { - global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - - $auth = $PHPCAS_CLIENT->checkAuthentication(); - - // store where the authentication has been checked and the result - $dbg = phpCAS::backtrace(); - $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE, - 'file' => $dbg[0]['file'], - 'line' => $dbg[0]['line'], - 'method' => __CLASS__.'::'.__FUNCTION__, - 'result' => $auth ); - phpCAS::traceEnd($auth); - return $auth; - } - - /** - * This method is called to force authentication if the user was not already - * authenticated. If the user is not authenticated, halt by redirecting to - * the CAS server. - */ - function forceAuthentication() - { - global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - - $auth = $PHPCAS_CLIENT->forceAuthentication(); - - // store where the authentication has been checked and the result - $dbg = phpCAS::backtrace(); - $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE, - 'file' => $dbg[0]['file'], - 'line' => $dbg[0]['line'], - 'method' => __CLASS__.'::'.__FUNCTION__, - 'result' => $auth ); - - if ( !$auth ) { - phpCAS::trace('user is not authenticated, redirecting to the CAS server'); - $PHPCAS_CLIENT->forceAuthentication(); - } else { - phpCAS::trace('no need to authenticate (user `'.phpCAS::getUser().'\' is already authenticated)'); - } - - phpCAS::traceEnd(); - return $auth; - } - - /** - * This method is called to renew the authentication. - **/ - function renewAuthentication() { - global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before'.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - - // store where the authentication has been checked and the result - $dbg = phpCAS::backtrace(); - $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE, 'file' => $dbg[0]['file'], 'line' => $dbg[0]['line'], 'method' => __CLASS__.'::'.__FUNCTION__, 'result' => $auth ); - - $PHPCAS_CLIENT->renewAuthentication(); - phpCAS::traceEnd(); - } - - /** - * This method has been left from version 0.4.1 for compatibility reasons. - */ - function authenticate() - { - phpCAS::error('this method is deprecated. You should use '.__CLASS__.'::forceAuthentication() instead'); - } - - /** - * This method is called to check if the user is authenticated (previously or by - * tickets given in the URL). - * - * @return TRUE when the user is authenticated. - */ - function isAuthenticated() - { - global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL; - - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - - // call the isAuthenticated method of the global $PHPCAS_CLIENT object - $auth = $PHPCAS_CLIENT->isAuthenticated(); - - // store where the authentication has been checked and the result - $dbg = phpCAS::backtrace(); - $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE, - 'file' => $dbg[0]['file'], - 'line' => $dbg[0]['line'], - 'method' => __CLASS__.'::'.__FUNCTION__, - 'result' => $auth ); - phpCAS::traceEnd($auth); - return $auth; - } - - /** - * Checks whether authenticated based on $_SESSION. Useful to avoid - * server calls. - * @return true if authenticated, false otherwise. - * @since 0.4.22 by Brendan Arnold - */ - function isSessionAuthenticated () - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - return($PHPCAS_CLIENT->isSessionAuthenticated()); - } - - /** - * This method returns the CAS user's login name. - * @warning should not be called only after phpCAS::forceAuthentication() - * or phpCAS::checkAuthentication(). - * - * @return the login name of the authenticated user - */ - function getUser() - { - global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()'); - } - if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) { - phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE'); - } - return $PHPCAS_CLIENT->getUser(); - } - - /** - * Handle logout requests. - */ - function handleLogoutRequests($check_client=true, $allowed_clients=false) - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - return($PHPCAS_CLIENT->handleLogoutRequests($check_client, $allowed_clients)); - } - - /** - * This method returns the URL to be used to login. - * or phpCAS::isAuthenticated(). - * - * @return the login name of the authenticated user - */ - function getServerLoginURL() - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - return $PHPCAS_CLIENT->getServerLoginURL(); - } - - /** - * Set the login URL of the CAS server. - * @param $url the login URL - * @since 0.4.21 by Wyman Chan - */ - function setServerLoginURL($url='') - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after - '.__CLASS__.'::client()'); - } - if ( gettype($url) != 'string' ) { - phpCAS::error('type mismatched for parameter $url (should be - `string\')'); - } - $PHPCAS_CLIENT->setServerLoginURL($url); - phpCAS::traceEnd(); - } - - /** - * This method returns the URL to be used to login. - * or phpCAS::isAuthenticated(). - * - * @return the login name of the authenticated user - */ - function getServerLogoutURL() - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()'); - } - return $PHPCAS_CLIENT->getServerLogoutURL(); - } - - /** - * Set the logout URL of the CAS server. - * @param $url the logout URL - * @since 0.4.21 by Wyman Chan - */ - function setServerLogoutURL($url='') - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after - '.__CLASS__.'::client()'); - } - if ( gettype($url) != 'string' ) { - phpCAS::error('type mismatched for parameter $url (should be - `string\')'); - } - $PHPCAS_CLIENT->setServerLogoutURL($url); - phpCAS::traceEnd(); - } - - /** - * This method is used to logout from CAS. - * @params $params an array that contains the optional url and service parameters that will be passed to the CAS server - * @public - */ - function logout($params = "") { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if (!is_object($PHPCAS_CLIENT)) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - $parsedParams = array(); - if ($params != "") { - if (is_string($params)) { - phpCAS::error('method `phpCAS::logout($url)\' is now deprecated, use `phpCAS::logoutWithUrl($url)\' instead'); - } - if (!is_array($params)) { - phpCAS::error('type mismatched for parameter $params (should be `array\')'); - } - foreach ($params as $key => $value) { - if ($key != "service" && $key != "url") { - phpCAS::error('only `url\' and `service\' parameters are allowed for method `phpCAS::logout($params)\''); - } - $parsedParams[$key] = $value; - } - } - $PHPCAS_CLIENT->logout($parsedParams); - // never reached - phpCAS::traceEnd(); - } - - /** - * This method is used to logout from CAS. Halts by redirecting to the CAS server. - * @param $service a URL that will be transmitted to the CAS server - */ - function logoutWithRedirectService($service) { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - if (!is_string($service)) { - phpCAS::error('type mismatched for parameter $service (should be `string\')'); - } - $PHPCAS_CLIENT->logout(array("service" => $service)); - // never reached - phpCAS::traceEnd(); - } - - /** - * This method is used to logout from CAS. Halts by redirecting to the CAS server. - * @param $url a URL that will be transmitted to the CAS server - */ - function logoutWithUrl($url) { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - if (!is_string($url)) { - phpCAS::error('type mismatched for parameter $url (should be `string\')'); - } - $PHPCAS_CLIENT->logout(array("url" => $url)); - // never reached - phpCAS::traceEnd(); - } - - /** - * This method is used to logout from CAS. Halts by redirecting to the CAS server. - * @param $service a URL that will be transmitted to the CAS server - * @param $url a URL that will be transmitted to the CAS server - */ - function logoutWithRedirectServiceAndUrl($service, $url) { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - if (!is_string($service)) { - phpCAS::error('type mismatched for parameter $service (should be `string\')'); - } - if (!is_string($url)) { - phpCAS::error('type mismatched for parameter $url (should be `string\')'); - } - $PHPCAS_CLIENT->logout(array("service" => $service, "url" => $url)); - // never reached - phpCAS::traceEnd(); - } - - /** - * Set the fixed URL that will be used by the CAS server to transmit the PGT. - * When this method is not called, a phpCAS script uses its own URL for the callback. - * - * @param $url the URL - */ - function setFixedCallbackURL($url='') - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( !$PHPCAS_CLIENT->isProxy() ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( gettype($url) != 'string' ) { - phpCAS::error('type mismatched for parameter $url (should be `string\')'); - } - $PHPCAS_CLIENT->setCallbackURL($url); - phpCAS::traceEnd(); - } - - /** - * Set the fixed URL that will be set as the CAS service parameter. When this - * method is not called, a phpCAS script uses its own URL. - * - * @param $url the URL - */ - function setFixedServiceURL($url) - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( gettype($url) != 'string' ) { - phpCAS::error('type mismatched for parameter $url (should be `string\')'); - } - $PHPCAS_CLIENT->setURL($url); - phpCAS::traceEnd(); - } - - /** - * Get the URL that is set as the CAS service parameter. - */ - function getServiceURL() - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - return($PHPCAS_CLIENT->getURL()); - } - - /** - * Retrieve a Proxy Ticket from the CAS server. - */ - function retrievePT($target_service,&$err_code,&$err_msg) - { - global $PHPCAS_CLIENT; - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()'); - } - if ( gettype($target_service) != 'string' ) { - phpCAS::error('type mismatched for parameter $target_service(should be `string\')'); - } - return($PHPCAS_CLIENT->retrievePT($target_service,$err_code,$err_msg)); - } - - /** - * Set the certificate of the CAS server. - * - * @param $cert the PEM certificate - */ - function setCasServerCert($cert) - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - if ( gettype($cert) != 'string' ) { - phpCAS::error('type mismatched for parameter $cert (should be `string\')'); - } - $PHPCAS_CLIENT->setCasServerCert($cert); - phpCAS::traceEnd(); - } - - /** - * Set the certificate of the CAS server CA. - * - * @param $cert the CA certificate - */ - function setCasServerCACert($cert) - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - if ( gettype($cert) != 'string' ) { - phpCAS::error('type mismatched for parameter $cert (should be `string\')'); - } - $PHPCAS_CLIENT->setCasServerCACert($cert); - phpCAS::traceEnd(); - } - - /** - * Set no SSL validation for the CAS server. - */ - function setNoCasServerValidation() - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - $PHPCAS_CLIENT->setNoCasServerValidation(); - phpCAS::traceEnd(); - } - - /** @} */ - - /** - * Change CURL options. - * CURL is used to connect through HTTPS to CAS server - * @param $key the option key - * @param $value the value to set - */ - function setExtraCurlOption($key, $value) - { - global $PHPCAS_CLIENT; - phpCAS::traceBegin(); - if ( !is_object($PHPCAS_CLIENT) ) { - phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()'); - } - $PHPCAS_CLIENT->setExtraCurlOption($key, $value); - phpCAS::traceEnd(); - } - -} - -// ######################################################################## -// DOCUMENTATION -// ######################################################################## - -// ######################################################################## -// MAIN PAGE - -/** - * @mainpage - * - * The following pages only show the source documentation. - * - */ - -// ######################################################################## -// MODULES DEFINITION - -/** @defgroup public User interface */ - -/** @defgroup publicInit Initialization - * @ingroup public */ - -/** @defgroup publicAuth Authentication - * @ingroup public */ - -/** @defgroup publicServices Access to external services - * @ingroup public */ - -/** @defgroup publicConfig Configuration - * @ingroup public */ - -/** @defgroup publicLang Internationalization - * @ingroup publicConfig */ - -/** @defgroup publicOutput HTML output - * @ingroup publicConfig */ - -/** @defgroup publicPGTStorage PGT storage - * @ingroup publicConfig */ - -/** @defgroup publicDebug Debugging - * @ingroup public */ - - -/** @defgroup internal Implementation */ - -/** @defgroup internalAuthentication Authentication - * @ingroup internal */ - -/** @defgroup internalBasic CAS Basic client features (CAS 1.0, Service Tickets) - * @ingroup internal */ - -/** @defgroup internalProxy CAS Proxy features (CAS 2.0, Proxy Granting Tickets) - * @ingroup internal */ - -/** @defgroup internalPGTStorage PGT storage - * @ingroup internalProxy */ - -/** @defgroup internalPGTStorageDB PGT storage in a database - * @ingroup internalPGTStorage */ - -/** @defgroup internalPGTStorageFile PGT storage on the filesystem - * @ingroup internalPGTStorage */ - -/** @defgroup internalCallback Callback from the CAS server - * @ingroup internalProxy */ - -/** @defgroup internalProxied CAS proxied client features (CAS 2.0, Proxy Tickets) - * @ingroup internal */ - -/** @defgroup internalConfig Configuration - * @ingroup internal */ - -/** @defgroup internalOutput HTML output - * @ingroup internalConfig */ - -/** @defgroup internalLang Internationalization - * @ingroup internalConfig - * - * To add a new language: - * - 1. define a new constant PHPCAS_LANG_XXXXXX in CAS/CAS.php - * - 2. copy any file from CAS/languages to CAS/languages/XXXXXX.php - * - 3. Make the translations - */ - -/** @defgroup internalDebug Debugging - * @ingroup internal */ - -/** @defgroup internalMisc Miscellaneous - * @ingroup internal */ - -// ######################################################################## -// EXAMPLES - -/** - * @example example_simple.php - */ - /** - * @example example_proxy.php - */ - /** - * @example example_proxy2.php - */ - /** - * @example example_lang.php - */ - /** - * @example example_html.php - */ - /** - * @example example_file.php - */ - /** - * @example example_db.php - */ - /** - * @example example_service.php - */ - /** - * @example example_session_proxy.php - */ - /** - * @example example_session_service.php - */ - /** - * @example example_gateway.php - */ - - - -?> +<?php
+
+// commented in 0.4.22-RC2 for Sylvain Derosiaux
+// error_reporting(E_ALL ^ E_NOTICE);
+
+//
+// hack by Vangelis Haniotakis to handle the absence of $_SERVER['REQUEST_URI'] in IIS
+//
+if (!$_SERVER['REQUEST_URI']) {
+ $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];
+}
+
+//
+// another one by Vangelis Haniotakis also to make phpCAS work with PHP5
+//
+if (version_compare(PHP_VERSION,'5','>=')) {
+ require_once(dirname(__FILE__).'/CAS/domxml-php4-to-php5.php');
+}
+
+/**
+ * @file CAS/CAS.php
+ * Interface class of the phpCAS library
+ *
+ * @ingroup public
+ */
+
+// ########################################################################
+// CONSTANTS
+// ########################################################################
+
+// ------------------------------------------------------------------------
+// CAS VERSIONS
+// ------------------------------------------------------------------------
+
+/**
+ * phpCAS version. accessible for the user by phpCAS::getVersion().
+ */
+define('PHPCAS_VERSION','1.1.0RC6');
+
+// ------------------------------------------------------------------------
+// CAS VERSIONS
+// ------------------------------------------------------------------------
+ /**
+ * @addtogroup public
+ * @{
+ */
+
+/**
+ * CAS version 1.0
+ */
+define("CAS_VERSION_1_0",'1.0');
+/*!
+ * CAS version 2.0
+ */
+define("CAS_VERSION_2_0",'2.0');
+
+// ------------------------------------------------------------------------
+// SAML defines
+// ------------------------------------------------------------------------
+
+/**
+ * SAML protocol
+ */
+define("SAML_VERSION_1_1", 'S1');
+
+/**
+ * XML header for SAML POST
+ */
+define("SAML_XML_HEADER", '<?xml version="1.0" encoding="UTF-8"?>');
+
+/**
+ * SOAP envelope for SAML POST
+ */
+define ("SAML_SOAP_ENV", '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/>');
+
+/**
+ * SOAP body for SAML POST
+ */
+define ("SAML_SOAP_BODY", '<SOAP-ENV:Body>');
+
+/**
+ * SAMLP request
+ */
+define ("SAMLP_REQUEST", '<samlp:Request xmlns:samlp="urn:oasis:names:tc:SAML:1.0:protocol" MajorVersion="1" MinorVersion="1" RequestID="_192.168.16.51.1024506224022" IssueInstant="2002-06-19T17:03:44.022Z">');
+define ("SAMLP_REQUEST_CLOSE", '</samlp:Request>');
+
+/**
+ * SAMLP artifact tag (for the ticket)
+ */
+define ("SAML_ASSERTION_ARTIFACT", '<samlp:AssertionArtifact>');
+
+/**
+ * SAMLP close
+ */
+define ("SAML_ASSERTION_ARTIFACT_CLOSE", '</samlp:AssertionArtifact>');
+
+/**
+ * SOAP body close
+ */
+define ("SAML_SOAP_BODY_CLOSE", '</SOAP-ENV:Body>');
+
+/**
+ * SOAP envelope close
+ */
+define ("SAML_SOAP_ENV_CLOSE", '</SOAP-ENV:Envelope>');
+
+/**
+ * SAML Attributes
+ */
+define("SAML_ATTRIBUTES", 'SAMLATTRIBS');
+
+
+
+/** @} */
+ /**
+ * @addtogroup publicPGTStorage
+ * @{
+ */
+// ------------------------------------------------------------------------
+// FILE PGT STORAGE
+// ------------------------------------------------------------------------
+ /**
+ * Default path used when storing PGT's to file
+ */
+define("CAS_PGT_STORAGE_FILE_DEFAULT_PATH",'/tmp');
+/**
+ * phpCAS::setPGTStorageFile()'s 2nd parameter to write plain text files
+ */
+define("CAS_PGT_STORAGE_FILE_FORMAT_PLAIN",'plain');
+/**
+ * phpCAS::setPGTStorageFile()'s 2nd parameter to write xml files
+ */
+define("CAS_PGT_STORAGE_FILE_FORMAT_XML",'xml');
+/**
+ * Default format used when storing PGT's to file
+ */
+define("CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT",CAS_PGT_STORAGE_FILE_FORMAT_PLAIN);
+// ------------------------------------------------------------------------
+// DATABASE PGT STORAGE
+// ------------------------------------------------------------------------
+ /**
+ * default database type when storing PGT's to database
+ */
+define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE",'mysql');
+/**
+ * default host when storing PGT's to database
+ */
+define("CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME",'localhost');
+/**
+ * default port when storing PGT's to database
+ */
+define("CAS_PGT_STORAGE_DB_DEFAULT_PORT",'');
+/**
+ * default database when storing PGT's to database
+ */
+define("CAS_PGT_STORAGE_DB_DEFAULT_DATABASE",'phpCAS');
+/**
+ * default table when storing PGT's to database
+ */
+define("CAS_PGT_STORAGE_DB_DEFAULT_TABLE",'pgt');
+
+/** @} */
+// ------------------------------------------------------------------------
+// SERVICE ACCESS ERRORS
+// ------------------------------------------------------------------------
+ /**
+ * @addtogroup publicServices
+ * @{
+ */
+
+/**
+ * phpCAS::service() error code on success
+ */
+define("PHPCAS_SERVICE_OK",0);
+/**
+ * phpCAS::service() error code when the PT could not retrieve because
+ * the CAS server did not respond.
+ */
+define("PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE",1);
+/**
+ * phpCAS::service() error code when the PT could not retrieve because
+ * the response of the CAS server was ill-formed.
+ */
+define("PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE",2);
+/**
+ * phpCAS::service() error code when the PT could not retrieve because
+ * the CAS server did not want to.
+ */
+define("PHPCAS_SERVICE_PT_FAILURE",3);
+/**
+ * phpCAS::service() error code when the service was not available.
+ */
+define("PHPCAS_SERVICE_NOT AVAILABLE",4);
+
+/** @} */
+// ------------------------------------------------------------------------
+// LANGUAGES
+// ------------------------------------------------------------------------
+ /**
+ * @addtogroup publicLang
+ * @{
+ */
+
+define("PHPCAS_LANG_ENGLISH", 'english');
+define("PHPCAS_LANG_FRENCH", 'french');
+define("PHPCAS_LANG_GREEK", 'greek');
+define("PHPCAS_LANG_GERMAN", 'german');
+define("PHPCAS_LANG_JAPANESE", 'japanese');
+define("PHPCAS_LANG_SPANISH", 'spanish');
+define("PHPCAS_LANG_CATALAN", 'catalan');
+
+/** @} */
+
+/**
+ * @addtogroup internalLang
+ * @{
+ */
+
+/**
+ * phpCAS default language (when phpCAS::setLang() is not used)
+ */
+define("PHPCAS_LANG_DEFAULT", PHPCAS_LANG_ENGLISH);
+
+/** @} */
+// ------------------------------------------------------------------------
+// DEBUG
+// ------------------------------------------------------------------------
+ /**
+ * @addtogroup publicDebug
+ * @{
+ */
+
+/**
+ * The default directory for the debug file under Unix.
+ */
+define('DEFAULT_DEBUG_DIR','/tmp/');
+
+/** @} */
+// ------------------------------------------------------------------------
+// MISC
+// ------------------------------------------------------------------------
+ /**
+ * @addtogroup internalMisc
+ * @{
+ */
+
+/**
+ * This global variable is used by the interface class phpCAS.
+ *
+ * @hideinitializer
+ */
+$GLOBALS['PHPCAS_CLIENT'] = null;
+
+/**
+ * This global variable is used to store where the initializer is called from
+ * (to print a comprehensive error in case of multiple calls).
+ *
+ * @hideinitializer
+ */
+$GLOBALS['PHPCAS_INIT_CALL'] = array('done' => FALSE,
+ 'file' => '?',
+ 'line' => -1,
+ 'method' => '?');
+
+/**
+ * This global variable is used to store where the method checking
+ * the authentication is called from (to print comprehensive errors)
+ *
+ * @hideinitializer
+ */
+$GLOBALS['PHPCAS_AUTH_CHECK_CALL'] = array('done' => FALSE,
+ 'file' => '?',
+ 'line' => -1,
+ 'method' => '?',
+ 'result' => FALSE);
+
+/**
+ * This global variable is used to store phpCAS debug mode.
+ *
+ * @hideinitializer
+ */
+$GLOBALS['PHPCAS_DEBUG'] = array('filename' => FALSE,
+ 'indent' => 0,
+ 'unique_id' => '');
+
+/** @} */
+
+// ########################################################################
+// CLIENT CLASS
+// ########################################################################
+
+// include client class
+include_once(dirname(__FILE__).'/CAS/client.php');
+
+// ########################################################################
+// INTERFACE CLASS
+// ########################################################################
+
+/**
+ * @class phpCAS
+ * The phpCAS class is a simple container for the phpCAS library. It provides CAS
+ * authentication for web applications written in PHP.
+ *
+ * @ingroup public
+ * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
+ *
+ * \internal All its methods access the same object ($PHPCAS_CLIENT, declared
+ * at the end of CAS/client.php).
+ */
+
+
+
+class phpCAS
+{
+
+ // ########################################################################
+ // INITIALIZATION
+ // ########################################################################
+
+ /**
+ * @addtogroup publicInit
+ * @{
+ */
+
+ /**
+ * phpCAS client initializer.
+ * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be
+ * called, only once, and before all other methods (except phpCAS::getVersion()
+ * and phpCAS::setDebug()).
+ *
+ * @param $server_version the version of the CAS server
+ * @param $server_hostname the hostname of the CAS server
+ * @param $server_port the port the CAS server is running on
+ * @param $server_uri the URI the CAS server is responding on
+ * @param $start_session Have phpCAS start PHP sessions (default true)
+ *
+ * @return a newly created CASClient object
+ */
+ function client($server_version,
+ $server_hostname,
+ $server_port,
+ $server_uri,
+ $start_session = true)
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_INIT_CALL;
+
+ phpCAS::traceBegin();
+ if ( is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error($PHPCAS_INIT_CALL['method'].'() has already been called (at '.$PHPCAS_INIT_CALL['file'].':'.$PHPCAS_INIT_CALL['line'].')');
+ }
+ if ( gettype($server_version) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $server_version (should be `string\')');
+ }
+ if ( gettype($server_hostname) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $server_hostname (should be `string\')');
+ }
+ if ( gettype($server_port) != 'integer' ) {
+ phpCAS::error('type mismatched for parameter $server_port (should be `integer\')');
+ }
+ if ( gettype($server_uri) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $server_uri (should be `string\')');
+ }
+
+ // store where the initializer is called from
+ $dbg = phpCAS::backtrace();
+ $PHPCAS_INIT_CALL = array('done' => TRUE,
+ 'file' => $dbg[0]['file'],
+ 'line' => $dbg[0]['line'],
+ 'method' => __CLASS__.'::'.__FUNCTION__);
+
+ // initialize the global object $PHPCAS_CLIENT
+ $PHPCAS_CLIENT = new CASClient($server_version,FALSE/*proxy*/,$server_hostname,$server_port,$server_uri,$start_session);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * phpCAS proxy initializer.
+ * @note Only one of the phpCAS::client() and phpCAS::proxy functions should be
+ * called, only once, and before all other methods (except phpCAS::getVersion()
+ * and phpCAS::setDebug()).
+ *
+ * @param $server_version the version of the CAS server
+ * @param $server_hostname the hostname of the CAS server
+ * @param $server_port the port the CAS server is running on
+ * @param $server_uri the URI the CAS server is responding on
+ * @param $start_session Have phpCAS start PHP sessions (default true)
+ *
+ * @return a newly created CASClient object
+ */
+ function proxy($server_version,
+ $server_hostname,
+ $server_port,
+ $server_uri,
+ $start_session = true)
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_INIT_CALL;
+
+ phpCAS::traceBegin();
+ if ( is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error($PHPCAS_INIT_CALL['method'].'() has already been called (at '.$PHPCAS_INIT_CALL['file'].':'.$PHPCAS_INIT_CALL['line'].')');
+ }
+ if ( gettype($server_version) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $server_version (should be `string\')');
+ }
+ if ( gettype($server_hostname) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $server_hostname (should be `string\')');
+ }
+ if ( gettype($server_port) != 'integer' ) {
+ phpCAS::error('type mismatched for parameter $server_port (should be `integer\')');
+ }
+ if ( gettype($server_uri) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $server_uri (should be `string\')');
+ }
+
+ // store where the initialzer is called from
+ $dbg = phpCAS::backtrace();
+ $PHPCAS_INIT_CALL = array('done' => TRUE,
+ 'file' => $dbg[0]['file'],
+ 'line' => $dbg[0]['line'],
+ 'method' => __CLASS__.'::'.__FUNCTION__);
+
+ // initialize the global object $PHPCAS_CLIENT
+ $PHPCAS_CLIENT = new CASClient($server_version,TRUE/*proxy*/,$server_hostname,$server_port,$server_uri,$start_session);
+ phpCAS::traceEnd();
+ }
+
+ /** @} */
+ // ########################################################################
+ // DEBUGGING
+ // ########################################################################
+
+ /**
+ * @addtogroup publicDebug
+ * @{
+ */
+
+ /**
+ * Set/unset debug mode
+ *
+ * @param $filename the name of the file used for logging, or FALSE to stop debugging.
+ */
+ function setDebug($filename='')
+ {
+ global $PHPCAS_DEBUG;
+
+ if ( $filename != FALSE && gettype($filename) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $dbg (should be FALSE or the name of the log file)');
+ }
+
+ if ( empty($filename) ) {
+ if ( preg_match('/^Win.*/',getenv('OS')) ) {
+ if ( isset($_ENV['TMP']) ) {
+ $debugDir = $_ENV['TMP'].'/';
+ } else if ( isset($_ENV['TEMP']) ) {
+ $debugDir = $_ENV['TEMP'].'/';
+ } else {
+ $debugDir = '';
+ }
+ } else {
+ $debugDir = DEFAULT_DEBUG_DIR;
+ }
+ $filename = $debugDir . 'phpCAS.log';
+ }
+
+ if ( empty($PHPCAS_DEBUG['unique_id']) ) {
+ $PHPCAS_DEBUG['unique_id'] = substr(strtoupper(md5(uniqid(''))),0,4);
+ }
+
+ $PHPCAS_DEBUG['filename'] = $filename;
+
+ phpCAS::trace('START ******************');
+ }
+
+ /** @} */
+ /**
+ * @addtogroup internalDebug
+ * @{
+ */
+
+ /**
+ * This method is a wrapper for debug_backtrace() that is not available
+ * in all PHP versions (>= 4.3.0 only)
+ */
+ function backtrace()
+ {
+ if ( function_exists('debug_backtrace') ) {
+ return debug_backtrace();
+ } else {
+ // poor man's hack ... but it does work ...
+ return array();
+ }
+ }
+
+ /**
+ * Logs a string in debug mode.
+ *
+ * @param $str the string to write
+ *
+ * @private
+ */
+ function log($str)
+ {
+ $indent_str = ".";
+ global $PHPCAS_DEBUG;
+
+ if ( $PHPCAS_DEBUG['filename'] ) {
+ for ($i=0;$i<$PHPCAS_DEBUG['indent'];$i++) {
+ $indent_str .= '| ';
+ }
+ error_log($PHPCAS_DEBUG['unique_id'].' '.$indent_str.$str."\n",3,$PHPCAS_DEBUG['filename']);
+ }
+
+ }
+
+ /**
+ * This method is used by interface methods to print an error and where the function
+ * was originally called from.
+ *
+ * @param $msg the message to print
+ *
+ * @private
+ */
+ function error($msg)
+ {
+ $dbg = phpCAS::backtrace();
+ $function = '?';
+ $file = '?';
+ $line = '?';
+ if ( is_array($dbg) ) {
+ for ( $i=1; $i<sizeof($dbg); $i++) {
+ if ( is_array($dbg[$i]) ) {
+ if ( $dbg[$i]['class'] == __CLASS__ ) {
+ $function = $dbg[$i]['function'];
+ $file = $dbg[$i]['file'];
+ $line = $dbg[$i]['line'];
+ }
+ }
+ }
+ }
+ echo "<br />\n<b>phpCAS error</b>: <font color=\"FF0000\"><b>".__CLASS__."::".$function.'(): '.htmlentities($msg)."</b></font> in <b>".$file."</b> on line <b>".$line."</b><br />\n";
+ phpCAS::trace($msg);
+ phpCAS::traceExit();
+ exit();
+ }
+
+ /**
+ * This method is used to log something in debug mode.
+ */
+ function trace($str)
+ {
+ $dbg = phpCAS::backtrace();
+ phpCAS::log($str.' ['.basename($dbg[1]['file']).':'.$dbg[1]['line'].']');
+ }
+
+ /**
+ * This method is used to indicate the start of the execution of a function in debug mode.
+ */
+ function traceBegin()
+ {
+ global $PHPCAS_DEBUG;
+
+ $dbg = phpCAS::backtrace();
+ $str = '=> ';
+ if ( !empty($dbg[2]['class']) ) {
+ $str .= $dbg[2]['class'].'::';
+ }
+ $str .= $dbg[2]['function'].'(';
+ if ( is_array($dbg[2]['args']) ) {
+ foreach ($dbg[2]['args'] as $index => $arg) {
+ if ( $index != 0 ) {
+ $str .= ', ';
+ }
+ $str .= str_replace("\n","",var_export($arg,TRUE));
+ }
+ }
+ $str .= ') ['.basename($dbg[2]['file']).':'.$dbg[2]['line'].']';
+ phpCAS::log($str);
+ $PHPCAS_DEBUG['indent'] ++;
+ }
+
+ /**
+ * This method is used to indicate the end of the execution of a function in debug mode.
+ *
+ * @param $res the result of the function
+ */
+ function traceEnd($res='')
+ {
+ global $PHPCAS_DEBUG;
+
+ $PHPCAS_DEBUG['indent'] --;
+ $dbg = phpCAS::backtrace();
+ $str = '';
+ $str .= '<= '.str_replace("\n","",var_export($res,TRUE));
+ phpCAS::log($str);
+ }
+
+ /**
+ * This method is used to indicate the end of the execution of the program
+ */
+ function traceExit()
+ {
+ global $PHPCAS_DEBUG;
+
+ phpCAS::log('exit()');
+ while ( $PHPCAS_DEBUG['indent'] > 0 ) {
+ phpCAS::log('-');
+ $PHPCAS_DEBUG['indent'] --;
+ }
+ }
+
+ /** @} */
+ // ########################################################################
+ // INTERNATIONALIZATION
+ // ########################################################################
+ /**
+ * @addtogroup publicLang
+ * @{
+ */
+
+ /**
+ * This method is used to set the language used by phpCAS.
+ * @note Can be called only once.
+ *
+ * @param $lang a string representing the language.
+ *
+ * @sa PHPCAS_LANG_FRENCH, PHPCAS_LANG_ENGLISH
+ */
+ function setLang($lang)
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ if ( gettype($lang) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $lang (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setLang($lang);
+ }
+
+ /** @} */
+ // ########################################################################
+ // VERSION
+ // ########################################################################
+ /**
+ * @addtogroup public
+ * @{
+ */
+
+ /**
+ * This method returns the phpCAS version.
+ *
+ * @return the phpCAS version.
+ */
+ function getVersion()
+ {
+ return PHPCAS_VERSION;
+ }
+
+ /** @} */
+ // ########################################################################
+ // HTML OUTPUT
+ // ########################################################################
+ /**
+ * @addtogroup publicOutput
+ * @{
+ */
+
+ /**
+ * This method sets the HTML header used for all outputs.
+ *
+ * @param $header the HTML header.
+ */
+ function setHTMLHeader($header)
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ if ( gettype($header) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $header (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setHTMLHeader($header);
+ }
+
+ /**
+ * This method sets the HTML footer used for all outputs.
+ *
+ * @param $footer the HTML footer.
+ */
+ function setHTMLFooter($footer)
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ if ( gettype($footer) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $footer (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setHTMLFooter($footer);
+ }
+
+ /** @} */
+ // ########################################################################
+ // PGT STORAGE
+ // ########################################################################
+ /**
+ * @addtogroup publicPGTStorage
+ * @{
+ */
+
+ /**
+ * This method is used to tell phpCAS to store the response of the
+ * CAS server to PGT requests onto the filesystem.
+ *
+ * @param $format the format used to store the PGT's (`plain' and `xml' allowed)
+ * @param $path the path where the PGT's should be stored
+ */
+ function setPGTStorageFile($format='',
+ $path='')
+ {
+ global $PHPCAS_CLIENT,$PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_CLIENT->isProxy() ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( $PHPCAS_AUTH_CHECK_CALL['done'] ) {
+ phpCAS::error('this method should only be called before '.$PHPCAS_AUTH_CHECK_CALL['method'].'() (called at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].')');
+ }
+ if ( gettype($format) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $format (should be `string\')');
+ }
+ if ( gettype($path) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $format (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setPGTStorageFile($format,$path);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method is used to tell phpCAS to store the response of the
+ * CAS server to PGT requests into a database.
+ * @note The connection to the database is done only when needed.
+ * As a consequence, bad parameters are detected only when
+ * initializing PGT storage, except in debug mode.
+ *
+ * @param $user the user to access the data with
+ * @param $password the user's password
+ * @param $database_type the type of the database hosting the data
+ * @param $hostname the server hosting the database
+ * @param $port the port the server is listening on
+ * @param $database the name of the database
+ * @param $table the name of the table storing the data
+ */
+ function setPGTStorageDB($user,
+ $password,
+ $database_type='',
+ $hostname='',
+ $port=0,
+ $database='',
+ $table='')
+ {
+ global $PHPCAS_CLIENT,$PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_CLIENT->isProxy() ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( $PHPCAS_AUTH_CHECK_CALL['done'] ) {
+ phpCAS::error('this method should only be called before '.$PHPCAS_AUTH_CHECK_CALL['method'].'() (called at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].')');
+ }
+ if ( gettype($user) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $user (should be `string\')');
+ }
+ if ( gettype($password) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $password (should be `string\')');
+ }
+ if ( gettype($database_type) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $database_type (should be `string\')');
+ }
+ if ( gettype($hostname) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $hostname (should be `string\')');
+ }
+ if ( gettype($port) != 'integer' ) {
+ phpCAS::error('type mismatched for parameter $port (should be `integer\')');
+ }
+ if ( gettype($database) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $database (should be `string\')');
+ }
+ if ( gettype($table) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $table (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setPGTStorageDB($user,$password,$database_type,$hostname,$port,$database,$table);
+ phpCAS::traceEnd();
+ }
+
+ /** @} */
+ // ########################################################################
+ // ACCESS TO EXTERNAL SERVICES
+ // ########################################################################
+ /**
+ * @addtogroup publicServices
+ * @{
+ */
+
+ /**
+ * This method is used to access an HTTP[S] service.
+ *
+ * @param $url the service to access.
+ * @param $err_code an error code Possible values are PHPCAS_SERVICE_OK (on
+ * success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE,
+ * PHPCAS_SERVICE_PT_FAILURE, PHPCAS_SERVICE_NOT AVAILABLE.
+ * @param $output the output of the service (also used to give an error
+ * message on failure).
+ *
+ * @return TRUE on success, FALSE otherwise (in this later case, $err_code
+ * gives the reason why it failed and $output contains an error message).
+ */
+ function serviceWeb($url,&$err_code,&$output)
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_CLIENT->isProxy() ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {
+ phpCAS::error('this method should only be called after the programmer is sure the user has been authenticated (by calling '.__CLASS__.'::checkAuthentication() or '.__CLASS__.'::forceAuthentication()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {
+ phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be `string\')');
+ }
+
+ $res = $PHPCAS_CLIENT->serviceWeb($url,$err_code,$output);
+
+ phpCAS::traceEnd($res);
+ return $res;
+ }
+
+ /**
+ * This method is used to access an IMAP/POP3/NNTP service.
+ *
+ * @param $url a string giving the URL of the service, including the mailing box
+ * for IMAP URLs, as accepted by imap_open().
+ * @param $service a string giving for CAS retrieve Proxy ticket
+ * @param $flags options given to imap_open().
+ * @param $err_code an error code Possible values are PHPCAS_SERVICE_OK (on
+ * success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE,
+ * PHPCAS_SERVICE_PT_FAILURE, PHPCAS_SERVICE_NOT AVAILABLE.
+ * @param $err_msg an error message on failure
+ * @param $pt the Proxy Ticket (PT) retrieved from the CAS server to access the URL
+ * on success, FALSE on error).
+ *
+ * @return an IMAP stream on success, FALSE otherwise (in this later case, $err_code
+ * gives the reason why it failed and $err_msg contains an error message).
+ */
+ function serviceMail($url,$service,$flags,&$err_code,&$err_msg,&$pt)
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_CLIENT->isProxy() ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {
+ phpCAS::error('this method should only be called after the programmer is sure the user has been authenticated (by calling '.__CLASS__.'::checkAuthentication() or '.__CLASS__.'::forceAuthentication()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {
+ phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be `string\')');
+ }
+
+ if ( gettype($flags) != 'integer' ) {
+ phpCAS::error('type mismatched for parameter $flags (should be `integer\')');
+ }
+
+ $res = $PHPCAS_CLIENT->serviceMail($url,$service,$flags,$err_code,$err_msg,$pt);
+
+ phpCAS::traceEnd($res);
+ return $res;
+ }
+
+ /** @} */
+ // ########################################################################
+ // AUTHENTICATION
+ // ########################################################################
+ /**
+ * @addtogroup publicAuth
+ * @{
+ */
+
+ /**
+ * Set the times authentication will be cached before really accessing the CAS server in gateway mode:
+ * - -1: check only once, and then never again (until you pree login)
+ * - 0: always check
+ * - n: check every "n" time
+ *
+ * @param $n an integer.
+ */
+ function setCacheTimesForAuthRecheck($n)
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ if ( gettype($n) != 'integer' ) {
+ phpCAS::error('type mismatched for parameter $header (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setCacheTimesForAuthRecheck($n);
+ }
+
+ /**
+ * This method is called to check if the user is authenticated (use the gateway feature).
+ * @return TRUE when the user is authenticated; otherwise FALSE.
+ */
+ function checkAuthentication()
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+
+ $auth = $PHPCAS_CLIENT->checkAuthentication();
+
+ // store where the authentication has been checked and the result
+ $dbg = phpCAS::backtrace();
+ $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE,
+ 'file' => $dbg[0]['file'],
+ 'line' => $dbg[0]['line'],
+ 'method' => __CLASS__.'::'.__FUNCTION__,
+ 'result' => $auth );
+ phpCAS::traceEnd($auth);
+ return $auth;
+ }
+
+ /**
+ * This method is called to force authentication if the user was not already
+ * authenticated. If the user is not authenticated, halt by redirecting to
+ * the CAS server.
+ */
+ function forceAuthentication()
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+
+ $auth = $PHPCAS_CLIENT->forceAuthentication();
+
+ // store where the authentication has been checked and the result
+ $dbg = phpCAS::backtrace();
+ $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE,
+ 'file' => $dbg[0]['file'],
+ 'line' => $dbg[0]['line'],
+ 'method' => __CLASS__.'::'.__FUNCTION__,
+ 'result' => $auth );
+
+ if ( !$auth ) {
+ phpCAS::trace('user is not authenticated, redirecting to the CAS server');
+ $PHPCAS_CLIENT->forceAuthentication();
+ } else {
+ phpCAS::trace('no need to authenticate (user `'.phpCAS::getUser().'\' is already authenticated)');
+ }
+
+ phpCAS::traceEnd();
+ return $auth;
+ }
+
+ /**
+ * This method is called to renew the authentication.
+ **/
+ function renewAuthentication() {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before'.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+
+ // store where the authentication has been checked and the result
+ $dbg = phpCAS::backtrace();
+ $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE, 'file' => $dbg[0]['file'], 'line' => $dbg[0]['line'], 'method' => __CLASS__.'::'.__FUNCTION__, 'result' => $auth );
+
+ $PHPCAS_CLIENT->renewAuthentication();
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method has been left from version 0.4.1 for compatibility reasons.
+ */
+ function authenticate()
+ {
+ phpCAS::error('this method is deprecated. You should use '.__CLASS__.'::forceAuthentication() instead');
+ }
+
+ /**
+ * This method is called to check if the user is authenticated (previously or by
+ * tickets given in the URL).
+ *
+ * @return TRUE when the user is authenticated.
+ */
+ function isAuthenticated()
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+
+ // call the isAuthenticated method of the global $PHPCAS_CLIENT object
+ $auth = $PHPCAS_CLIENT->isAuthenticated();
+
+ // store where the authentication has been checked and the result
+ $dbg = phpCAS::backtrace();
+ $PHPCAS_AUTH_CHECK_CALL = array('done' => TRUE,
+ 'file' => $dbg[0]['file'],
+ 'line' => $dbg[0]['line'],
+ 'method' => __CLASS__.'::'.__FUNCTION__,
+ 'result' => $auth );
+ phpCAS::traceEnd($auth);
+ return $auth;
+ }
+
+ /**
+ * Checks whether authenticated based on $_SESSION. Useful to avoid
+ * server calls.
+ * @return true if authenticated, false otherwise.
+ * @since 0.4.22 by Brendan Arnold
+ */
+ function isSessionAuthenticated ()
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ return($PHPCAS_CLIENT->isSessionAuthenticated());
+ }
+
+ /**
+ * This method returns the CAS user's login name.
+ * @warning should not be called only after phpCAS::forceAuthentication()
+ * or phpCAS::checkAuthentication().
+ *
+ * @return the login name of the authenticated user
+ */
+ function getUser()
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {
+ phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');
+ }
+ return $PHPCAS_CLIENT->getUser();
+ }
+
+ /**
+ * This method returns the CAS user's login name.
+ * @warning should not be called only after phpCAS::forceAuthentication()
+ * or phpCAS::checkAuthentication().
+ *
+ * @return the login name of the authenticated user
+ */
+ function getAttributes()
+ {
+ global $PHPCAS_CLIENT, $PHPCAS_AUTH_CHECK_CALL;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['done'] ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()');
+ }
+ if ( !$PHPCAS_AUTH_CHECK_CALL['result'] ) {
+ phpCAS::error('authentication was checked (by '.$PHPCAS_AUTH_CHECK_CALL['method'].'() at '.$PHPCAS_AUTH_CHECK_CALL['file'].':'.$PHPCAS_AUTH_CHECK_CALL['line'].') but the method returned FALSE');
+ }
+ return $PHPCAS_CLIENT->getAttributes();
+ }
+ /**
+ * Handle logout requests.
+ */
+ function handleLogoutRequests($check_client=true, $allowed_clients=false)
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ return($PHPCAS_CLIENT->handleLogoutRequests($check_client, $allowed_clients));
+ }
+
+ /**
+ * This method returns the URL to be used to login.
+ * or phpCAS::isAuthenticated().
+ *
+ * @return the login name of the authenticated user
+ */
+ function getServerLoginURL()
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ return $PHPCAS_CLIENT->getServerLoginURL();
+ }
+
+ /**
+ * Set the login URL of the CAS server.
+ * @param $url the login URL
+ * @since 0.4.21 by Wyman Chan
+ */
+ function setServerLoginURL($url='')
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after
+ '.__CLASS__.'::client()');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be
+ `string\')');
+ }
+ $PHPCAS_CLIENT->setServerLoginURL($url);
+ phpCAS::traceEnd();
+ }
+
+
+ /**
+ * Set the serviceValidate URL of the CAS server.
+ * @param $url the serviceValidate URL
+ * @since 1.1.0 by Joachim Fritschi
+ */
+ function setServerServiceValidateURL($url='')
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after
+ '.__CLASS__.'::client()');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be
+ `string\')');
+ }
+ $PHPCAS_CLIENT->setServerServiceValidateURL($url);
+ phpCAS::traceEnd();
+ }
+
+
+ /**
+ * Set the proxyValidate URL of the CAS server.
+ * @param $url the proxyValidate URL
+ * @since 1.1.0 by Joachim Fritschi
+ */
+ function setServerProxyValidateURL($url='')
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after
+ '.__CLASS__.'::client()');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be
+ `string\')');
+ }
+ $PHPCAS_CLIENT->setServerProxyValidateURL($url);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * Set the samlValidate URL of the CAS server.
+ * @param $url the samlValidate URL
+ * @since 1.1.0 by Joachim Fritschi
+ */
+ function setServerSamlValidateURL($url='')
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after
+ '.__CLASS__.'::client()');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be
+ `string\')');
+ }
+ $PHPCAS_CLIENT->setServerSamlValidateURL($url);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method returns the URL to be used to login.
+ * or phpCAS::isAuthenticated().
+ *
+ * @return the login name of the authenticated user
+ */
+ function getServerLogoutURL()
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should not be called before '.__CLASS__.'::client() or '.__CLASS__.'::proxy()');
+ }
+ return $PHPCAS_CLIENT->getServerLogoutURL();
+ }
+
+ /**
+ * Set the logout URL of the CAS server.
+ * @param $url the logout URL
+ * @since 0.4.21 by Wyman Chan
+ */
+ function setServerLogoutURL($url='')
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after
+ '.__CLASS__.'::client()');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be
+ `string\')');
+ }
+ $PHPCAS_CLIENT->setServerLogoutURL($url);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method is used to logout from CAS.
+ * @params $params an array that contains the optional url and service parameters that will be passed to the CAS server
+ * @public
+ */
+ function logout($params = "") {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if (!is_object($PHPCAS_CLIENT)) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ $parsedParams = array();
+ if ($params != "") {
+ if (is_string($params)) {
+ phpCAS::error('method `phpCAS::logout($url)\' is now deprecated, use `phpCAS::logoutWithUrl($url)\' instead');
+ }
+ if (!is_array($params)) {
+ phpCAS::error('type mismatched for parameter $params (should be `array\')');
+ }
+ foreach ($params as $key => $value) {
+ if ($key != "service" && $key != "url") {
+ phpCAS::error('only `url\' and `service\' parameters are allowed for method `phpCAS::logout($params)\'');
+ }
+ $parsedParams[$key] = $value;
+ }
+ }
+ $PHPCAS_CLIENT->logout($parsedParams);
+ // never reached
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method is used to logout from CAS. Halts by redirecting to the CAS server.
+ * @param $service a URL that will be transmitted to the CAS server
+ */
+ function logoutWithRedirectService($service) {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ if (!is_string($service)) {
+ phpCAS::error('type mismatched for parameter $service (should be `string\')');
+ }
+ $PHPCAS_CLIENT->logout(array("service" => $service));
+ // never reached
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method is used to logout from CAS. Halts by redirecting to the CAS server.
+ * @param $url a URL that will be transmitted to the CAS server
+ */
+ function logoutWithUrl($url) {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ if (!is_string($url)) {
+ phpCAS::error('type mismatched for parameter $url (should be `string\')');
+ }
+ $PHPCAS_CLIENT->logout(array("url" => $url));
+ // never reached
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method is used to logout from CAS. Halts by redirecting to the CAS server.
+ * @param $service a URL that will be transmitted to the CAS server
+ * @param $url a URL that will be transmitted to the CAS server
+ */
+ function logoutWithRedirectServiceAndUrl($service, $url) {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ if (!is_string($service)) {
+ phpCAS::error('type mismatched for parameter $service (should be `string\')');
+ }
+ if (!is_string($url)) {
+ phpCAS::error('type mismatched for parameter $url (should be `string\')');
+ }
+ $PHPCAS_CLIENT->logout(array("service" => $service, "url" => $url));
+ // never reached
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * Set the fixed URL that will be used by the CAS server to transmit the PGT.
+ * When this method is not called, a phpCAS script uses its own URL for the callback.
+ *
+ * @param $url the URL
+ */
+ function setFixedCallbackURL($url='')
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( !$PHPCAS_CLIENT->isProxy() ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setCallbackURL($url);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * Set the fixed URL that will be set as the CAS service parameter. When this
+ * method is not called, a phpCAS script uses its own URL.
+ *
+ * @param $url the URL
+ */
+ function setFixedServiceURL($url)
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( gettype($url) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $url (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setURL($url);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * Get the URL that is set as the CAS service parameter.
+ */
+ function getServiceURL()
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ return($PHPCAS_CLIENT->getURL());
+ }
+
+ /**
+ * Retrieve a Proxy Ticket from the CAS server.
+ */
+ function retrievePT($target_service,&$err_code,&$err_msg)
+ {
+ global $PHPCAS_CLIENT;
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::proxy()');
+ }
+ if ( gettype($target_service) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $target_service(should be `string\')');
+ }
+ return($PHPCAS_CLIENT->retrievePT($target_service,$err_code,$err_msg));
+ }
+
+ /**
+ * Set the certificate of the CAS server.
+ *
+ * @param $cert the PEM certificate
+ */
+ function setCasServerCert($cert)
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ if ( gettype($cert) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $cert (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setCasServerCert($cert);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * Set the certificate of the CAS server CA.
+ *
+ * @param $cert the CA certificate
+ */
+ function setCasServerCACert($cert)
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ if ( gettype($cert) != 'string' ) {
+ phpCAS::error('type mismatched for parameter $cert (should be `string\')');
+ }
+ $PHPCAS_CLIENT->setCasServerCACert($cert);
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * Set no SSL validation for the CAS server.
+ */
+ function setNoCasServerValidation()
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ $PHPCAS_CLIENT->setNoCasServerValidation();
+ phpCAS::traceEnd();
+ }
+
+ /** @} */
+
+ /**
+ * Change CURL options.
+ * CURL is used to connect through HTTPS to CAS server
+ * @param $key the option key
+ * @param $value the value to set
+ */
+ function setExtraCurlOption($key, $value)
+ {
+ global $PHPCAS_CLIENT;
+ phpCAS::traceBegin();
+ if ( !is_object($PHPCAS_CLIENT) ) {
+ phpCAS::error('this method should only be called after '.__CLASS__.'::client() or'.__CLASS__.'::proxy()');
+ }
+ $PHPCAS_CLIENT->setExtraCurlOption($key, $value);
+ phpCAS::traceEnd();
+ }
+
+}
+
+// ########################################################################
+// DOCUMENTATION
+// ########################################################################
+
+// ########################################################################
+// MAIN PAGE
+
+/**
+ * @mainpage
+ *
+ * The following pages only show the source documentation.
+ *
+ */
+
+// ########################################################################
+// MODULES DEFINITION
+
+/** @defgroup public User interface */
+
+/** @defgroup publicInit Initialization
+ * @ingroup public */
+
+/** @defgroup publicAuth Authentication
+ * @ingroup public */
+
+/** @defgroup publicServices Access to external services
+ * @ingroup public */
+
+/** @defgroup publicConfig Configuration
+ * @ingroup public */
+
+/** @defgroup publicLang Internationalization
+ * @ingroup publicConfig */
+
+/** @defgroup publicOutput HTML output
+ * @ingroup publicConfig */
+
+/** @defgroup publicPGTStorage PGT storage
+ * @ingroup publicConfig */
+
+/** @defgroup publicDebug Debugging
+ * @ingroup public */
+
+
+/** @defgroup internal Implementation */
+
+/** @defgroup internalAuthentication Authentication
+ * @ingroup internal */
+
+/** @defgroup internalBasic CAS Basic client features (CAS 1.0, Service Tickets)
+ * @ingroup internal */
+
+/** @defgroup internalProxy CAS Proxy features (CAS 2.0, Proxy Granting Tickets)
+ * @ingroup internal */
+
+/** @defgroup internalPGTStorage PGT storage
+ * @ingroup internalProxy */
+
+/** @defgroup internalPGTStorageDB PGT storage in a database
+ * @ingroup internalPGTStorage */
+
+/** @defgroup internalPGTStorageFile PGT storage on the filesystem
+ * @ingroup internalPGTStorage */
+
+/** @defgroup internalCallback Callback from the CAS server
+ * @ingroup internalProxy */
+
+/** @defgroup internalProxied CAS proxied client features (CAS 2.0, Proxy Tickets)
+ * @ingroup internal */
+
+/** @defgroup internalConfig Configuration
+ * @ingroup internal */
+
+/** @defgroup internalOutput HTML output
+ * @ingroup internalConfig */
+
+/** @defgroup internalLang Internationalization
+ * @ingroup internalConfig
+ *
+ * To add a new language:
+ * - 1. define a new constant PHPCAS_LANG_XXXXXX in CAS/CAS.php
+ * - 2. copy any file from CAS/languages to CAS/languages/XXXXXX.php
+ * - 3. Make the translations
+ */
+
+/** @defgroup internalDebug Debugging
+ * @ingroup internal */
+
+/** @defgroup internalMisc Miscellaneous
+ * @ingroup internal */
+
+// ########################################################################
+// EXAMPLES
+
+/**
+ * @example example_simple.php
+ */
+ /**
+ * @example example_proxy.php
+ */
+ /**
+ * @example example_proxy2.php
+ */
+ /**
+ * @example example_lang.php
+ */
+ /**
+ * @example example_html.php
+ */
+ /**
+ * @example example_file.php
+ */
+ /**
+ * @example example_db.php
+ */
+ /**
+ * @example example_service.php
+ */
+ /**
+ * @example example_session_proxy.php
+ */
+ /**
+ * @example example_session_service.php
+ */
+ /**
+ * @example example_gateway.php
+ */
+
+
+
+?>
diff --git a/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-db.php b/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-db.php index 00797b9c5..5a589e4b2 100644 --- a/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-db.php +++ b/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-db.php @@ -1,190 +1,190 @@ -<?php - -/** - * @file CAS/PGTStorage/pgt-db.php - * Basic class for PGT database storage - */ - -/** - * @class PGTStorageDB - * The PGTStorageDB class is a class for PGT database storage. An instance of - * this class is returned by CASClient::SetPGTStorageDB(). - * - * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> - * - * @ingroup internalPGTStorageDB - */ - -class PGTStorageDB extends PGTStorage -{ - /** - * @addtogroup internalPGTStorageDB - * @{ - */ - - /** - * a string representing a PEAR DB URL to connect to the database. Written by - * PGTStorageDB::PGTStorageDB(), read by getURL(). - * - * @hideinitializer - * @private - */ - var $_url=''; - - /** - * This method returns the PEAR DB URL to use to connect to the database. - * - * @return a PEAR DB URL - * - * @private - */ - function getURL() - { - return $this->_url; - } - - /** - * The handle of the connection to the database where PGT's are stored. Written by - * PGTStorageDB::init(), read by getLink(). - * - * @hideinitializer - * @private - */ - var $_link = null; - - /** - * This method returns the handle of the connection to the database where PGT's are - * stored. - * - * @return a handle of connection. - * - * @private - */ - function getLink() - { - return $this->_link; - } - - /** - * The name of the table where PGT's are stored. Written by - * PGTStorageDB::PGTStorageDB(), read by getTable(). - * - * @hideinitializer - * @private - */ - var $_table = ''; - - /** - * This method returns the name of the table where PGT's are stored. - * - * @return the name of a table. - * - * @private - */ - function getTable() - { - return $this->_table; - } - - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * This method returns an informational string giving the type of storage - * used by the object (used for debugging purposes). - * - * @return an informational string. - * @public - */ - function getStorageType() - { - return "database"; - } - - /** - * This method returns an informational string giving informations on the - * parameters of the storage.(used for debugging purposes). - * - * @public - */ - function getStorageInfo() - { - return 'url=`'.$this->getURL().'\', table=`'.$this->getTable().'\''; - } - - // ######################################################################## - // CONSTRUCTOR - // ######################################################################## - - /** - * The class constructor, called by CASClient::SetPGTStorageDB(). - * - * @param $cas_parent the CASClient instance that creates the object. - * @param $user the user to access the data with - * @param $password the user's password - * @param $database_type the type of the database hosting the data - * @param $hostname the server hosting the database - * @param $port the port the server is listening on - * @param $database the name of the database - * @param $table the name of the table storing the data - * - * @public - */ - function PGTStorageDB($cas_parent,$user,$password,$database_type,$hostname,$port,$database,$table) - { - phpCAS::traceBegin(); - - // call the ancestor's constructor - $this->PGTStorage($cas_parent); - - if ( empty($database_type) ) $database_type = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE; - if ( empty($hostname) ) $hostname = CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME; - if ( $port==0 ) $port = CAS_PGT_STORAGE_DB_DEFAULT_PORT; - if ( empty($database) ) $database = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE; - if ( empty($table) ) $table = CAS_PGT_STORAGE_DB_DEFAULT_TABLE; - - // build and store the PEAR DB URL - $this->_url = $database_type.':'.'//'.$user.':'.$password.'@'.$hostname.':'.$port.'/'.$database; - - // XXX should use setURL and setTable - phpCAS::traceEnd(); - } - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * This method is used to initialize the storage. Halts on error. - * - * @public - */ - function init() - { - phpCAS::traceBegin(); - // if the storage has already been initialized, return immediatly - if ( $this->isInitialized() ) - return; - // call the ancestor's method (mark as initialized) - parent::init(); - - //include phpDB library (the test was introduced in release 0.4.8 for - //the integration into Tikiwiki). - if (!class_exists('DB')) { - include_once('DB.php'); - } - - // try to connect to the database - $this->_link = DB::connect($this->getURL()); - if ( DB::isError($this->_link) ) { - phpCAS::error('could not connect to database ('.DB::errorMessage($this->_link).')'); - } - var_dump($this->_link); - phpCAS::traceBEnd(); - } - - /** @} */ -} - +<?php
+
+/**
+ * @file CAS/PGTStorage/pgt-db.php
+ * Basic class for PGT database storage
+ */
+
+/**
+ * @class PGTStorageDB
+ * The PGTStorageDB class is a class for PGT database storage. An instance of
+ * this class is returned by CASClient::SetPGTStorageDB().
+ *
+ * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
+ *
+ * @ingroup internalPGTStorageDB
+ */
+
+class PGTStorageDB extends PGTStorage
+{
+ /**
+ * @addtogroup internalPGTStorageDB
+ * @{
+ */
+
+ /**
+ * a string representing a PEAR DB URL to connect to the database. Written by
+ * PGTStorageDB::PGTStorageDB(), read by getURL().
+ *
+ * @hideinitializer
+ * @private
+ */
+ var $_url='';
+
+ /**
+ * This method returns the PEAR DB URL to use to connect to the database.
+ *
+ * @return a PEAR DB URL
+ *
+ * @private
+ */
+ function getURL()
+ {
+ return $this->_url;
+ }
+
+ /**
+ * The handle of the connection to the database where PGT's are stored. Written by
+ * PGTStorageDB::init(), read by getLink().
+ *
+ * @hideinitializer
+ * @private
+ */
+ var $_link = null;
+
+ /**
+ * This method returns the handle of the connection to the database where PGT's are
+ * stored.
+ *
+ * @return a handle of connection.
+ *
+ * @private
+ */
+ function getLink()
+ {
+ return $this->_link;
+ }
+
+ /**
+ * The name of the table where PGT's are stored. Written by
+ * PGTStorageDB::PGTStorageDB(), read by getTable().
+ *
+ * @hideinitializer
+ * @private
+ */
+ var $_table = '';
+
+ /**
+ * This method returns the name of the table where PGT's are stored.
+ *
+ * @return the name of a table.
+ *
+ * @private
+ */
+ function getTable()
+ {
+ return $this->_table;
+ }
+
+ // ########################################################################
+ // DEBUGGING
+ // ########################################################################
+
+ /**
+ * This method returns an informational string giving the type of storage
+ * used by the object (used for debugging purposes).
+ *
+ * @return an informational string.
+ * @public
+ */
+ function getStorageType()
+ {
+ return "database";
+ }
+
+ /**
+ * This method returns an informational string giving informations on the
+ * parameters of the storage.(used for debugging purposes).
+ *
+ * @public
+ */
+ function getStorageInfo()
+ {
+ return 'url=`'.$this->getURL().'\', table=`'.$this->getTable().'\'';
+ }
+
+ // ########################################################################
+ // CONSTRUCTOR
+ // ########################################################################
+
+ /**
+ * The class constructor, called by CASClient::SetPGTStorageDB().
+ *
+ * @param $cas_parent the CASClient instance that creates the object.
+ * @param $user the user to access the data with
+ * @param $password the user's password
+ * @param $database_type the type of the database hosting the data
+ * @param $hostname the server hosting the database
+ * @param $port the port the server is listening on
+ * @param $database the name of the database
+ * @param $table the name of the table storing the data
+ *
+ * @public
+ */
+ function PGTStorageDB($cas_parent,$user,$password,$database_type,$hostname,$port,$database,$table)
+ {
+ phpCAS::traceBegin();
+
+ // call the ancestor's constructor
+ $this->PGTStorage($cas_parent);
+
+ if ( empty($database_type) ) $database_type = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE_TYPE;
+ if ( empty($hostname) ) $hostname = CAS_PGT_STORAGE_DB_DEFAULT_HOSTNAME;
+ if ( $port==0 ) $port = CAS_PGT_STORAGE_DB_DEFAULT_PORT;
+ if ( empty($database) ) $database = CAS_PGT_STORAGE_DB_DEFAULT_DATABASE;
+ if ( empty($table) ) $table = CAS_PGT_STORAGE_DB_DEFAULT_TABLE;
+
+ // build and store the PEAR DB URL
+ $this->_url = $database_type.':'.'//'.$user.':'.$password.'@'.$hostname.':'.$port.'/'.$database;
+
+ // XXX should use setURL and setTable
+ phpCAS::traceEnd();
+ }
+
+ // ########################################################################
+ // INITIALIZATION
+ // ########################################################################
+
+ /**
+ * This method is used to initialize the storage. Halts on error.
+ *
+ * @public
+ */
+ function init()
+ {
+ phpCAS::traceBegin();
+ // if the storage has already been initialized, return immediatly
+ if ( $this->isInitialized() )
+ return;
+ // call the ancestor's method (mark as initialized)
+ parent::init();
+
+ //include phpDB library (the test was introduced in release 0.4.8 for
+ //the integration into Tikiwiki).
+ if (!class_exists('DB')) {
+ include_once('DB.php');
+ }
+
+ // try to connect to the database
+ $this->_link = DB::connect($this->getURL());
+ if ( DB::isError($this->_link) ) {
+ phpCAS::error('could not connect to database ('.DB::errorMessage($this->_link).')');
+ }
+ var_dump($this->_link);
+ phpCAS::traceBEnd();
+ }
+
+ /** @} */
+}
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-file.php b/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-file.php index d48a60d67..bc07485b8 100644 --- a/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-file.php +++ b/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-file.php @@ -1,249 +1,249 @@ -<?php - -/** - * @file CAS/PGTStorage/pgt-file.php - * Basic class for PGT file storage - */ - -/** - * @class PGTStorageFile - * The PGTStorageFile class is a class for PGT file storage. An instance of - * this class is returned by CASClient::SetPGTStorageFile(). - * - * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> - * - * @ingroup internalPGTStorageFile - */ - -class PGTStorageFile extends PGTStorage -{ - /** - * @addtogroup internalPGTStorageFile - * @{ - */ - - /** - * a string telling where PGT's should be stored on the filesystem. Written by - * PGTStorageFile::PGTStorageFile(), read by getPath(). - * - * @private - */ - var $_path; - - /** - * This method returns the name of the directory where PGT's should be stored - * on the filesystem. - * - * @return the name of a directory (with leading and trailing '/') - * - * @private - */ - function getPath() - { - return $this->_path; - } - - /** - * a string telling the format to use to store PGT's (plain or xml). Written by - * PGTStorageFile::PGTStorageFile(), read by getFormat(). - * - * @private - */ - var $_format; - - /** - * This method returns the format to use when storing PGT's on the filesystem. - * - * @return a string corresponding to the format used (plain or xml). - * - * @private - */ - function getFormat() - { - return $this->_format; - } - - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * This method returns an informational string giving the type of storage - * used by the object (used for debugging purposes). - * - * @return an informational string. - * @public - */ - function getStorageType() - { - return "file"; - } - - /** - * This method returns an informational string giving informations on the - * parameters of the storage.(used for debugging purposes). - * - * @return an informational string. - * @public - */ - function getStorageInfo() - { - return 'path=`'.$this->getPath().'\', format=`'.$this->getFormat().'\''; - } - - // ######################################################################## - // CONSTRUCTOR - // ######################################################################## - - /** - * The class constructor, called by CASClient::SetPGTStorageFile(). - * - * @param $cas_parent the CASClient instance that creates the object. - * @param $format the format used to store the PGT's (`plain' and `xml' allowed). - * @param $path the path where the PGT's should be stored - * - * @public - */ - function PGTStorageFile($cas_parent,$format,$path) - { - phpCAS::traceBegin(); - // call the ancestor's constructor - $this->PGTStorage($cas_parent); - - if (empty($format) ) $format = CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT; - if (empty($path) ) $path = CAS_PGT_STORAGE_FILE_DEFAULT_PATH; - - // check that the path is an absolute path - if (getenv("OS")=="Windows_NT"){ - - if (!preg_match('`^[a-zA-Z]:`', $path)) { - phpCAS::error('an absolute path is needed for PGT storage to file'); - } - - } - else - { - - if ( $path[0] != '/' ) { - phpCAS::error('an absolute path is needed for PGT storage to file'); - } - - // store the path (with a leading and trailing '/') - $path = preg_replace('|[/]*$|','/',$path); - $path = preg_replace('|^[/]*|','/',$path); - } - - $this->_path = $path; - // check the format and store it - switch ($format) { - case CAS_PGT_STORAGE_FILE_FORMAT_PLAIN: - case CAS_PGT_STORAGE_FILE_FORMAT_XML: - $this->_format = $format; - break; - default: - phpCAS::error('unknown PGT file storage format (`'.CAS_PGT_STORAGE_FILE_FORMAT_PLAIN.'\' and `'.CAS_PGT_STORAGE_FILE_FORMAT_XML.'\' allowed)'); - } - phpCAS::traceEnd(); - } - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * This method is used to initialize the storage. Halts on error. - * - * @public - */ - function init() - { - phpCAS::traceBegin(); - // if the storage has already been initialized, return immediatly - if ( $this->isInitialized() ) - return; - // call the ancestor's method (mark as initialized) - parent::init(); - phpCAS::traceEnd(); - } - - // ######################################################################## - // PGT I/O - // ######################################################################## - - /** - * This method returns the filename corresponding to a PGT Iou. - * - * @param $pgt_iou the PGT iou. - * - * @return a filename - * @private - */ - function getPGTIouFilename($pgt_iou) - { - phpCAS::traceBegin(); - $filename = $this->getPath().$pgt_iou.'.'.$this->getFormat(); - phpCAS::traceEnd($filename); - return $filename; - } - - /** - * This method stores a PGT and its corresponding PGT Iou into a file. Echoes a - * warning on error. - * - * @param $pgt the PGT - * @param $pgt_iou the PGT iou - * - * @public - */ - function write($pgt,$pgt_iou) - { - phpCAS::traceBegin(); - $fname = $this->getPGTIouFilename($pgt_iou); - if ( $f=fopen($fname,"w") ) { - if ( fputs($f,$pgt) === FALSE ) { - phpCAS::error('could not write PGT to `'.$fname.'\''); - } - fclose($f); - } else { - phpCAS::error('could not open `'.$fname.'\''); - } - phpCAS::traceEnd(); - } - - /** - * This method reads a PGT corresponding to a PGT Iou and deletes the - * corresponding file. - * - * @param $pgt_iou the PGT iou - * - * @return the corresponding PGT, or FALSE on error - * - * @public - */ - function read($pgt_iou) - { - phpCAS::traceBegin(); - $pgt = FALSE; - $fname = $this->getPGTIouFilename($pgt_iou); - if ( !($f=fopen($fname,"r")) ) { - phpCAS::trace('could not open `'.$fname.'\''); - } else { - if ( ($pgt=fgets($f)) === FALSE ) { - phpCAS::trace('could not read PGT from `'.$fname.'\''); - } - fclose($f); - } - - // delete the PGT file - @unlink($fname); - - phpCAS::traceEnd($pgt); - return $pgt; - } - - /** @} */ - -} - - +<?php
+
+/**
+ * @file CAS/PGTStorage/pgt-file.php
+ * Basic class for PGT file storage
+ */
+
+/**
+ * @class PGTStorageFile
+ * The PGTStorageFile class is a class for PGT file storage. An instance of
+ * this class is returned by CASClient::SetPGTStorageFile().
+ *
+ * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
+ *
+ * @ingroup internalPGTStorageFile
+ */
+
+class PGTStorageFile extends PGTStorage
+{
+ /**
+ * @addtogroup internalPGTStorageFile
+ * @{
+ */
+
+ /**
+ * a string telling where PGT's should be stored on the filesystem. Written by
+ * PGTStorageFile::PGTStorageFile(), read by getPath().
+ *
+ * @private
+ */
+ var $_path;
+
+ /**
+ * This method returns the name of the directory where PGT's should be stored
+ * on the filesystem.
+ *
+ * @return the name of a directory (with leading and trailing '/')
+ *
+ * @private
+ */
+ function getPath()
+ {
+ return $this->_path;
+ }
+
+ /**
+ * a string telling the format to use to store PGT's (plain or xml). Written by
+ * PGTStorageFile::PGTStorageFile(), read by getFormat().
+ *
+ * @private
+ */
+ var $_format;
+
+ /**
+ * This method returns the format to use when storing PGT's on the filesystem.
+ *
+ * @return a string corresponding to the format used (plain or xml).
+ *
+ * @private
+ */
+ function getFormat()
+ {
+ return $this->_format;
+ }
+
+ // ########################################################################
+ // DEBUGGING
+ // ########################################################################
+
+ /**
+ * This method returns an informational string giving the type of storage
+ * used by the object (used for debugging purposes).
+ *
+ * @return an informational string.
+ * @public
+ */
+ function getStorageType()
+ {
+ return "file";
+ }
+
+ /**
+ * This method returns an informational string giving informations on the
+ * parameters of the storage.(used for debugging purposes).
+ *
+ * @return an informational string.
+ * @public
+ */
+ function getStorageInfo()
+ {
+ return 'path=`'.$this->getPath().'\', format=`'.$this->getFormat().'\'';
+ }
+
+ // ########################################################################
+ // CONSTRUCTOR
+ // ########################################################################
+
+ /**
+ * The class constructor, called by CASClient::SetPGTStorageFile().
+ *
+ * @param $cas_parent the CASClient instance that creates the object.
+ * @param $format the format used to store the PGT's (`plain' and `xml' allowed).
+ * @param $path the path where the PGT's should be stored
+ *
+ * @public
+ */
+ function PGTStorageFile($cas_parent,$format,$path)
+ {
+ phpCAS::traceBegin();
+ // call the ancestor's constructor
+ $this->PGTStorage($cas_parent);
+
+ if (empty($format) ) $format = CAS_PGT_STORAGE_FILE_DEFAULT_FORMAT;
+ if (empty($path) ) $path = CAS_PGT_STORAGE_FILE_DEFAULT_PATH;
+
+ // check that the path is an absolute path
+ if (getenv("OS")=="Windows_NT"){
+
+ if (!preg_match('`^[a-zA-Z]:`', $path)) {
+ phpCAS::error('an absolute path is needed for PGT storage to file');
+ }
+
+ }
+ else
+ {
+
+ if ( $path[0] != '/' ) {
+ phpCAS::error('an absolute path is needed for PGT storage to file');
+ }
+
+ // store the path (with a leading and trailing '/')
+ $path = preg_replace('|[/]*$|','/',$path);
+ $path = preg_replace('|^[/]*|','/',$path);
+ }
+
+ $this->_path = $path;
+ // check the format and store it
+ switch ($format) {
+ case CAS_PGT_STORAGE_FILE_FORMAT_PLAIN:
+ case CAS_PGT_STORAGE_FILE_FORMAT_XML:
+ $this->_format = $format;
+ break;
+ default:
+ phpCAS::error('unknown PGT file storage format (`'.CAS_PGT_STORAGE_FILE_FORMAT_PLAIN.'\' and `'.CAS_PGT_STORAGE_FILE_FORMAT_XML.'\' allowed)');
+ }
+ phpCAS::traceEnd();
+ }
+
+ // ########################################################################
+ // INITIALIZATION
+ // ########################################################################
+
+ /**
+ * This method is used to initialize the storage. Halts on error.
+ *
+ * @public
+ */
+ function init()
+ {
+ phpCAS::traceBegin();
+ // if the storage has already been initialized, return immediatly
+ if ( $this->isInitialized() )
+ return;
+ // call the ancestor's method (mark as initialized)
+ parent::init();
+ phpCAS::traceEnd();
+ }
+
+ // ########################################################################
+ // PGT I/O
+ // ########################################################################
+
+ /**
+ * This method returns the filename corresponding to a PGT Iou.
+ *
+ * @param $pgt_iou the PGT iou.
+ *
+ * @return a filename
+ * @private
+ */
+ function getPGTIouFilename($pgt_iou)
+ {
+ phpCAS::traceBegin();
+ $filename = $this->getPath().$pgt_iou.'.'.$this->getFormat();
+ phpCAS::traceEnd($filename);
+ return $filename;
+ }
+
+ /**
+ * This method stores a PGT and its corresponding PGT Iou into a file. Echoes a
+ * warning on error.
+ *
+ * @param $pgt the PGT
+ * @param $pgt_iou the PGT iou
+ *
+ * @public
+ */
+ function write($pgt,$pgt_iou)
+ {
+ phpCAS::traceBegin();
+ $fname = $this->getPGTIouFilename($pgt_iou);
+ if ( $f=fopen($fname,"w") ) {
+ if ( fputs($f,$pgt) === FALSE ) {
+ phpCAS::error('could not write PGT to `'.$fname.'\'');
+ }
+ fclose($f);
+ } else {
+ phpCAS::error('could not open `'.$fname.'\'');
+ }
+ phpCAS::traceEnd();
+ }
+
+ /**
+ * This method reads a PGT corresponding to a PGT Iou and deletes the
+ * corresponding file.
+ *
+ * @param $pgt_iou the PGT iou
+ *
+ * @return the corresponding PGT, or FALSE on error
+ *
+ * @public
+ */
+ function read($pgt_iou)
+ {
+ phpCAS::traceBegin();
+ $pgt = FALSE;
+ $fname = $this->getPGTIouFilename($pgt_iou);
+ if ( !($f=fopen($fname,"r")) ) {
+ phpCAS::trace('could not open `'.$fname.'\'');
+ } else {
+ if ( ($pgt=fgets($f)) === FALSE ) {
+ phpCAS::trace('could not read PGT from `'.$fname.'\'');
+ }
+ fclose($f);
+ }
+
+ // delete the PGT file
+ @unlink($fname);
+
+ phpCAS::traceEnd($pgt);
+ return $pgt;
+ }
+
+ /** @} */
+
+}
+
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-main.php b/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-main.php index 8fd3c9e12..cd9b49967 100644 --- a/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-main.php +++ b/plugins/CasAuthentication/extlib/CAS/PGTStorage/pgt-main.php @@ -1,188 +1,188 @@ -<?php - -/** - * @file CAS/PGTStorage/pgt-main.php - * Basic class for PGT storage - */ - -/** - * @class PGTStorage - * The PGTStorage class is a generic class for PGT storage. This class should - * not be instanciated itself but inherited by specific PGT storage classes. - * - * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> - * - * @ingroup internalPGTStorage - */ - -class PGTStorage -{ - /** - * @addtogroup internalPGTStorage - * @{ - */ - - // ######################################################################## - // CONSTRUCTOR - // ######################################################################## - - /** - * The constructor of the class, should be called only by inherited classes. - * - * @param $cas_parent the CASclient instance that creates the current object. - * - * @protected - */ - function PGTStorage($cas_parent) - { - phpCAS::traceBegin(); - if ( !$cas_parent->isProxy() ) { - phpCAS::error('defining PGT storage makes no sense when not using a CAS proxy'); - } - phpCAS::traceEnd(); - } - - // ######################################################################## - // DEBUGGING - // ######################################################################## - - /** - * This virtual method returns an informational string giving the type of storage - * used by the object (used for debugging purposes). - * - * @public - */ - function getStorageType() - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - /** - * This virtual method returns an informational string giving informations on the - * parameters of the storage.(used for debugging purposes). - * - * @public - */ - function getStorageInfo() - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - // ######################################################################## - // ERROR HANDLING - // ######################################################################## - - /** - * string used to store an error message. Written by PGTStorage::setErrorMessage(), - * read by PGTStorage::getErrorMessage(). - * - * @hideinitializer - * @private - * @deprecated not used. - */ - var $_error_message=FALSE; - - /** - * This method sets en error message, which can be read later by - * PGTStorage::getErrorMessage(). - * - * @param $error_message an error message - * - * @protected - * @deprecated not used. - */ - function setErrorMessage($error_message) - { - $this->_error_message = $error_message; - } - - /** - * This method returns an error message set by PGTStorage::setErrorMessage(). - * - * @return an error message when set by PGTStorage::setErrorMessage(), FALSE - * otherwise. - * - * @public - * @deprecated not used. - */ - function getErrorMessage() - { - return $this->_error_message; - } - - // ######################################################################## - // INITIALIZATION - // ######################################################################## - - /** - * a boolean telling if the storage has already been initialized. Written by - * PGTStorage::init(), read by PGTStorage::isInitialized(). - * - * @hideinitializer - * @private - */ - var $_initialized = FALSE; - - /** - * This method tells if the storage has already been intialized. - * - * @return a boolean - * - * @protected - */ - function isInitialized() - { - return $this->_initialized; - } - - /** - * This virtual method initializes the object. - * - * @protected - */ - function init() - { - $this->_initialized = TRUE; - } - - // ######################################################################## - // PGT I/O - // ######################################################################## - - /** - * This virtual method stores a PGT and its corresponding PGT Iuo. - * @note Should never be called. - * - * @param $pgt the PGT - * @param $pgt_iou the PGT iou - * - * @protected - */ - function write($pgt,$pgt_iou) - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - /** - * This virtual method reads a PGT corresponding to a PGT Iou and deletes - * the corresponding storage entry. - * @note Should never be called. - * - * @param $pgt_iou the PGT iou - * - * @protected - */ - function read($pgt_iou) - { - phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called'); - } - - /** @} */ - -} - -// include specific PGT storage classes -include_once(dirname(__FILE__).'/pgt-file.php'); -include_once(dirname(__FILE__).'/pgt-db.php'); - +<?php
+
+/**
+ * @file CAS/PGTStorage/pgt-main.php
+ * Basic class for PGT storage
+ */
+
+/**
+ * @class PGTStorage
+ * The PGTStorage class is a generic class for PGT storage. This class should
+ * not be instanciated itself but inherited by specific PGT storage classes.
+ *
+ * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
+ *
+ * @ingroup internalPGTStorage
+ */
+
+class PGTStorage
+{
+ /**
+ * @addtogroup internalPGTStorage
+ * @{
+ */
+
+ // ########################################################################
+ // CONSTRUCTOR
+ // ########################################################################
+
+ /**
+ * The constructor of the class, should be called only by inherited classes.
+ *
+ * @param $cas_parent the CASclient instance that creates the current object.
+ *
+ * @protected
+ */
+ function PGTStorage($cas_parent)
+ {
+ phpCAS::traceBegin();
+ if ( !$cas_parent->isProxy() ) {
+ phpCAS::error('defining PGT storage makes no sense when not using a CAS proxy');
+ }
+ phpCAS::traceEnd();
+ }
+
+ // ########################################################################
+ // DEBUGGING
+ // ########################################################################
+
+ /**
+ * This virtual method returns an informational string giving the type of storage
+ * used by the object (used for debugging purposes).
+ *
+ * @public
+ */
+ function getStorageType()
+ {
+ phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
+ }
+
+ /**
+ * This virtual method returns an informational string giving informations on the
+ * parameters of the storage.(used for debugging purposes).
+ *
+ * @public
+ */
+ function getStorageInfo()
+ {
+ phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
+ }
+
+ // ########################################################################
+ // ERROR HANDLING
+ // ########################################################################
+
+ /**
+ * string used to store an error message. Written by PGTStorage::setErrorMessage(),
+ * read by PGTStorage::getErrorMessage().
+ *
+ * @hideinitializer
+ * @private
+ * @deprecated not used.
+ */
+ var $_error_message=FALSE;
+
+ /**
+ * This method sets en error message, which can be read later by
+ * PGTStorage::getErrorMessage().
+ *
+ * @param $error_message an error message
+ *
+ * @protected
+ * @deprecated not used.
+ */
+ function setErrorMessage($error_message)
+ {
+ $this->_error_message = $error_message;
+ }
+
+ /**
+ * This method returns an error message set by PGTStorage::setErrorMessage().
+ *
+ * @return an error message when set by PGTStorage::setErrorMessage(), FALSE
+ * otherwise.
+ *
+ * @public
+ * @deprecated not used.
+ */
+ function getErrorMessage()
+ {
+ return $this->_error_message;
+ }
+
+ // ########################################################################
+ // INITIALIZATION
+ // ########################################################################
+
+ /**
+ * a boolean telling if the storage has already been initialized. Written by
+ * PGTStorage::init(), read by PGTStorage::isInitialized().
+ *
+ * @hideinitializer
+ * @private
+ */
+ var $_initialized = FALSE;
+
+ /**
+ * This method tells if the storage has already been intialized.
+ *
+ * @return a boolean
+ *
+ * @protected
+ */
+ function isInitialized()
+ {
+ return $this->_initialized;
+ }
+
+ /**
+ * This virtual method initializes the object.
+ *
+ * @protected
+ */
+ function init()
+ {
+ $this->_initialized = TRUE;
+ }
+
+ // ########################################################################
+ // PGT I/O
+ // ########################################################################
+
+ /**
+ * This virtual method stores a PGT and its corresponding PGT Iuo.
+ * @note Should never be called.
+ *
+ * @param $pgt the PGT
+ * @param $pgt_iou the PGT iou
+ *
+ * @protected
+ */
+ function write($pgt,$pgt_iou)
+ {
+ phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
+ }
+
+ /**
+ * This virtual method reads a PGT corresponding to a PGT Iou and deletes
+ * the corresponding storage entry.
+ * @note Should never be called.
+ *
+ * @param $pgt_iou the PGT iou
+ *
+ * @protected
+ */
+ function read($pgt_iou)
+ {
+ phpCAS::error(__CLASS__.'::'.__FUNCTION__.'() should never be called');
+ }
+
+ /** @} */
+
+}
+
+// include specific PGT storage classes
+include_once(dirname(__FILE__).'/pgt-file.php');
+include_once(dirname(__FILE__).'/pgt-db.php');
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/client.php b/plugins/CasAuthentication/extlib/CAS/client.php index bbde55a28..ad5a23f83 100644 --- a/plugins/CasAuthentication/extlib/CAS/client.php +++ b/plugins/CasAuthentication/extlib/CAS/client.php @@ -351,6 +351,43 @@ class CASClient { return $this->_server['login_url'] = $url; } + + + /** + * This method sets the serviceValidate URL of the CAS server. + * @param $url the serviceValidate URL + * @private + * @since 1.1.0 by Joachim Fritschi + */ + function setServerServiceValidateURL($url) + { + return $this->_server['service_validate_url'] = $url; + } + + + /** + * This method sets the proxyValidate URL of the CAS server. + * @param $url the proxyValidate URL + * @private + * @since 1.1.0 by Joachim Fritschi + */ + function setServerProxyValidateURL($url) + { + return $this->_server['proxy_validate_url'] = $url; + } + + + /** + * This method sets the samlValidate URL of the CAS server. + * @param $url the samlValidate URL + * @private + * @since 1.1.0 by Joachim Fritschi + */ + function setServerSamlValidateURL($url) + { + return $this->_server['saml_validate_url'] = $url; + } + /** * This method is used to retrieve the service validating URL of the CAS server. @@ -373,7 +410,25 @@ class CASClient // return $this->_server['service_validate_url'].'?service='.preg_replace('/&/','%26',$this->getURL()); return $this->_server['service_validate_url'].'?service='.urlencode($this->getURL()); } - + /** + * This method is used to retrieve the SAML validating URL of the CAS server. + * @return a URL. + * @private + */ + function getServerSamlValidateURL() + { + phpCAS::traceBegin(); + // the URL is build only when needed + if ( empty($this->_server['saml_validate_url']) ) { + switch ($this->getServerVersion()) { + case SAML_VERSION_1_1: + $this->_server['saml_validate_url'] = $this->getServerBaseURL().'samlValidate'; + break; + } + } + phpCAS::traceEnd($this->_server['saml_validate_url'].'?TARGET='.urlencode($this->getURL())); + return $this->_server['saml_validate_url'].'?TARGET='.urlencode($this->getURL()); + } /** * This method is used to retrieve the proxy validating URL of the CAS server. * @return a URL. @@ -497,31 +552,51 @@ class CASClient phpCAS::traceBegin(); - if (!$this->isLogoutRequest() && !empty($_GET['ticket']) && $start_session) { - // copy old session vars and destroy the current session - if (!isset($_SESSION)) { - session_start(); - } - $old_session = $_SESSION; - session_destroy(); - // set up a new session, of name based on the ticket - $session_id = preg_replace('/[^\w]/','',$_GET['ticket']); - phpCAS::LOG("Session ID: " . $session_id); - session_id($session_id); - if (!isset($_SESSION)) { - session_start(); - } - // restore old session vars - $_SESSION = $old_session; - // Redirect to location without ticket. - header('Location: '.$this->getURL()); - } - - //activate session mechanism if desired - if (!$this->isLogoutRequest() && $start_session) { - session_start(); + // the redirect header() call and DOM parsing code from domxml-php4-php5.php won't work in PHP4 compatibility mode + if (version_compare(PHP_VERSION,'5','>=') && ini_get('zend.ze1_compatibility_mode')) { + phpCAS::error('phpCAS cannot support zend.ze1_compatibility_mode. Sorry.'); + } + // skip Session Handling for logout requests and if don't want it' + if ($start_session && !$this->isLogoutRequest()) { + phpCAS::trace("Starting session handling"); + // Check for Tickets from the CAS server + if (empty($_GET['ticket'])){ + phpCAS::trace("No ticket found"); + // only create a session if necessary + if (!isset($_SESSION)) { + phpCAS::trace("No session found, creating new session"); + session_start(); + } + }else{ + phpCAS::trace("Ticket found"); + // We have to copy any old data before renaming the session + if (isset($_SESSION)) { + phpCAS::trace("Old active session found, saving old data and destroying session"); + $old_session = $_SESSION; + session_destroy(); + }else{ + session_start(); + phpCAS::trace("Starting possible old session to copy variables"); + $old_session = $_SESSION; + session_destroy(); + } + // set up a new session, of name based on the ticket + $session_id = preg_replace('/[^\w]/','',$_GET['ticket']); + phpCAS::LOG("Session ID: " . $session_id); + session_id($session_id); + session_start(); + // restore old session vars + if(isset($old_session)){ + phpCAS::trace("Restoring old session vars"); + $_SESSION = $old_session; + } + } + }else{ + phpCAS::trace("Skipping session creation"); } + + // are we in proxy mode ? $this->_proxy = $proxy; //check version @@ -533,6 +608,8 @@ class CASClient break; case CAS_VERSION_2_0: break; + case SAML_VERSION_1_1: + break; default: phpCAS::error('this version of CAS (`' .$server_version @@ -541,29 +618,29 @@ class CASClient } $this->_server['version'] = $server_version; - //check hostname + // check hostname if ( empty($server_hostname) || !preg_match('/[\.\d\-abcdefghijklmnopqrstuvwxyz]*/',$server_hostname) ) { phpCAS::error('bad CAS server hostname (`'.$server_hostname.'\')'); } $this->_server['hostname'] = $server_hostname; - //check port + // check port if ( $server_port == 0 || !is_int($server_port) ) { phpCAS::error('bad CAS server port (`'.$server_hostname.'\')'); } $this->_server['port'] = $server_port; - //check URI + // check URI if ( !preg_match('/[\.\d\-_abcdefghijklmnopqrstuvwxyz\/]*/',$server_uri) ) { phpCAS::error('bad CAS server URI (`'.$server_uri.'\')'); } - //add leading and trailing `/' and remove doubles + // add leading and trailing `/' and remove doubles $server_uri = preg_replace('/\/\//','/','/'.$server_uri.'/'); $this->_server['uri'] = $server_uri; - //set to callback mode if PgtIou and PgtId CGI GET parameters are provided + // set to callback mode if PgtIou and PgtId CGI GET parameters are provided if ( $this->isProxy() ) { $this->setCallbackMode(!empty($_GET['pgtIou'])&&!empty($_GET['pgtId'])); } @@ -590,8 +667,12 @@ class CASClient } break; case CAS_VERSION_2_0: // check for a Service or Proxy Ticket - if( preg_match('/^[SP]T-/',$ticket) ) { - phpCAS::trace('ST or PT \''.$ticket.'\' found'); + if (preg_match('/^ST-/', $ticket)) { + phpCAS::trace('ST \'' . $ticket . '\' found'); + $this->setST($ticket); + unset ($_GET['ticket']); + } else if (preg_match('/^PT-/', $ticket)) { + phpCAS::trace('PT \'' . $ticket . '\' found'); $this->setPT($ticket); unset($_GET['ticket']); } else if ( !empty($ticket) ) { @@ -599,6 +680,16 @@ class CASClient phpCAS::error('ill-formed ticket found in the URL (ticket=`'.htmlentities($ticket).'\')'); } break; + case SAML_VERSION_1_1: // SAML just does Service Tickets + if( preg_match('/^[SP]T-/',$ticket) ) { + phpCAS::trace('SA \''.$ticket.'\' found'); + $this->setSA($ticket); + unset($_GET['ticket']); + } else if ( !empty($ticket) ) { + //ill-formed ticket, halt + phpCAS::error('ill-formed ticket found in the URL (ticket=`'.htmlentities($ticket).'\')'); + } + break; } } phpCAS::traceEnd(); @@ -652,6 +743,45 @@ class CASClient } return $this->_user; } + + + + /*********************************************************************************************************************** + * Atrributes section + * + * @author Matthias Crauwels <matthias.crauwels@ugent.be>, Ghent University, Belgium + * + ***********************************************************************************************************************/ + /** + * The Authenticated users attributes. Written by CASClient::setAttributes(), read by CASClient::getAttributes(). + * @attention client applications should use phpCAS::getAttributes(). + * + * @hideinitializer + * @private + */ + var $_attributes = array(); + + function setAttributes($attributes) + { $this->_attributes = $attributes; } + + function getAttributes() { + if ( empty($this->_user) ) { // if no user is set, there shouldn't be any attributes also... + phpCAS::error('this method should be used only after '.__CLASS__.'::forceAuthentication() or '.__CLASS__.'::isAuthenticated()'); + } + return $this->_attributes; + } + + function hasAttributes() + { return !empty($this->_attributes); } + + function hasAttribute($key) + { return (is_array($this->_attributes) && array_key_exists($key, $this->_attributes)); } + + function getAttribute($key) { + if($this->hasAttribute($key)) { + return $this->_attributes[$key]; + } + } /** * This method is called to renew the authentication of the user @@ -778,55 +908,72 @@ class CASClient * This method is called to check if the user is authenticated (previously or by * tickets given in the URL). * - * @return TRUE when the user is authenticated. + * @return TRUE when the user is authenticated. Also may redirect to the same URL without the ticket. * * @public */ function isAuthenticated() { - phpCAS::traceBegin(); - $res = FALSE; - $validate_url = ''; - - if ( $this->wasPreviouslyAuthenticated() ) { - // the user has already (previously during the session) been - // authenticated, nothing to be done. - phpCAS::trace('user was already authenticated, no need to look for tickets'); - $res = TRUE; - } - elseif ( $this->hasST() ) { - // if a Service Ticket was given, validate it - phpCAS::trace('ST `'.$this->getST().'\' is present'); - $this->validateST($validate_url,$text_response,$tree_response); // if it fails, it halts - phpCAS::trace('ST `'.$this->getST().'\' was validated'); - if ( $this->isProxy() ) { - $this->validatePGT($validate_url,$text_response,$tree_response); // idem - phpCAS::trace('PGT `'.$this->getPGT().'\' was validated'); - $_SESSION['phpCAS']['pgt'] = $this->getPGT(); + phpCAS::traceBegin(); + $res = FALSE; + $validate_url = ''; + + if ( $this->wasPreviouslyAuthenticated() ) { + // the user has already (previously during the session) been + // authenticated, nothing to be done. + phpCAS::trace('user was already authenticated, no need to look for tickets'); + $res = TRUE; } - $_SESSION['phpCAS']['user'] = $this->getUser(); - $res = TRUE; - } - elseif ( $this->hasPT() ) { - // if a Proxy Ticket was given, validate it - phpCAS::trace('PT `'.$this->getPT().'\' is present'); - $this->validatePT($validate_url,$text_response,$tree_response); // note: if it fails, it halts - phpCAS::trace('PT `'.$this->getPT().'\' was validated'); - if ( $this->isProxy() ) { - $this->validatePGT($validate_url,$text_response,$tree_response); // idem - phpCAS::trace('PGT `'.$this->getPGT().'\' was validated'); - $_SESSION['phpCAS']['pgt'] = $this->getPGT(); + else { + if ( $this->hasST() ) { + // if a Service Ticket was given, validate it + phpCAS::trace('ST `'.$this->getST().'\' is present'); + $this->validateST($validate_url,$text_response,$tree_response); // if it fails, it halts + phpCAS::trace('ST `'.$this->getST().'\' was validated'); + if ( $this->isProxy() ) { + $this->validatePGT($validate_url,$text_response,$tree_response); // idem + phpCAS::trace('PGT `'.$this->getPGT().'\' was validated'); + $_SESSION['phpCAS']['pgt'] = $this->getPGT(); + } + $_SESSION['phpCAS']['user'] = $this->getUser(); + $res = TRUE; + } + elseif ( $this->hasPT() ) { + // if a Proxy Ticket was given, validate it + phpCAS::trace('PT `'.$this->getPT().'\' is present'); + $this->validatePT($validate_url,$text_response,$tree_response); // note: if it fails, it halts + phpCAS::trace('PT `'.$this->getPT().'\' was validated'); + if ( $this->isProxy() ) { + $this->validatePGT($validate_url,$text_response,$tree_response); // idem + phpCAS::trace('PGT `'.$this->getPGT().'\' was validated'); + $_SESSION['phpCAS']['pgt'] = $this->getPGT(); + } + $_SESSION['phpCAS']['user'] = $this->getUser(); + $res = TRUE; + } + elseif ( $this->hasSA() ) { + // if we have a SAML ticket, validate it. + phpCAS::trace('SA `'.$this->getSA().'\' is present'); + $this->validateSA($validate_url,$text_response,$tree_response); // if it fails, it halts + phpCAS::trace('SA `'.$this->getSA().'\' was validated'); + $_SESSION['phpCAS']['user'] = $this->getUser(); + $_SESSION['phpCAS']['attributes'] = $this->getAttributes(); + $res = TRUE; + } + else { + // no ticket given, not authenticated + phpCAS::trace('no ticket found'); + } + if ($res) { + // if called with a ticket parameter, we need to redirect to the app without the ticket so that CAS-ification is transparent to the browser (for later POSTS) + // most of the checks and errors should have been made now, so we're safe for redirect without masking error messages. + header('Location: '.$this->getURL()); + phpCAS::log( "Prepare redirect to : ".$this->getURL() ); + } } - $_SESSION['phpCAS']['user'] = $this->getUser(); - $res = TRUE; - } - else { - // no ticket given, not authenticated - phpCAS::trace('no ticket found'); - } - - phpCAS::traceEnd($res); - return $res; + + phpCAS::traceEnd($res); + return $res; } /** @@ -889,6 +1036,9 @@ class CASClient if ( $this->isSessionAuthenticated() ) { // authentication already done $this->setUser($_SESSION['phpCAS']['user']); + if(isset($_SESSION['phpCAS']['attributes'])){ + $this->setAttributes($_SESSION['phpCAS']['attributes']); + } phpCAS::trace('user = `'.$_SESSION['phpCAS']['user'].'\''); $auth = TRUE; } else { @@ -917,6 +1067,7 @@ class CASClient printf('<p>'.$this->getString(CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED).'</p>',$cas_url); $this->printHTMLFooter(); + phpCAS::traceExit(); exit(); } @@ -962,11 +1113,15 @@ class CASClient $cas_url = $cas_url . $paramSeparator . "service=" . urlencode($params['service']); } header('Location: '.$cas_url); + phpCAS::log( "Prepare redirect to : ".$cas_url ); + session_unset(); session_destroy(); + $this->printHTMLHeader($this->getString(CAS_STR_LOGOUT)); printf('<p>'.$this->getString(CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED).'</p>',$cas_url); $this->printHTMLFooter(); + phpCAS::traceExit(); exit(); } @@ -1009,10 +1164,10 @@ class CASClient } $client_ip = $_SERVER['REMOTE_ADDR']; $client = gethostbyaddr($client_ip); - phpCAS::log("Client: ".$client); + phpCAS::log("Client: ".$client."/".$client_ip); $allowed = false; foreach ($allowed_clients as $allowed_client) { - if ($client == $allowed_client) { + if (($client == $allowed_client) or ($client_ip == $allowed_client)) { phpCAS::log("Allowed client '".$allowed_client."' matches, logout request is allowed"); $allowed = true; break; @@ -1284,6 +1439,151 @@ class CASClient phpCAS::traceEnd(TRUE); return TRUE; } + + // ######################################################################## + // SAML VALIDATION + // ######################################################################## + /** + * @addtogroup internalBasic + * @{ + */ + + /** + * This method is used to validate a SAML TICKET; halt on failure, and sets $validate_url, + * $text_reponse and $tree_response on success. These parameters are used later + * by CASClient::validatePGT() for CAS proxies. + * + * @param $validate_url the URL of the request to the CAS server. + * @param $text_response the response of the CAS server, as is (XML text). + * @param $tree_response the response of the CAS server, as a DOM XML tree. + * + * @return bool TRUE when successfull, halt otherwise by calling CASClient::authError(). + * + * @private + */ + function validateSA($validate_url,&$text_response,&$tree_response) + { + phpCAS::traceBegin(); + + // build the URL to validate the ticket + $validate_url = $this->getServerSamlValidateURL(); + + // open and read the URL + if ( !$this->readURL($validate_url,''/*cookies*/,$headers,$text_response,$err_msg) ) { + phpCAS::trace('could not open URL \''.$validate_url.'\' to validate ('.$err_msg.')'); + $this->authError('SA not validated', $validate_url, TRUE/*$no_response*/); + } + + phpCAS::trace('server version: '.$this->getServerVersion()); + + // analyze the result depending on the version + switch ($this->getServerVersion()) { + case SAML_VERSION_1_1: + + // read the response of the CAS server into a DOM object + if ( !($dom = domxml_open_mem($text_response))) { + phpCAS::trace('domxml_open_mem() failed'); + $this->authError('SA not validated', + $validate_url, + FALSE/*$no_response*/, + TRUE/*$bad_response*/, + $text_response); + } + // read the root node of the XML tree + if ( !($tree_response = $dom->document_element()) ) { + phpCAS::trace('document_element() failed'); + $this->authError('SA not validated', + $validate_url, + FALSE/*$no_response*/, + TRUE/*$bad_response*/, + $text_response); + } + // insure that tag name is 'Envelope' + if ( $tree_response->node_name() != 'Envelope' ) { + phpCAS::trace('bad XML root node (should be `Envelope\' instead of `'.$tree_response->node_name().'\''); + $this->authError('SA not validated', + $validate_url, + FALSE/*$no_response*/, + TRUE/*$bad_response*/, + $text_response); + } + // check for the NameIdentifier tag in the SAML response + if ( sizeof($success_elements = $tree_response->get_elements_by_tagname("NameIdentifier")) != 0) { + phpCAS::trace('NameIdentifier found'); + $user = trim($success_elements[0]->get_content()); + phpCAS::trace('user = `'.$user.'`'); + $this->setUser($user); + $this->setSessionAttributes($text_response); + } else { + phpCAS::trace('no <NameIdentifier> tag found in SAML payload'); + $this->authError('SA not validated', + $validate_url, + FALSE/*$no_response*/, + TRUE/*$bad_response*/, + $text_response); + } + break; + } + + // at this step, ST has been validated and $this->_user has been set, + phpCAS::traceEnd(TRUE); + return TRUE; + } + + /** + * This method will parse the DOM and pull out the attributes from the SAML + * payload and put them into an array, then put the array into the session. + * + * @param $text_response the SAML payload. + * @return bool TRUE when successfull, halt otherwise by calling CASClient::authError(). + * + * @private + */ + function setSessionAttributes($text_response) + { + phpCAS::traceBegin(); + + $result = FALSE; + + if (isset($_SESSION[SAML_ATTRIBUTES])) { + phpCAS::trace("session attrs already set."); //testbml - do we care? + } + + $attr_array = array(); + + if (($dom = domxml_open_mem($text_response))) { + $xPath = $dom->xpath_new_context(); + $xPath->xpath_register_ns('samlp', 'urn:oasis:names:tc:SAML:1.0:protocol'); + $xPath->xpath_register_ns('saml', 'urn:oasis:names:tc:SAML:1.0:assertion'); + $nodelist = $xPath->xpath_eval("//saml:Attribute"); + $attrs = $nodelist->nodeset; + phpCAS::trace($text_response); + foreach($attrs as $attr){ + $xres = $xPath->xpath_eval("saml:AttributeValue", $attr); + $name = $attr->get_attribute("AttributeName"); + $value_array = array(); + foreach($xres->nodeset as $node){ + $value_array[] = $node->get_content(); + + } + phpCAS::trace("* " . $name . "=" . $value_array); + $attr_array[$name] = $value_array; + } + $_SESSION[SAML_ATTRIBUTES] = $attr_array; + // UGent addition... + foreach($attr_array as $attr_key => $attr_value) { + if(count($attr_value) > 1) { + $this->_attributes[$attr_key] = $attr_value; + } + else { + $this->_attributes[$attr_key] = $attr_value[0]; + } + } + $result = TRUE; + } + phpCAS::traceEnd($result); + return $result; + } /** @} */ @@ -1495,6 +1795,7 @@ class CASClient $this->storePGT($pgt,$pgt_iou); $this->printHTMLFooter(); phpCAS::traceExit(); + exit(); } /** @} */ @@ -1585,7 +1886,7 @@ class CASClient } // create the storage object - $this->_pgt_storage = &new PGTStorageFile($this,$format,$path); + $this->_pgt_storage = new PGTStorageFile($this,$format,$path); } /** @@ -1622,7 +1923,7 @@ class CASClient trigger_error('PGT storage into database is an experimental feature, use at your own risk',E_USER_WARNING); // create the storage object - $this->_pgt_storage = & new PGTStorageDB($this,$user,$password,$database_type,$hostname,$port,$database,$table); + $this->_pgt_storage = new PGTStorageDB($this,$user,$password,$database_type,$hostname,$port,$database,$table); } // ######################################################################## @@ -1643,7 +1944,8 @@ class CASClient */ function validatePGT(&$validate_url,$text_response,$tree_response) { - phpCAS::traceBegin(); + // here cannot use phpCAS::traceBegin(); alongside domxml-php4-to-php5.php + phpCAS::log('start validatePGT()'); if ( sizeof($arr = $tree_response->get_elements_by_tagname("proxyGrantingTicket")) == 0) { phpCAS::trace('<proxyGrantingTicket> not found'); // authentication succeded, but no PGT Iou was transmitted @@ -1666,7 +1968,8 @@ class CASClient } $this->setPGT($pgt); } - phpCAS::traceEnd(TRUE); + // here, cannot use phpCAS::traceEnd(TRUE); alongside domxml-php4-to-php5.php + phpCAS::log('end validatePGT()'); return TRUE; } @@ -1819,7 +2122,15 @@ class CASClient if ($this->_cas_server_cert == '' && $this->_cas_server_ca_cert == '' && !$this->_no_cas_server_validation) { phpCAS::error('one of the methods phpCAS::setCasServerCert(), phpCAS::setCasServerCACert() or phpCAS::setNoCasServerValidation() must be called.'); } - if ($this->_cas_server_cert != '' ) { + if ($this->_cas_server_cert != '' && $this->_cas_server_ca_cert != '') { + // This branch added by IDMS. Seems phpCAS implementor got a bit confused about the curl options CURLOPT_SSLCERT and CURLOPT_CAINFO + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1); + curl_setopt($ch, CURLOPT_SSLCERT, $this->_cas_server_cert); + curl_setopt($ch, CURLOPT_CAINFO, $this->_cas_server_ca_cert); + curl_setopt($ch, CURLOPT_VERBOSE, '1'); + phpCAS::trace('CURL: Set all required opts for mutual authentication ------'); + } else if ($this->_cas_server_cert != '' ) { curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); curl_setopt($ch, CURLOPT_SSLCERT, $this->_cas_server_cert); } else if ($this->_cas_server_ca_cert != '') { @@ -1839,11 +2150,28 @@ class CASClient if ( is_array($cookies) ) { curl_setopt($ch,CURLOPT_COOKIE,implode(';',$cookies)); } + // add extra stuff if SAML + if ($this->hasSA()) { + $more_headers = array ("soapaction: http://www.oasis-open.org/committees/security", + "cache-control: no-cache", + "pragma: no-cache", + "accept: text/xml", + "connection: keep-alive", + "content-type: text/xml"); + + curl_setopt($ch, CURLOPT_HTTPHEADER, $more_headers); + curl_setopt($ch, CURLOPT_POST, 1); + $data = $this->buildSAMLPayload(); + //phpCAS::trace('SAML Payload: '.print_r($data, TRUE)); + curl_setopt($ch, CURLOPT_POSTFIELDS, $data); + } // perform the query $buf = curl_exec ($ch); + //phpCAS::trace('CURL: Call completed. Response body is: \''.$buf.'\''); if ( $buf === FALSE ) { phpCAS::trace('curl_exec() failed'); $err_msg = 'CURL error #'.curl_errno($ch).': '.curl_error($ch); + //phpCAS::trace('curl error: '.$err_msg); // close the CURL session curl_close ($ch); $res = FALSE; @@ -1858,7 +2186,28 @@ class CASClient phpCAS::traceEnd($res); return $res; } - + + /** + * This method is used to build the SAML POST body sent to /samlValidate URL. + * + * @return the SOAP-encased SAMLP artifact (the ticket). + * + * @private + */ + function buildSAMLPayload() + { + phpCAS::traceBegin(); + + //get the ticket + $sa = $this->getSA(); + //phpCAS::trace("SA: ".$sa); + + $body=SAML_SOAP_ENV.SAML_SOAP_BODY.SAMLP_REQUEST.SAML_ASSERTION_ARTIFACT.$sa.SAML_ASSERTION_ARTIFACT_CLOSE.SAMLP_REQUEST_CLOSE.SAML_SOAP_BODY_CLOSE.SAML_SOAP_ENV_CLOSE; + + phpCAS::traceEnd($body); + return ($body); + } + /** * This method is the callback used by readURL method to request HTTP headers. */ @@ -1951,6 +2300,7 @@ class CASClient * * @param $url a string giving the URL of the service, including the mailing box * for IMAP URLs, as accepted by imap_open(). + * @param $service a string giving for CAS retrieve Proxy ticket * @param $flags options given to imap_open(). * @param $err_code an error code Possible values are PHPCAS_SERVICE_OK (on * success), PHPCAS_SERVICE_PT_NO_SERVER_RESPONSE, PHPCAS_SERVICE_PT_BAD_SERVER_RESPONSE, @@ -1964,11 +2314,11 @@ class CASClient * * @public */ - function serviceMail($url,$flags,&$err_code,&$err_msg,&$pt) + function serviceMail($url,$service,$flags,&$err_code,&$err_msg,&$pt) { phpCAS::traceBegin(); // at first retrieve a PT - $pt = $this->retrievePT($target_service,$err_code,$output); + $pt = $this->retrievePT($service,$err_code,$output); $stream = FALSE; @@ -2049,7 +2399,30 @@ class CASClient */ function hasPT() { return !empty($this->_pt); } - + /** + * This method returns the SAML Ticket provided in the URL of the request. + * @return The SAML ticket. + * @private + */ + function getSA() + { return 'ST'.substr($this->_sa, 2); } + + /** + * This method stores the SAML Ticket. + * @param $sa The SAML Ticket. + * @private + */ + function setSA($sa) + { $this->_sa = $sa; } + + /** + * This method tells if a SAML Ticket was stored. + * @return TRUE if a SAML Ticket has been stored. + * @private + */ + function hasSA() + { return !empty($this->_sa); } + /** @} */ // ######################################################################## // PT VALIDATION @@ -2213,8 +2586,13 @@ class CASClient } } - $final_uri .= strtok($_SERVER['REQUEST_URI'],"?"); - $cgi_params = '?'.strtok("?"); + $php_is_for_sissies = split("\?", $_SERVER['REQUEST_URI'], 2); + $final_uri .= $php_is_for_sissies[0]; + if(sizeof($php_is_for_sissies) > 1){ + $cgi_params = '?' . $php_is_for_sissies[1]; + } else { + $cgi_params = '?'; + } // remove the ticket if present in the CGI parameters $cgi_params = preg_replace('/&ticket=[^&]*/','',$cgi_params); $cgi_params = preg_replace('/\?ticket=[^&;]*/','?',$cgi_params); @@ -2294,4 +2672,4 @@ class CASClient /** @} */ } -?>
\ No newline at end of file +?> diff --git a/plugins/CasAuthentication/extlib/CAS/domxml-php4-php5.php b/plugins/CasAuthentication/extlib/CAS/domxml-php4-php5.php deleted file mode 100644 index a0dfb99c7..000000000 --- a/plugins/CasAuthentication/extlib/CAS/domxml-php4-php5.php +++ /dev/null @@ -1,277 +0,0 @@ -<?php -/** - * @file domxml-php4-php5.php - * Require PHP5, uses built-in DOM extension. - * To be used in PHP4 scripts using DOMXML extension. - * Allows PHP4/DOMXML scripts to run on PHP5/DOM. - * (Requires PHP5/XSL extension for domxml_xslt functions) - * - * Typical use: - * <pre> - * { - * if (version_compare(PHP_VERSION,'5','>=')) - * require_once('domxml-php4-to-php5.php'); - * } - * </pre> - * - * Version 1.5.5, 2005-01-18, http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/ - * - * ------------------------------------------------------------------<br> - * Written by Alexandre Alapetite, http://alexandre.alapetite.net/cv/ - * - * Copyright 2004, Licence: Creative Commons "Attribution-ShareAlike 2.0 France" BY-SA (FR), - * http://creativecommons.org/licenses/by-sa/2.0/fr/ - * http://alexandre.alapetite.net/divers/apropos/#by-sa - * - Attribution. You must give the original author credit - * - Share Alike. If you alter, transform, or build upon this work, - * you may distribute the resulting work only under a license identical to this one - * - The French law is authoritative - * - Any of these conditions can be waived if you get permission from Alexandre Alapetite - * - Please send to Alexandre Alapetite the modifications you make, - * in order to improve this file for the benefit of everybody - * - * If you want to distribute this code, please do it as a link to: - * http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/ - */ - -function domxml_new_doc($version) {return new php4DOMDocument('');} -function domxml_open_file($filename) {return new php4DOMDocument($filename);} -function domxml_open_mem($str) -{ - $dom=new php4DOMDocument(''); - $dom->myDOMNode->loadXML($str); - return $dom; -} -function xpath_eval($xpath_context,$eval_str,$contextnode=null) {return $xpath_context->query($eval_str,$contextnode);} -function xpath_new_context($dom_document) {return new php4DOMXPath($dom_document);} - -class php4DOMAttr extends php4DOMNode -{ - function php4DOMAttr($aDOMAttr) {$this->myDOMNode=$aDOMAttr;} - function Name() {return $this->myDOMNode->name;} - function Specified() {return $this->myDOMNode->specified;} - function Value() {return $this->myDOMNode->value;} -} - -class php4DOMDocument extends php4DOMNode -{ - function php4DOMDocument($filename='') - { - $this->myDOMNode=new DOMDocument(); - if ($filename!='') $this->myDOMNode->load($filename); - } - function create_attribute($name,$value) - { - $myAttr=$this->myDOMNode->createAttribute($name); - $myAttr->value=$value; - return new php4DOMAttr($myAttr,$this); - } - function create_cdata_section($content) {return new php4DOMNode($this->myDOMNode->createCDATASection($content),$this);} - function create_comment($data) {return new php4DOMNode($this->myDOMNode->createComment($data),$this);} - function create_element($name) {return new php4DOMElement($this->myDOMNode->createElement($name),$this);} - function create_text_node($content) {return new php4DOMNode($this->myDOMNode->createTextNode($content),$this);} - function document_element() {return new php4DOMElement($this->myDOMNode->documentElement,$this);} - function dump_file($filename,$compressionmode=false,$format=false) {return $this->myDOMNode->save($filename);} - function dump_mem($format=false,$encoding=false) {return $this->myDOMNode->saveXML();} - function get_element_by_id($id) {return new php4DOMElement($this->myDOMNode->getElementById($id),$this);} - function get_elements_by_tagname($name) - { - $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name); - $nodeSet=array(); - $i=0; - if (isset($myDOMNodeList)) - while ($node=$myDOMNodeList->item($i)) - { - $nodeSet[]=new php4DOMElement($node,$this); - $i++; - } - return $nodeSet; - } - function html_dump_mem() {return $this->myDOMNode->saveHTML();} - function root() {return new php4DOMElement($this->myDOMNode->documentElement,$this);} -} - -class php4DOMElement extends php4DOMNode -{ - function get_attribute($name) {return $this->myDOMNode->getAttribute($name);} - function get_elements_by_tagname($name) - { - $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name); - $nodeSet=array(); - $i=0; - if (isset($myDOMNodeList)) - while ($node=$myDOMNodeList->item($i)) - { - $nodeSet[]=new php4DOMElement($node,$this->myOwnerDocument); - $i++; - } - return $nodeSet; - } - function has_attribute($name) {return $this->myDOMNode->hasAttribute($name);} - function remove_attribute($name) {return $this->myDOMNode->removeAttribute($name);} - function set_attribute($name,$value) {return $this->myDOMNode->setAttribute($name,$value);} - function tagname() {return $this->myDOMNode->tagName;} -} - -class php4DOMNode -{ - var $myDOMNode; - var $myOwnerDocument; - function php4DOMNode($aDomNode,$aOwnerDocument) - { - $this->myDOMNode=$aDomNode; - $this->myOwnerDocument=$aOwnerDocument; - } - function __get($name) - { - if ($name=='type') return $this->myDOMNode->nodeType; - elseif ($name=='tagname') return $this->myDOMNode->tagName; - elseif ($name=='content') return $this->myDOMNode->textContent; - else - { - $myErrors=debug_backtrace(); - trigger_error('Undefined property: '.get_class($this).'::$'.$name.' ['.$myErrors[0]['file'].':'.$myErrors[0]['line'].']',E_USER_NOTICE); - return false; - } - } - function append_child($newnode) {return new php4DOMElement($this->myDOMNode->appendChild($newnode->myDOMNode),$this->myOwnerDocument);} - function append_sibling($newnode) {return new php4DOMElement($this->myDOMNode->parentNode->appendChild($newnode->myDOMNode),$this->myOwnerDocument);} - function attributes() - { - $myDOMNodeList=$this->myDOMNode->attributes; - $nodeSet=array(); - $i=0; - if (isset($myDOMNodeList)) - while ($node=$myDOMNodeList->item($i)) - { - $nodeSet[]=new php4DOMAttr($node,$this->myOwnerDocument); - $i++; - } - return $nodeSet; - } - function child_nodes() - { - $myDOMNodeList=$this->myDOMNode->childNodes; - $nodeSet=array(); - $i=0; - if (isset($myDOMNodeList)) - while ($node=$myDOMNodeList->item($i)) - { - $nodeSet[]=new php4DOMElement($node,$this->myOwnerDocument); - $i++; - } - return $nodeSet; - } - function children() {return $this->child_nodes();} - function clone_node($deep=false) {return new php4DOMElement($this->myDOMNode->cloneNode($deep),$this->myOwnerDocument);} - function first_child() {return new php4DOMElement($this->myDOMNode->firstChild,$this->myOwnerDocument);} - function get_content() {return $this->myDOMNode->textContent;} - function has_attributes() {return $this->myDOMNode->hasAttributes();} - function has_child_nodes() {return $this->myDOMNode->hasChildNodes();} - function insert_before($newnode,$refnode) {return new php4DOMElement($this->myDOMNode->insertBefore($newnode->myDOMNode,$refnode->myDOMNode),$this->myOwnerDocument);} - function is_blank_node() - { - $myDOMNodeList=$this->myDOMNode->childNodes; - $i=0; - if (isset($myDOMNodeList)) - while ($node=$myDOMNodeList->item($i)) - { - if (($node->nodeType==XML_ELEMENT_NODE)|| - (($node->nodeType==XML_TEXT_NODE)&&!ereg('^([[:cntrl:]]|[[:space:]])*$',$node->nodeValue))) - return false; - $i++; - } - return true; - } - function last_child() {return new php4DOMElement($this->myDOMNode->lastChild,$this->myOwnerDocument);} - function new_child($name,$content) - { - $mySubNode=$this->myDOMNode->ownerDocument->createElement($name); - $mySubNode->appendChild($this->myDOMNode->ownerDocument->createTextNode($content)); - $this->myDOMNode->appendChild($mySubNode); - return new php4DOMElement($mySubNode,$this->myOwnerDocument); - } - function next_sibling() {return new php4DOMElement($this->myDOMNode->nextSibling,$this->myOwnerDocument);} - function node_name() {return $this->myDOMNode->localName;} - function node_type() {return $this->myDOMNode->nodeType;} - function node_value() {return $this->myDOMNode->nodeValue;} - function owner_document() {return $this->myOwnerDocument;} - function parent_node() {return new php4DOMElement($this->myDOMNode->parentNode,$this->myOwnerDocument);} - function prefix() {return $this->myDOMNode->prefix;} - function previous_sibling() {return new php4DOMElement($this->myDOMNode->previousSibling,$this->myOwnerDocument);} - function remove_child($oldchild) {return new php4DOMElement($this->myDOMNode->removeChild($oldchild->myDOMNode),$this->myOwnerDocument);} - function replace_child($oldnode,$newnode) {return new php4DOMElement($this->myDOMNode->replaceChild($oldnode->myDOMNode,$newnode->myDOMNode),$this->myOwnerDocument);} - function set_content($text) - { - if (($this->myDOMNode->hasChildNodes())&&($this->myDOMNode->firstChild->nodeType==XML_TEXT_NODE)) - $this->myDOMNode->removeChild($this->myDOMNode->firstChild); - return $this->myDOMNode->appendChild($this->myDOMNode->ownerDocument->createTextNode($text)); - } -} - -class php4DOMNodelist -{ - var $myDOMNodelist; - var $nodeset; - function php4DOMNodelist($aDOMNodelist,$aOwnerDocument) - { - $this->myDOMNodelist=$aDOMNodelist; - $this->nodeset=array(); - $i=0; - if (isset($this->myDOMNodelist)) - while ($node=$this->myDOMNodelist->item($i)) - { - $this->nodeset[]=new php4DOMElement($node,$aOwnerDocument); - $i++; - } - } -} - -class php4DOMXPath -{ - var $myDOMXPath; - var $myOwnerDocument; - function php4DOMXPath($dom_document) - { - $this->myOwnerDocument=$dom_document; - $this->myDOMXPath=new DOMXPath($dom_document->myDOMNode); - } - function query($eval_str,$contextnode) - { - if (isset($contextnode)) return new php4DOMNodelist($this->myDOMXPath->query($eval_str,$contextnode->myDOMNode),$this->myOwnerDocument); - else return new php4DOMNodelist($this->myDOMXPath->query($eval_str),$this->myOwnerDocument); - } - function xpath_register_ns($prefix,$namespaceURI) {return $this->myDOMXPath->registerNamespace($prefix,$namespaceURI);} -} - -if (extension_loaded('xsl')) -{//See also: http://alexandre.alapetite.net/doc-alex/xslt-php4-php5/ - function domxml_xslt_stylesheet($xslstring) {return new php4DomXsltStylesheet(DOMDocument::loadXML($xslstring));} - function domxml_xslt_stylesheet_doc($dom_document) {return new php4DomXsltStylesheet($dom_document);} - function domxml_xslt_stylesheet_file($xslfile) {return new php4DomXsltStylesheet(DOMDocument::load($xslfile));} - class php4DomXsltStylesheet - { - var $myxsltProcessor; - function php4DomXsltStylesheet($dom_document) - { - $this->myxsltProcessor=new xsltProcessor(); - $this->myxsltProcessor->importStyleSheet($dom_document); - } - function process($dom_document,$xslt_parameters=array(),$param_is_xpath=false) - { - foreach ($xslt_parameters as $param=>$value) - $this->myxsltProcessor->setParameter('',$param,$value); - $myphp4DOMDocument=new php4DOMDocument(); - $myphp4DOMDocument->myDOMNode=$this->myxsltProcessor->transformToDoc($dom_document->myDOMNode); - return $myphp4DOMDocument; - } - function result_dump_file($dom_document,$filename) - { - $html=$dom_document->myDOMNode->saveHTML(); - file_put_contents($filename,$html); - return $html; - } - function result_dump_mem($dom_document) {return $dom_document->myDOMNode->saveHTML();} - } -} -?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/domxml-php4-to-php5.php b/plugins/CasAuthentication/extlib/CAS/domxml-php4-to-php5.php new file mode 100644 index 000000000..1dc4e4b97 --- /dev/null +++ b/plugins/CasAuthentication/extlib/CAS/domxml-php4-to-php5.php @@ -0,0 +1,499 @@ +<?php +/* + Requires PHP5, uses built-in DOM extension. + To be used in PHP4 scripts using DOMXML extension: allows PHP4/DOMXML scripts to run on PHP5/DOM. + (Optional: requires PHP5/XSL extension for domxml_xslt functions, PHP>=5.1 for XPath evaluation functions, and PHP>=5.1/libxml for DOMXML error reports) + + Typical use: + { + if (PHP_VERSION>='5') + require_once('domxml-php4-to-php5.php'); + } + + Version 1.21, 2008-12-05, http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/ + + ------------------------------------------------------------------ + Written by Alexandre Alapetite, http://alexandre.alapetite.net/cv/ + + Copyright 2004-2008, GNU Lesser General Public License, + http://www.gnu.org/licenses/lgpl.html + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser 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 Lesser General Public License for more details. + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see <http://www.gnu.org/licenses/lgpl.html> + + == Rights and obligations == + - Attribution: You must give the original author credit. + - Share Alike: If you alter or transform this library, + you may distribute the resulting library only under the same license GNU/LGPL. + - In case of jurisdiction dispute, the French law is authoritative. + - Any of these conditions can be waived if you get permission from Alexandre Alapetite. + - Not required, but please send to Alexandre Alapetite the modifications you make, + in order to improve this file for the benefit of everybody. + + If you want to distribute this code, please do it as a link to: + http://alexandre.alapetite.net/doc-alex/domxml-php4-php5/ +*/ + +define('DOMXML_LOAD_PARSING',0); +define('DOMXML_LOAD_VALIDATING',1); +define('DOMXML_LOAD_RECOVERING',2); +define('DOMXML_LOAD_SUBSTITUTE_ENTITIES',4); +//define('DOMXML_LOAD_COMPLETE_ATTRS',8); +define('DOMXML_LOAD_DONT_KEEP_BLANKS',16); + +function domxml_new_doc($version) {return new php4DOMDocument();} +function domxml_new_xmldoc($version) {return new php4DOMDocument();} +function domxml_open_file($filename,$mode=DOMXML_LOAD_PARSING,&$error=null) +{ + $dom=new php4DOMDocument($mode); + $errorMode=(func_num_args()>2)&&defined('LIBXML_VERSION'); + if ($errorMode) libxml_use_internal_errors(true); + if (!$dom->myDOMNode->load($filename)) $dom=null; + if ($errorMode) + { + $error=array_map('_error_report',libxml_get_errors()); + libxml_clear_errors(); + } + return $dom; +} +function domxml_open_mem($str,$mode=DOMXML_LOAD_PARSING,&$error=null) +{ + $dom=new php4DOMDocument($mode); + $errorMode=(func_num_args()>2)&&defined('LIBXML_VERSION'); + if ($errorMode) libxml_use_internal_errors(true); + if (!$dom->myDOMNode->loadXML($str)) $dom=null; + if ($errorMode) + { + $error=array_map('_error_report',libxml_get_errors()); + libxml_clear_errors(); + } + return $dom; +} +function html_doc($html_doc,$from_file=false) +{ + $dom=new php4DOMDocument(); + if ($from_file) $result=$dom->myDOMNode->loadHTMLFile($html_doc); + else $result=$dom->myDOMNode->loadHTML($html_doc); + return $result ? $dom : null; +} +function html_doc_file($filename) {return html_doc($filename,true);} +function xmldoc($str) {return domxml_open_mem($str);} +function xmldocfile($filename) {return domxml_open_file($filename);} +function xpath_eval($xpath_context,$eval_str,$contextnode=null) {return $xpath_context->xpath_eval($eval_str,$contextnode);} +function xpath_new_context($dom_document) {return new php4DOMXPath($dom_document);} +function xpath_register_ns($xpath_context,$prefix,$namespaceURI) {return $xpath_context->myDOMXPath->registerNamespace($prefix,$namespaceURI);} +function _entityDecode($text) {return html_entity_decode(strtr($text,array('''=>'\'')),ENT_QUOTES,'UTF-8');} +function _error_report($error) {return array('errormessage'=>$error->message,'nodename'=>'','line'=>$error->line,'col'=>$error->column)+($error->file==''?array():array('directory'=>dirname($error->file),'file'=>basename($error->file)));} + +class php4DOMAttr extends php4DOMNode +{ + function __get($name) + { + if ($name==='name') return $this->myDOMNode->name; + else return parent::__get($name); + } + function name() {return $this->myDOMNode->name;} + function set_content($text) {} + //function set_value($content) {return $this->myDOMNode->value=htmlspecialchars($content,ENT_QUOTES);} + function specified() {return $this->myDOMNode->specified;} + function value() {return $this->myDOMNode->value;} +} + +class php4DOMDocument extends php4DOMNode +{ + function php4DOMDocument($mode=DOMXML_LOAD_PARSING) + { + $this->myDOMNode=new DOMDocument(); + $this->myOwnerDocument=$this; + if ($mode & DOMXML_LOAD_VALIDATING) $this->myDOMNode->validateOnParse=true; + if ($mode & DOMXML_LOAD_RECOVERING) $this->myDOMNode->recover=true; + if ($mode & DOMXML_LOAD_SUBSTITUTE_ENTITIES) $this->myDOMNode->substituteEntities=true; + if ($mode & DOMXML_LOAD_DONT_KEEP_BLANKS) $this->myDOMNode->preserveWhiteSpace=false; + } + function add_root($name) + { + if ($this->myDOMNode->hasChildNodes()) $this->myDOMNode->removeChild($this->myDOMNode->firstChild); + return new php4DOMElement($this->myDOMNode->appendChild($this->myDOMNode->createElement($name)),$this->myOwnerDocument); + } + function create_attribute($name,$value) + { + $myAttr=$this->myDOMNode->createAttribute($name); + $myAttr->value=htmlspecialchars($value,ENT_QUOTES); + return new php4DOMAttr($myAttr,$this); + } + function create_cdata_section($content) {return new php4DOMNode($this->myDOMNode->createCDATASection($content),$this);} + function create_comment($data) {return new php4DOMNode($this->myDOMNode->createComment($data),$this);} + function create_element($name) {return new php4DOMElement($this->myDOMNode->createElement($name),$this);} + function create_element_ns($uri,$name,$prefix=null) + { + if ($prefix==null) $prefix=$this->myDOMNode->lookupPrefix($uri); + if (($prefix==null)&&(($this->myDOMNode->documentElement==null)||(!$this->myDOMNode->documentElement->isDefaultNamespace($uri)))) $prefix='a'.sprintf('%u',crc32($uri)); + return new php4DOMElement($this->myDOMNode->createElementNS($uri,$prefix==null ? $name : $prefix.':'.$name),$this); + } + function create_entity_reference($content) {return new php4DOMNode($this->myDOMNode->createEntityReference($content),$this);} //By Walter Ebert 2007-01-22 + function create_processing_instruction($target,$data=''){return new php4DomProcessingInstruction($this->myDOMNode->createProcessingInstruction($target,$data),$this);} + function create_text_node($content) {return new php4DOMText($this->myDOMNode->createTextNode($content),$this);} + function document_element() {return parent::_newDOMElement($this->myDOMNode->documentElement,$this);} + function dump_file($filename,$compressionmode=false,$format=false) + { + $format0=$this->myDOMNode->formatOutput; + $this->myDOMNode->formatOutput=$format; + $res=$this->myDOMNode->save($filename); + $this->myDOMNode->formatOutput=$format0; + return $res; + } + function dump_mem($format=false,$encoding=false) + { + $format0=$this->myDOMNode->formatOutput; + $this->myDOMNode->formatOutput=$format; + $encoding0=$this->myDOMNode->encoding; + if ($encoding) $this->myDOMNode->encoding=$encoding; + $dump=$this->myDOMNode->saveXML(); + $this->myDOMNode->formatOutput=$format0; + if ($encoding) $this->myDOMNode->encoding= $encoding0=='' ? 'UTF-8' : $encoding0; //UTF-8 is XML default encoding + return $dump; + } + function free() + { + if ($this->myDOMNode->hasChildNodes()) $this->myDOMNode->removeChild($this->myDOMNode->firstChild); + $this->myDOMNode=null; + $this->myOwnerDocument=null; + } + function get_element_by_id($id) {return parent::_newDOMElement($this->myDOMNode->getElementById($id),$this);} + function get_elements_by_tagname($name) + { + $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name); + $nodeSet=array(); + $i=0; + if (isset($myDOMNodeList)) + while ($node=$myDOMNodeList->item($i++)) $nodeSet[]=new php4DOMElement($node,$this); + return $nodeSet; + } + function html_dump_mem() {return $this->myDOMNode->saveHTML();} + function root() {return parent::_newDOMElement($this->myDOMNode->documentElement,$this);} + function xinclude() {return $this->myDOMNode->xinclude();} + function xpath_new_context() {return new php4DOMXPath($this);} +} + +class php4DOMElement extends php4DOMNode +{ + function add_namespace($uri,$prefix) + { + if ($this->myDOMNode->hasAttributeNS('http://www.w3.org/2000/xmlns/',$prefix)) return false; + else + { + $this->myDOMNode->setAttributeNS('http://www.w3.org/2000/xmlns/','xmlns:'.$prefix,$uri); //By Daniel Walker 2006-09-08 + return true; + } + } + function get_attribute($name) {return $this->myDOMNode->getAttribute($name);} + function get_attribute_node($name) {return parent::_newDOMElement($this->myDOMNode->getAttributeNode($name),$this->myOwnerDocument);} + function get_elements_by_tagname($name) + { + $myDOMNodeList=$this->myDOMNode->getElementsByTagName($name); + $nodeSet=array(); + $i=0; + if (isset($myDOMNodeList)) + while ($node=$myDOMNodeList->item($i++)) $nodeSet[]=new php4DOMElement($node,$this->myOwnerDocument); + return $nodeSet; + } + function has_attribute($name) {return $this->myDOMNode->hasAttribute($name);} + function remove_attribute($name) {return $this->myDOMNode->removeAttribute($name);} + function set_attribute($name,$value) + { + //return $this->myDOMNode->setAttribute($name,$value); //Does not return a DomAttr + $myAttr=$this->myDOMNode->ownerDocument->createAttribute($name); + $myAttr->value=htmlspecialchars($value,ENT_QUOTES); //Entity problem reported by AL-DesignWorks 2007-09-07 + $this->myDOMNode->setAttributeNode($myAttr); + return new php4DOMAttr($myAttr,$this->myOwnerDocument); + } + /*function set_attribute_node($attr) + { + $this->myDOMNode->setAttributeNode($this->_importNode($attr)); + return $attr; + }*/ + function set_name($name) + { + if ($this->myDOMNode->prefix=='') $newNode=$this->myDOMNode->ownerDocument->createElement($name); + else $newNode=$this->myDOMNode->ownerDocument->createElementNS($this->myDOMNode->namespaceURI,$this->myDOMNode->prefix.':'.$name); + $myDOMNodeList=$this->myDOMNode->attributes; + $i=0; + if (isset($myDOMNodeList)) + while ($node=$myDOMNodeList->item($i++)) + if ($node->namespaceURI=='') $newNode->setAttribute($node->name,$node->value); + else $newNode->setAttributeNS($node->namespaceURI,$node->nodeName,$node->value); + $myDOMNodeList=$this->myDOMNode->childNodes; + if (isset($myDOMNodeList)) + while ($node=$myDOMNodeList->item(0)) $newNode->appendChild($node); + $this->myDOMNode->parentNode->replaceChild($newNode,$this->myDOMNode); + $this->myDOMNode=$newNode; + return true; + } + function tagname() {return $this->tagname;} +} + +class php4DOMNode +{ + public $myDOMNode; + public $myOwnerDocument; + function php4DOMNode($aDomNode,$aOwnerDocument) + { + $this->myDOMNode=$aDomNode; + $this->myOwnerDocument=$aOwnerDocument; + } + function __get($name) + { + switch ($name) + { + case 'type': return $this->myDOMNode->nodeType; + case 'tagname': return ($this->myDOMNode->nodeType===XML_ELEMENT_NODE) ? $this->myDOMNode->localName : $this->myDOMNode->tagName; //Avoid namespace prefix for DOMElement + case 'content': return $this->myDOMNode->textContent; + case 'value': return $this->myDOMNode->value; + default: + $myErrors=debug_backtrace(); + trigger_error('Undefined property: '.get_class($this).'::$'.$name.' ['.$myErrors[0]['file'].':'.$myErrors[0]['line'].']',E_USER_NOTICE); + return false; + } + } + function add_child($newnode) {return append_child($newnode);} + function add_namespace($uri,$prefix) {return false;} + function append_child($newnode) {return self::_newDOMElement($this->myDOMNode->appendChild($this->_importNode($newnode)),$this->myOwnerDocument);} + function append_sibling($newnode) {return self::_newDOMElement($this->myDOMNode->parentNode->appendChild($this->_importNode($newnode)),$this->myOwnerDocument);} + function attributes() + { + $myDOMNodeList=$this->myDOMNode->attributes; + if (!(isset($myDOMNodeList)&&$this->myDOMNode->hasAttributes())) return null; + $nodeSet=array(); + $i=0; + while ($node=$myDOMNodeList->item($i++)) $nodeSet[]=new php4DOMAttr($node,$this->myOwnerDocument); + return $nodeSet; + } + function child_nodes() + { + $myDOMNodeList=$this->myDOMNode->childNodes; + $nodeSet=array(); + $i=0; + if (isset($myDOMNodeList)) + while ($node=$myDOMNodeList->item($i++)) $nodeSet[]=self::_newDOMElement($node,$this->myOwnerDocument); + return $nodeSet; + } + function children() {return $this->child_nodes();} + function clone_node($deep=false) {return self::_newDOMElement($this->myDOMNode->cloneNode($deep),$this->myOwnerDocument);} + //dump_node($node) should only be called on php4DOMDocument + function dump_node($node=null) {return $node==null ? $this->myOwnerDocument->myDOMNode->saveXML($this->myDOMNode) : $this->myOwnerDocument->myDOMNode->saveXML($node->myDOMNode);} + function first_child() {return self::_newDOMElement($this->myDOMNode->firstChild,$this->myOwnerDocument);} + function get_content() {return $this->myDOMNode->textContent;} + function has_attributes() {return $this->myDOMNode->hasAttributes();} + function has_child_nodes() {return $this->myDOMNode->hasChildNodes();} + function insert_before($newnode,$refnode) {return self::_newDOMElement($this->myDOMNode->insertBefore($this->_importNode($newnode),$refnode==null?null:$refnode->myDOMNode),$this->myOwnerDocument);} + function is_blank_node() {return ($this->myDOMNode->nodeType===XML_TEXT_NODE)&&preg_match('%^\s*$%',$this->myDOMNode->nodeValue);} + function last_child() {return self::_newDOMElement($this->myDOMNode->lastChild,$this->myOwnerDocument);} + function new_child($name,$content) + { + $mySubNode=$this->myDOMNode->ownerDocument->createElement($name); + $mySubNode->appendChild($this->myDOMNode->ownerDocument->createTextNode(_entityDecode($content))); + $this->myDOMNode->appendChild($mySubNode); + return new php4DOMElement($mySubNode,$this->myOwnerDocument); + } + function next_sibling() {return self::_newDOMElement($this->myDOMNode->nextSibling,$this->myOwnerDocument);} + function node_name() {return ($this->myDOMNode->nodeType===XML_ELEMENT_NODE) ? $this->myDOMNode->localName : $this->myDOMNode->nodeName;} //Avoid namespace prefix for DOMElement + function node_type() {return $this->myDOMNode->nodeType;} + function node_value() {return $this->myDOMNode->nodeValue;} + function owner_document() {return $this->myOwnerDocument;} + function parent_node() {return self::_newDOMElement($this->myDOMNode->parentNode,$this->myOwnerDocument);} + function prefix() {return $this->myDOMNode->prefix;} + function previous_sibling() {return self::_newDOMElement($this->myDOMNode->previousSibling,$this->myOwnerDocument);} + function remove_child($oldchild) {return self::_newDOMElement($this->myDOMNode->removeChild($oldchild->myDOMNode),$this->myOwnerDocument);} + function replace_child($newnode,$oldnode) {return self::_newDOMElement($this->myDOMNode->replaceChild($this->_importNode($newnode),$oldnode->myDOMNode),$this->myOwnerDocument);} + function replace_node($newnode) {return self::_newDOMElement($this->myDOMNode->parentNode->replaceChild($this->_importNode($newnode),$this->myDOMNode),$this->myOwnerDocument);} + function set_content($text) {return $this->myDOMNode->appendChild($this->myDOMNode->ownerDocument->createTextNode(_entityDecode($text)));} //Entity problem reported by AL-DesignWorks 2007-09-07 + //function set_name($name) {return $this->myOwnerDocument->renameNode($this->myDOMNode,$this->myDOMNode->namespaceURI,$name);} + function set_namespace($uri,$prefix=null) + {//Contributions by Daniel Walker 2006-09-08 + $nsprefix=$this->myDOMNode->lookupPrefix($uri); + if ($nsprefix==null) + { + $nsprefix= $prefix==null ? $nsprefix='a'.sprintf('%u',crc32($uri)) : $prefix; + if ($this->myDOMNode->nodeType===XML_ATTRIBUTE_NODE) + { + if (($prefix!=null)&&$this->myDOMNode->ownerElement->hasAttributeNS('http://www.w3.org/2000/xmlns/',$nsprefix)&& + ($this->myDOMNode->ownerElement->getAttributeNS('http://www.w3.org/2000/xmlns/',$nsprefix)!=$uri)) + {//Remove namespace + $parent=$this->myDOMNode->ownerElement; + $parent->removeAttributeNode($this->myDOMNode); + $parent->setAttribute($this->myDOMNode->localName,$this->myDOMNode->nodeValue); + $this->myDOMNode=$parent->getAttributeNode($this->myDOMNode->localName); + return; + } + $this->myDOMNode->ownerElement->setAttributeNS('http://www.w3.org/2000/xmlns/','xmlns:'.$nsprefix,$uri); + } + } + if ($this->myDOMNode->nodeType===XML_ATTRIBUTE_NODE) + { + $parent=$this->myDOMNode->ownerElement; + $parent->removeAttributeNode($this->myDOMNode); + $parent->setAttributeNS($uri,$nsprefix.':'.$this->myDOMNode->localName,$this->myDOMNode->nodeValue); + $this->myDOMNode=$parent->getAttributeNodeNS($uri,$this->myDOMNode->localName); + } + elseif ($this->myDOMNode->nodeType===XML_ELEMENT_NODE) + { + $NewNode=$this->myDOMNode->ownerDocument->createElementNS($uri,$nsprefix.':'.$this->myDOMNode->localName); + foreach ($this->myDOMNode->attributes as $n) $NewNode->appendChild($n->cloneNode(true)); + foreach ($this->myDOMNode->childNodes as $n) $NewNode->appendChild($n->cloneNode(true)); + $xpath=new DOMXPath($this->myDOMNode->ownerDocument); + $myDOMNodeList=$xpath->query('namespace::*[name()!="xml"]',$this->myDOMNode); //Add old namespaces + foreach ($myDOMNodeList as $n) $NewNode->setAttributeNS('http://www.w3.org/2000/xmlns/',$n->nodeName,$n->nodeValue); + $this->myDOMNode->parentNode->replaceChild($NewNode,$this->myDOMNode); + $this->myDOMNode=$NewNode; + } + } + function unlink_node() + { + if ($this->myDOMNode->parentNode!=null) + { + if ($this->myDOMNode->nodeType===XML_ATTRIBUTE_NODE) $this->myDOMNode->parentNode->removeAttributeNode($this->myDOMNode); + else $this->myDOMNode->parentNode->removeChild($this->myDOMNode); + } + } + protected function _importNode($newnode) {return $this->myOwnerDocument===$newnode->myOwnerDocument ? $newnode->myDOMNode : $this->myOwnerDocument->myDOMNode->importNode($newnode->myDOMNode,true);} //To import DOMNode from another DOMDocument + static function _newDOMElement($aDOMNode,$aOwnerDocument) + {//Check the PHP5 DOMNode before creating a new associated PHP4 DOMNode wrapper + if ($aDOMNode==null) return null; + switch ($aDOMNode->nodeType) + { + case XML_ELEMENT_NODE: return new php4DOMElement($aDOMNode,$aOwnerDocument); + case XML_TEXT_NODE: return new php4DOMText($aDOMNode,$aOwnerDocument); + case XML_ATTRIBUTE_NODE: return new php4DOMAttr($aDOMNode,$aOwnerDocument); + case XML_PI_NODE: return new php4DomProcessingInstruction($aDOMNode,$aOwnerDocument); + default: return new php4DOMNode($aDOMNode,$aOwnerDocument); + } + } +} + +class php4DomProcessingInstruction extends php4DOMNode +{ + function data() {return $this->myDOMNode->data;} + function target() {return $this->myDOMNode->target;} +} + +class php4DOMText extends php4DOMNode +{ + function __get($name) + { + if ($name==='tagname') return '#text'; + else return parent::__get($name); + } + function tagname() {return '#text';} + function set_content($text) {$this->myDOMNode->nodeValue=$text; return true;} +} + +if (!defined('XPATH_NODESET')) +{ + define('XPATH_UNDEFINED',0); + define('XPATH_NODESET',1); + define('XPATH_BOOLEAN',2); + define('XPATH_NUMBER',3); + define('XPATH_STRING',4); + /*define('XPATH_POINT',5); + define('XPATH_RANGE',6); + define('XPATH_LOCATIONSET',7); + define('XPATH_USERS',8); + define('XPATH_XSLT_TREE',9);*/ +} + +class php4DOMNodelist +{ + private $myDOMNodelist; + public $nodeset; + public $type=XPATH_UNDEFINED; + public $value; + function php4DOMNodelist($aDOMNodelist,$aOwnerDocument) + { + if (!isset($aDOMNodelist)) return; + elseif (is_object($aDOMNodelist)||is_array($aDOMNodelist)) + { + if ($aDOMNodelist->length>0) + { + $this->myDOMNodelist=$aDOMNodelist; + $this->nodeset=array(); + $this->type=XPATH_NODESET; + $i=0; + while ($node=$this->myDOMNodelist->item($i++)) $this->nodeset[]=php4DOMNode::_newDOMElement($node,$aOwnerDocument); + } + } + elseif (is_int($aDOMNodelist)||is_float($aDOMNodelist)) + { + $this->type=XPATH_NUMBER; + $this->value=$aDOMNodelist; + } + elseif (is_bool($aDOMNodelist)) + { + $this->type=XPATH_BOOLEAN; + $this->value=$aDOMNodelist; + } + elseif (is_string($aDOMNodelist)) + { + $this->type=XPATH_STRING; + $this->value=$aDOMNodelist; + } + } +} + +class php4DOMXPath +{ + public $myDOMXPath; + private $myOwnerDocument; + function php4DOMXPath($dom_document) + { + //TODO: If $dom_document is a DomElement, make that default $contextnode and modify XPath. Ex: '/test' + $this->myOwnerDocument=$dom_document->myOwnerDocument; + $this->myDOMXPath=new DOMXPath($this->myOwnerDocument->myDOMNode); + } + function xpath_eval($eval_str,$contextnode=null) + { + if (method_exists($this->myDOMXPath,'evaluate')) $xp=isset($contextnode) ? $this->myDOMXPath->evaluate($eval_str,$contextnode->myDOMNode) : $this->myDOMXPath->evaluate($eval_str); + else $xp=isset($contextnode) ? $this->myDOMXPath->query($eval_str,$contextnode->myDOMNode) : $this->myDOMXPath->query($eval_str); + $xp=new php4DOMNodelist($xp,$this->myOwnerDocument); + return ($xp->type===XPATH_UNDEFINED) ? false : $xp; + } + function xpath_register_ns($prefix,$namespaceURI) {return $this->myDOMXPath->registerNamespace($prefix,$namespaceURI);} +} + +if (extension_loaded('xsl')) +{//See also: http://alexandre.alapetite.net/doc-alex/xslt-php4-php5/ + function domxml_xslt_stylesheet($xslstring) {return new php4DomXsltStylesheet(DOMDocument::loadXML($xslstring));} + function domxml_xslt_stylesheet_doc($dom_document) {return new php4DomXsltStylesheet($dom_document);} + function domxml_xslt_stylesheet_file($xslfile) {return new php4DomXsltStylesheet(DOMDocument::load($xslfile));} + class php4DomXsltStylesheet + { + private $myxsltProcessor; + function php4DomXsltStylesheet($dom_document) + { + $this->myxsltProcessor=new xsltProcessor(); + $this->myxsltProcessor->importStyleSheet($dom_document); + } + function process($dom_document,$xslt_parameters=array(),$param_is_xpath=false) + { + foreach ($xslt_parameters as $param=>$value) $this->myxsltProcessor->setParameter('',$param,$value); + $myphp4DOMDocument=new php4DOMDocument(); + $myphp4DOMDocument->myDOMNode=$this->myxsltProcessor->transformToDoc($dom_document->myDOMNode); + return $myphp4DOMDocument; + } + function result_dump_file($dom_document,$filename) + { + $html=$dom_document->myDOMNode->saveHTML(); + file_put_contents($filename,$html); + return $html; + } + function result_dump_mem($dom_document) {return $dom_document->myDOMNode->saveHTML();} + } +} +?> diff --git a/plugins/CasAuthentication/extlib/CAS/languages/catalan.php b/plugins/CasAuthentication/extlib/CAS/languages/catalan.php index 0b139c7ca..3d67473d9 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/catalan.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/catalan.php @@ -1,27 +1,27 @@ -<?php - -/** - * @file languages/spanish.php - * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx AT gmail DOT com> - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -$this->_strings = array( - CAS_STR_USING_SERVER - => 'usant servidor', - CAS_STR_AUTHENTICATION_WANTED - => 'Autentificació CAS necessà ria!', - CAS_STR_LOGOUT - => 'Sortida de CAS necessà ria!', - CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED - => 'Ja hauria d\ haver estat redireccionat al servidor CAS. Feu click <a href="%s">aquÃ</a> per a continuar.', - CAS_STR_AUTHENTICATION_FAILED - => 'Autentificació CAS fallida!', - CAS_STR_YOU_WERE_NOT_AUTHENTICATED - => '<p>No està s autentificat.</p><p>Pots tornar a intentar-ho fent click <a href="%s">aquÃ</a>.</p><p>Si el problema persisteix haurÃa de contactar amb l\'<a href="mailto:%s">administrador d\'aquest llocc</a>.</p>', - CAS_STR_SERVICE_UNAVAILABLE - => 'El servei `<b>%s</b>\' no està disponible (<b>%s</b>).' -); - -?> +<?php
+
+/**
+ * @file languages/spanish.php
+ * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx AT gmail DOT com>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+$this->_strings = array(
+ CAS_STR_USING_SERVER
+ => 'usant servidor',
+ CAS_STR_AUTHENTICATION_WANTED
+ => 'Autentificació CAS necessà ria!',
+ CAS_STR_LOGOUT
+ => 'Sortida de CAS necessà ria!',
+ CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
+ => 'Ja hauria d\ haver estat redireccionat al servidor CAS. Feu click <a href="%s">aquÃ</a> per a continuar.',
+ CAS_STR_AUTHENTICATION_FAILED
+ => 'Autentificació CAS fallida!',
+ CAS_STR_YOU_WERE_NOT_AUTHENTICATED
+ => '<p>No està s autentificat.</p><p>Pots tornar a intentar-ho fent click <a href="%s">aquÃ</a>.</p><p>Si el problema persisteix haurÃa de contactar amb l\'<a href="mailto:%s">administrador d\'aquest llocc</a>.</p>',
+ CAS_STR_SERVICE_UNAVAILABLE
+ => 'El servei `<b>%s</b>\' no està disponible (<b>%s</b>).'
+);
+
+?>
diff --git a/plugins/CasAuthentication/extlib/CAS/languages/english.php b/plugins/CasAuthentication/extlib/CAS/languages/english.php index d38d42c1f..c14345031 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/english.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/english.php @@ -1,27 +1,27 @@ -<?php - -/** - * @file languages/english.php - * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -$this->_strings = array( - CAS_STR_USING_SERVER - => 'using server', - CAS_STR_AUTHENTICATION_WANTED - => 'CAS Authentication wanted!', - CAS_STR_LOGOUT - => 'CAS logout wanted!', - CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED - => 'You should already have been redirected to the CAS server. Click <a href="%s">here</a> to continue.', - CAS_STR_AUTHENTICATION_FAILED - => 'CAS Authentication failed!', - CAS_STR_YOU_WERE_NOT_AUTHENTICATED - => '<p>You were not authenticated.</p><p>You may submit your request again by clicking <a href="%s">here</a>.</p><p>If the problem persists, you may contact <a href="mailto:%s">the administrator of this site</a>.</p>', - CAS_STR_SERVICE_UNAVAILABLE - => 'The service `<b>%s</b>\' is not available (<b>%s</b>).' -); - +<?php
+
+/**
+ * @file languages/english.php
+ * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+$this->_strings = array(
+ CAS_STR_USING_SERVER
+ => 'using server',
+ CAS_STR_AUTHENTICATION_WANTED
+ => 'CAS Authentication wanted!',
+ CAS_STR_LOGOUT
+ => 'CAS logout wanted!',
+ CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
+ => 'You should already have been redirected to the CAS server. Click <a href="%s">here</a> to continue.',
+ CAS_STR_AUTHENTICATION_FAILED
+ => 'CAS Authentication failed!',
+ CAS_STR_YOU_WERE_NOT_AUTHENTICATED
+ => '<p>You were not authenticated.</p><p>You may submit your request again by clicking <a href="%s">here</a>.</p><p>If the problem persists, you may contact <a href="mailto:%s">the administrator of this site</a>.</p>',
+ CAS_STR_SERVICE_UNAVAILABLE
+ => 'The service `<b>%s</b>\' is not available (<b>%s</b>).'
+);
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/languages/french.php b/plugins/CasAuthentication/extlib/CAS/languages/french.php index 32d141685..b077ec02e 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/french.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/french.php @@ -1,28 +1,28 @@ -<?php - -/** - * @file languages/english.php - * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -$this->_strings = array( - CAS_STR_USING_SERVER - => 'utilisant le serveur', - CAS_STR_AUTHENTICATION_WANTED - => 'Authentication CAS nécessaire !', - CAS_STR_LOGOUT - => 'Déconnexion demandée !', - CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED - => 'Vous auriez du etre redirigé(e) vers le serveur CAS. Cliquez <a href="%s">ici</a> pour continuer.', - CAS_STR_AUTHENTICATION_FAILED - => 'Authentification CAS infructueuse !', - CAS_STR_YOU_WERE_NOT_AUTHENTICATED - => '<p>Vous n\'avez pas été authentifié(e).</p><p>Vous pouvez soumettre votre requete à nouveau en cliquant <a href="%s">ici</a>.</p><p>Si le problème persiste, vous pouvez contacter <a href="mailto:%s">l\'administrateur de ce site</a>.</p>', - CAS_STR_SERVICE_UNAVAILABLE - => 'Le service `<b>%s</b>\' est indisponible (<b>%s</b>)' - -); - +<?php
+
+/**
+ * @file languages/english.php
+ * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+$this->_strings = array(
+ CAS_STR_USING_SERVER
+ => 'utilisant le serveur',
+ CAS_STR_AUTHENTICATION_WANTED
+ => 'Authentication CAS n�cessaire !',
+ CAS_STR_LOGOUT
+ => 'D�connexion demand�e !',
+ CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
+ => 'Vous auriez du etre redirig�(e) vers le serveur CAS. Cliquez <a href="%s">ici</a> pour continuer.',
+ CAS_STR_AUTHENTICATION_FAILED
+ => 'Authentification CAS infructueuse !',
+ CAS_STR_YOU_WERE_NOT_AUTHENTICATED
+ => '<p>Vous n\'avez pas �t� authentifi�(e).</p><p>Vous pouvez soumettre votre requete � nouveau en cliquant <a href="%s">ici</a>.</p><p>Si le probl�me persiste, vous pouvez contacter <a href="mailto:%s">l\'administrateur de ce site</a>.</p>',
+ CAS_STR_SERVICE_UNAVAILABLE
+ => 'Le service `<b>%s</b>\' est indisponible (<b>%s</b>)'
+
+);
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/languages/german.php b/plugins/CasAuthentication/extlib/CAS/languages/german.php index 55c3238fd..29daeb35d 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/german.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/german.php @@ -1,27 +1,27 @@ -<?php - -/** - * @file languages/german.php - * @author Henrik Genssen <hg at mediafactory.de> - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -$this->_strings = array( - CAS_STR_USING_SERVER - => 'via Server', - CAS_STR_AUTHENTICATION_WANTED - => 'CAS Authentifizierung erforderlich!', - CAS_STR_LOGOUT - => 'CAS Abmeldung!', - CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED - => 'eigentlich häten Sie zum CAS Server weitergeleitet werden sollen. Drücken Sie <a href="%s">hier</a> um fortzufahren.', - CAS_STR_AUTHENTICATION_FAILED - => 'CAS Anmeldung fehlgeschlagen!', - CAS_STR_YOU_WERE_NOT_AUTHENTICATED - => '<p>Sie wurden nicht angemeldet.</p><p>Um es erneut zu versuchen klicken Sie <a href="%s">hier</a>.</p><p>Wenn das Problem bestehen bleibt, kontkatieren Sie den <a href="mailto:%s">Administrator</a> dieser Seite.</p>', - CAS_STR_SERVICE_UNAVAILABLE - => 'Der Dienst `<b>%s</b>\' ist nicht verfügbar (<b>%s</b>).' -); - +<?php
+
+/**
+ * @file languages/german.php
+ * @author Henrik Genssen <hg at mediafactory.de>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+$this->_strings = array(
+ CAS_STR_USING_SERVER
+ => 'via Server',
+ CAS_STR_AUTHENTICATION_WANTED
+ => 'CAS Authentifizierung erforderlich!',
+ CAS_STR_LOGOUT
+ => 'CAS Abmeldung!',
+ CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
+ => 'eigentlich häten Sie zum CAS Server weitergeleitet werden sollen. Drücken Sie <a href="%s">hier</a> um fortzufahren.',
+ CAS_STR_AUTHENTICATION_FAILED
+ => 'CAS Anmeldung fehlgeschlagen!',
+ CAS_STR_YOU_WERE_NOT_AUTHENTICATED
+ => '<p>Sie wurden nicht angemeldet.</p><p>Um es erneut zu versuchen klicken Sie <a href="%s">hier</a>.</p><p>Wenn das Problem bestehen bleibt, kontkatieren Sie den <a href="mailto:%s">Administrator</a> dieser Seite.</p>',
+ CAS_STR_SERVICE_UNAVAILABLE
+ => 'Der Dienst `<b>%s</b>\' ist nicht verfügbar (<b>%s</b>).'
+);
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/languages/greek.php b/plugins/CasAuthentication/extlib/CAS/languages/greek.php index d41bf783b..fdff77e4e 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/greek.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/greek.php @@ -1,27 +1,27 @@ -<?php - -/** - * @file languages/greek.php - * @author Vangelis Haniotakis <haniotak at ucnet.uoc.gr> - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -$this->_strings = array( - CAS_STR_USING_SERVER - => '÷ñçóéìïðïéåßôáé ï åîõðçñåôçôÞò', - CAS_STR_AUTHENTICATION_WANTED - => 'Áðáéôåßôáé ç ôáõôïðïßçóç CAS!', - CAS_STR_LOGOUT - => 'Áðáéôåßôáé ç áðïóýíäåóç áðü CAS!', - CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED - => 'Èá Ýðñåðå íá åß÷áôå áíáêáôåõèõíèåß óôïí åîõðçñåôçôÞ CAS. ÊÜíôå êëßê <a href="%s">åäþ</a> ãéá íá óõíå÷ßóåôå.', - CAS_STR_AUTHENTICATION_FAILED - => 'Ç ôáõôïðïßçóç CAS áðÝôõ÷å!', - CAS_STR_YOU_WERE_NOT_AUTHENTICATED - => '<p>Äåí ôáõôïðïéçèÞêáôå.</p><p>Ìðïñåßôå íá îáíáðñïóðáèÞóåôå, êÜíïíôáò êëßê <a href="%s">åäþ</a>.</p><p>Åáí ôï ðñüâëçìá åðéìåßíåé, åëÜôå óå åðáöÞ ìå ôïí <a href="mailto:%s">äéá÷åéñéóôÞ</a>.</p>', - CAS_STR_SERVICE_UNAVAILABLE - => 'Ç õðçñåóßá `<b>%s</b>\' äåí åßíáé äéáèÝóéìç (<b>%s</b>).' -); - +<?php
+
+/**
+ * @file languages/greek.php
+ * @author Vangelis Haniotakis <haniotak at ucnet.uoc.gr>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+$this->_strings = array(
+ CAS_STR_USING_SERVER
+ => '��������������� � ������������',
+ CAS_STR_AUTHENTICATION_WANTED
+ => '���������� � ����������� CAS!',
+ CAS_STR_LOGOUT
+ => '���������� � ���������� ��� CAS!',
+ CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
+ => '�� ������ �� ������ �������������� ���� ����������� CAS. ����� ���� <a href="%s">���</a> ��� �� ����������.',
+ CAS_STR_AUTHENTICATION_FAILED
+ => '� ����������� CAS �������!',
+ CAS_STR_YOU_WERE_NOT_AUTHENTICATED
+ => '<p>��� ���������������.</p><p>�������� �� ����������������, �������� ���� <a href="%s">���</a>.</p><p>��� �� �������� ���������, ����� �� ����� �� ��� <a href="mailto:%s">�����������</a>.</p>',
+ CAS_STR_SERVICE_UNAVAILABLE
+ => '� �������� `<b>%s</b>\' ��� ����� ��������� (<b>%s</b>).'
+);
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/languages/japanese.php b/plugins/CasAuthentication/extlib/CAS/languages/japanese.php index 333bb17b6..76ebe77bc 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/japanese.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/japanese.php @@ -11,17 +11,17 @@ $this->_strings = array( CAS_STR_USING_SERVER => 'using server', CAS_STR_AUTHENTICATION_WANTED - => 'CAS¤Ë¤è¤ëǧ¾Ú¤ò¹Ô¤¤¤Þ¤¹', + => 'CAS�ˤ��ǧ�ڤ�Ԥ��ޤ�', CAS_STR_LOGOUT - => 'CAS¤«¤é¥í¥°¥¢¥¦¥È¤·¤Þ¤¹!', + => 'CAS����?�����Ȥ��ޤ�!', CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED - => 'CAS¥µ¡¼¥Ð¤Ë¹Ô¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£¼«Æ°Åª¤ËžÁ÷¤µ¤ì¤Ê¤¤¾ì¹ç¤Ï <a href="%s">¤³¤Á¤é</a> ¤ò¥¯¥ê¥Ã¥¯¤·¤Æ³¹Ô¤·¤Þ¤¹¡£', + => 'CAS�����Ф˹Ԥ�ɬ�פ�����ޤ�����ưŪ��ž������ʤ����� <a href="%s">������</a> �ò¥¯¥ï¿½Ã¥ï¿½ï¿½ï¿½ï¿½ï¿½Â³ï¿½Ô¤ï¿½ï¿½Þ¤ï¿½ï¿½ï¿½', CAS_STR_AUTHENTICATION_FAILED - => 'CAS¤Ë¤è¤ëǧ¾Ú¤Ë¼ºÇÔ¤·¤Þ¤·¤¿', + => 'CAS�ˤ��ǧ�ڤ˼��Ԥ��ޤ���', CAS_STR_YOU_WERE_NOT_AUTHENTICATED - => '<p>ǧ¾Ú¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿.</p><p>¤â¤¦°ìÅ٥ꥯ¥¨¥¹¥È¤òÁ÷¿®¤¹¤ë¾ì¹ç¤Ï<a href="%s">¤³¤Á¤é</a>¤ò¥¯¥ê¥Ã¥¯.</p><p>ÌäÂ꤬²ò·è¤·¤Ê¤¤¾ì¹ç¤Ï <a href="mailto:%s">¤³¤Î¥µ¥¤¥È¤Î´ÉÍý¼Ô</a>¤ËÌ䤤¹ç¤ï¤»¤Æ¤¯¤À¤µ¤¤.</p>', + => '<p>ǧ�ڤǤ��ޤ���Ǥ���.</p><p>�⤦���٥ꥯ�����Ȥ������������<a href="%s">������</a>�ò¥¯¥ï¿½Ã¥ï¿½.</p><p>���꤬��褷�ʤ����� <a href="mailto:%s">���Υ����Ȥδ����</a>���䤤��碌�Ƥ�������.</p>', CAS_STR_SERVICE_UNAVAILABLE - => '¥µ¡¼¥Ó¥¹ `<b>%s</b>\' ¤ÏÍøÍѤǤ¤Þ¤»¤ó (<b>%s</b>).' + => '�����ӥ� `<b>%s</b>\' �����ѤǤ��ޤ��� (<b>%s</b>).' ); ?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/languages/languages.php b/plugins/CasAuthentication/extlib/CAS/languages/languages.php index 001cfe445..2c6f8bb3b 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/languages.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/languages.php @@ -1,24 +1,24 @@ -<?php - -/** - * @file languages/languages.php - * Internationalization constants - * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr> - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -//@{ -/** - * a phpCAS string index - */ -define("CAS_STR_USING_SERVER", 1); -define("CAS_STR_AUTHENTICATION_WANTED", 2); -define("CAS_STR_LOGOUT", 3); -define("CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED", 4); -define("CAS_STR_AUTHENTICATION_FAILED", 5); -define("CAS_STR_YOU_WERE_NOT_AUTHENTICATED", 6); -define("CAS_STR_SERVICE_UNAVAILABLE", 7); -//@} - +<?php
+
+/**
+ * @file languages/languages.php
+ * Internationalization constants
+ * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+//@{
+/**
+ * a phpCAS string index
+ */
+define("CAS_STR_USING_SERVER", 1);
+define("CAS_STR_AUTHENTICATION_WANTED", 2);
+define("CAS_STR_LOGOUT", 3);
+define("CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED", 4);
+define("CAS_STR_AUTHENTICATION_FAILED", 5);
+define("CAS_STR_YOU_WERE_NOT_AUTHENTICATED", 6);
+define("CAS_STR_SERVICE_UNAVAILABLE", 7);
+//@}
+
?>
\ No newline at end of file diff --git a/plugins/CasAuthentication/extlib/CAS/languages/spanish.php b/plugins/CasAuthentication/extlib/CAS/languages/spanish.php index 04067ca03..3a8ffc253 100644 --- a/plugins/CasAuthentication/extlib/CAS/languages/spanish.php +++ b/plugins/CasAuthentication/extlib/CAS/languages/spanish.php @@ -1,27 +1,27 @@ -<?php - -/** - * @file languages/spanish.php - * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx AT gmail DOT com> - * @sa @link internalLang Internationalization @endlink - * @ingroup internalLang - */ - -$this->_strings = array( - CAS_STR_USING_SERVER - => 'usando servidor', - CAS_STR_AUTHENTICATION_WANTED - => '¡Autentificación CAS necesaria!', - CAS_STR_LOGOUT - => '¡Salida CAS necesaria!', - CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED - => 'Ya deberÃa haber sido redireccionado al servidor CAS. Haga click <a href="%s">aquÃ</a> para continuar.', - CAS_STR_AUTHENTICATION_FAILED - => '¡Autentificación CAS fallida!', - CAS_STR_YOU_WERE_NOT_AUTHENTICATED - => '<p>No estás autentificado.</p><p>Puedes volver a intentarlo haciendo click <a href="%s">aquÃ</a>.</p><p>Si el problema persiste deberÃa contactar con el <a href="mailto:%s">administrador de este sitio</a>.</p>', - CAS_STR_SERVICE_UNAVAILABLE - => 'El servicio `<b>%s</b>\' no está disponible (<b>%s</b>).' -); - -?> +<?php
+
+/**
+ * @file languages/spanish.php
+ * @author Iván-BenjamÃn GarcÃa Torà <ivaniclixx AT gmail DOT com>
+ * @sa @link internalLang Internationalization @endlink
+ * @ingroup internalLang
+ */
+
+$this->_strings = array(
+ CAS_STR_USING_SERVER
+ => 'usando servidor',
+ CAS_STR_AUTHENTICATION_WANTED
+ => '¡Autentificación CAS necesaria!',
+ CAS_STR_LOGOUT
+ => '¡Salida CAS necesaria!',
+ CAS_STR_SHOULD_HAVE_BEEN_REDIRECTED
+ => 'Ya deberÃa haber sido redireccionado al servidor CAS. Haga click <a href="%s">aquÃ</a> para continuar.',
+ CAS_STR_AUTHENTICATION_FAILED
+ => '¡Autentificación CAS fallida!',
+ CAS_STR_YOU_WERE_NOT_AUTHENTICATED
+ => '<p>No estás autentificado.</p><p>Puedes volver a intentarlo haciendo click <a href="%s">aquÃ</a>.</p><p>Si el problema persiste deberÃa contactar con el <a href="mailto:%s">administrador de este sitio</a>.</p>',
+ CAS_STR_SERVICE_UNAVAILABLE
+ => 'El servicio `<b>%s</b>\' no está disponible (<b>%s</b>).'
+);
+
+?>
diff --git a/plugins/Comet/CometPlugin.php b/plugins/Comet/CometPlugin.php index 300d1e9a2..29cb3004b 100644 --- a/plugins/Comet/CometPlugin.php +++ b/plugins/Comet/CometPlugin.php @@ -68,7 +68,7 @@ class CometPlugin extends RealtimePlugin $ours = array('jquery.comet.js', 'cometupdate.js'); foreach ($ours as $script) { - $scripts[] = common_path('plugins/Comet/'.$script); + $scripts[] = 'plugins/Comet/'.$script; } return $scripts; diff --git a/plugins/Facebook/FacebookPlugin.php b/plugins/Facebook/FacebookPlugin.php index 65d4409b5..5dba73a5d 100644 --- a/plugins/Facebook/FacebookPlugin.php +++ b/plugins/Facebook/FacebookPlugin.php @@ -261,7 +261,7 @@ class FacebookPlugin extends Plugin if ($this->reqFbScripts($action)) { $apikey = common_config('facebook', 'apikey'); - $plugin_path = common_path('plugins/Facebook'); + $plugin_path = 'plugins/Facebook'; $login_url = common_local_url('FBConnectAuth'); $logout_url = common_local_url('logout'); diff --git a/plugins/Facebook/facebookaction.php b/plugins/Facebook/facebookaction.php index 8437a705a..f65b97c86 100644 --- a/plugins/Facebook/facebookaction.php +++ b/plugins/Facebook/facebookaction.php @@ -89,7 +89,7 @@ class FacebookAction extends Action function showScripts() { - $this->script(common_path('plugins/Facebook/facebookapp.js')); + $this->script('plugins/Facebook/facebookapp.js'); } /** diff --git a/plugins/Imap/ImapPlugin.php b/plugins/Imap/ImapPlugin.php index 89a775a16..d1e920b00 100644 --- a/plugins/Imap/ImapPlugin.php +++ b/plugins/Imap/ImapPlugin.php @@ -86,7 +86,7 @@ class ImapPlugin extends Plugin } } - function onStartIoManagerClasses(&$classes) + function onStartQueueDaemonIoManagers(&$classes) { $classes[] = new ImapManager($this); } diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index eb3a05117..e0fd615dd 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -76,6 +76,32 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin return false; } } + + function onEndShowPageNotice($action) + { + $name = $action->trimmed('action'); + $instr = false; + + switch ($name) + { + case 'register': + if($this->autoregistration) { + $instr = 'Have an LDAP account? Use your standard username and password.'; + } + break; + case 'login': + $instr = 'Have an LDAP account? Use your standard username and password.'; + break; + default: + return true; + } + + if($instr) { + $output = common_markup_to_html($instr); + $action->raw($output); + } + return true; + } //---interface implementation---// @@ -96,8 +122,11 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin } } - function autoRegister($username) + function autoRegister($username, $nickname) { + if(is_null($nickname)){ + $nickname = $username; + } $entry = $this->ldap_get_user($username,$this->attributes); if($entry){ $registration_data = array(); @@ -107,6 +136,7 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin if(isset($registration_data['email']) && !empty($registration_data['email'])){ $registration_data['email_confirmed']=true; } + $registration_data['nickname'] = $nickname; //set the database saved password to a random string. $registration_data['password']=common_good_rand(16); return User::register($registration_data); @@ -153,6 +183,21 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin return false; } + + function suggestNicknameForUsername($username) + { + $entry = $this->ldap_get_user($username, $this->attributes); + if(!$entry){ + //this really shouldn't happen + $nickname = $username; + }else{ + $nickname = $entry->getValue($this->attributes['nickname'],'single'); + if(!$nickname){ + $nickname = $username; + } + } + return common_nicknamize($nickname); + } //---utility functions---// function ldap_get_config(){ @@ -179,8 +224,7 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin $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; + throw new Exception('Could not connect to LDAP server: '.$err->getMessage()); } if($config == null) $this->default_ldap=$ldap; diff --git a/plugins/LdapAuthentication/README b/plugins/LdapAuthentication/README index 0460fb639..c188f2dbc 100644 --- a/plugins/LdapAuthentication/README +++ b/plugins/LdapAuthentication/README @@ -9,7 +9,10 @@ to the bottom of your config.php Settings ======== -provider_name*: a unique name for this authentication provider. +provider_name*: This is a identifier designated to the connection. + It's how StatusNet will refer to the authentication source. + For the most part, any name can be used, so long as each authentication source has a different identifier. + In most cases there will be only one authentication source used. authoritative (false): Set to true if LDAP's responses are authoritative (if authorative and LDAP fails, no other password checking will be done). autoregistration (false): Set to true if users should be automatically created diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 7f48ce5e1..19aff42b8 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -167,7 +167,7 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin $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()); + throw new Exception('Could not connect to LDAP server: '.$err->getMessage()); return false; } if($config == null) $this->default_ldap=$ldap; @@ -185,6 +185,9 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin if($ldap==null) { $ldap = $this->ldap_get_connection(); } + if(! $ldap) { + throw new Exception("Could not connect to LDAP"); + } $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals', $username); $options = array( 'attributes' => $attributes diff --git a/plugins/LdapAuthorization/README b/plugins/LdapAuthorization/README index 44239d8e0..3a6d8d25e 100644 --- a/plugins/LdapAuthorization/README +++ b/plugins/LdapAuthorization/README @@ -11,7 +11,10 @@ You *cannot* use this plugin without the LDAP Authentication plugin Settings ======== -provider_name*: name of the LDAP authentication provider that this plugin works with. +provider_name*: This is a identifier designated to the connection. + It's how StatusNet will refer to the authentication source. + For the most part, any name can be used, so long as each authentication source has a different identifier. + In most cases there will be only one authentication source used. authoritative (false): should this plugin be authoritative for authorization? uniqueMember_attribute ('uniqueMember')*: the attribute of a group diff --git a/plugins/Minify/MinifyPlugin.php b/plugins/Minify/MinifyPlugin.php index fe1883ded..69def6064 100644 --- a/plugins/Minify/MinifyPlugin.php +++ b/plugins/Minify/MinifyPlugin.php @@ -86,7 +86,11 @@ class MinifyPlugin extends Plugin $url = parse_url($src); if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) { - $src = $this->minifyUrl($src); + if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) { + $src = $this->minifyUrl($src); + } else { + $src = $this->minifyUrl('js/'.$src); + } } } diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index bdcaae366..efb630297 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -335,12 +335,12 @@ class OStatusPlugin extends Plugin } function onEndShowStatusNetStyles($action) { - $action->cssLink(common_path('plugins/OStatus/theme/base/css/ostatus.css')); + $action->cssLink('plugins/OStatus/theme/base/css/ostatus.css'); return true; } function onEndShowStatusNetScripts($action) { - $action->script(common_path('plugins/OStatus/js/ostatus.js')); + $action->script('plugins/OStatus/js/ostatus.js'); return true; } diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index 248afe3fa..6b35ec3e1 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -235,9 +235,14 @@ class OpenIDPlugin extends Plugin switch ($name) { case 'register': - $instr = '(Have an [OpenID](http://openid.net/)? ' . - 'Try our [OpenID registration]'. - '(%%action.openidlogin%%)!)'; + if (common_logged_in()) { + $instr = '(Have an [OpenID](http://openid.net/)? ' . + '[Add an OpenID to your account](%%action.openidsettings%%)!'; + } else { + $instr = '(Have an [OpenID](http://openid.net/)? ' . + 'Try our [OpenID registration]'. + '(%%action.openidlogin%%)!)'; + } break; case 'login': $instr = '(Have an [OpenID](http://openid.net/)? ' . diff --git a/plugins/Orbited/OrbitedPlugin.php b/plugins/Orbited/OrbitedPlugin.php index ba87b266a..8af71af74 100644 --- a/plugins/Orbited/OrbitedPlugin.php +++ b/plugins/Orbited/OrbitedPlugin.php @@ -77,9 +77,9 @@ class OrbitedPlugin extends RealtimePlugin $root = 'http://'.$server.(($port == 80) ? '':':'.$port); $scripts[] = $root.'/static/Orbited.js'; - $scripts[] = common_path('plugins/Orbited/orbitedextra.js'); + $scripts[] = 'plugins/Orbited/orbitedextra.js'; $scripts[] = $root.'/static/protocols/stomp/stomp.js'; - $scripts[] = common_path('plugins/Orbited/orbitedupdater.js'); + $scripts[] = 'plugins/Orbited/orbitedupdater.js'; return $scripts; } diff --git a/plugins/README-plugins b/plugins/README-plugins new file mode 100644 index 000000000..cdce7eb18 --- /dev/null +++ b/plugins/README-plugins @@ -0,0 +1,21 @@ +Several example plugins are included in the plugins/ directory. You +can enable a plugin with the following line in config.php: + + addPlugin('Example', array('param1' => 'value1', + 'param2' => 'value2')); + +This will look for and load files named 'ExamplePlugin.php' or +'Example/ExamplePlugin.php' either in the plugins/ directory (for +plugins that ship with StatusNet) or in the local/ directory (for +plugins you write yourself or that you get from somewhere else) or +local/plugins/. + +Plugins are documented in their own directories. + + +Additional information on using and developing plugins can be found +on the StatusNet wiki: + +http://status.net/wiki/Plugins +http://status.net/wiki/Plugin_development + diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 2b3cb35f1..b559d80c6 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -117,7 +117,7 @@ class RealtimePlugin extends Plugin function onEndShowStatusNetStyles($action) { - $action->cssLink(common_path('plugins/Realtime/realtimeupdate.css'), + $action->cssLink('plugins/Realtime/realtimeupdate.css', null, 'screen, projection, tv'); return true; } @@ -305,7 +305,7 @@ class RealtimePlugin extends Plugin function _getScripts() { - return array(common_path('plugins/Realtime/realtimeupdate.js')); + return array('plugins/Realtime/realtimeupdate.js'); } function _updateInitialize($timeline, $user_id) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 2e5851ae5..0f7a680d7 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -130,7 +130,7 @@ RealtimeUpdate = { user = data['user']; html = data['html'].replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/&/g,'&'); source = data['source'].replace(/</g,'<').replace(/>/g,'>').replace(/"/g,'"').replace(/&/g,'&'); - +console.log(data); ni = "<li class=\"hentry notice\" id=\"notice-"+unique+"\">"+ "<div class=\"entry-title\">"+ "<span class=\"vcard author\">"+ diff --git a/plugins/Recaptcha/RecaptchaPlugin.php b/plugins/Recaptcha/RecaptchaPlugin.php index 3665214f8..c585da43c 100644 --- a/plugins/Recaptcha/RecaptchaPlugin.php +++ b/plugins/Recaptcha/RecaptchaPlugin.php @@ -31,8 +31,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -define('RECAPTCHA', '0.2'); - require_once(INSTALLDIR.'/plugins/Recaptcha/recaptchalib.php'); class RecaptchaPlugin extends Plugin @@ -88,4 +86,16 @@ class RecaptchaPlugin extends Plugin return false; } } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'Recaptcha', + 'version' => STATUSNET_VERSION, + 'author' => 'Eric Helgeson', + 'homepage' => 'http://status.net/wiki/Plugin:Recaptcha', + 'rawdescription' => + _m('Uses <a href="http://recaptcha.org/">Recaptcha</a> service to add a '. + 'captcha to the registration page.')); + return true; + } } diff --git a/plugins/ReverseUsernameAuthentication/README b/plugins/ReverseUsernameAuthentication/README index e9160ed9b..57b53219e 100644 --- a/plugins/ReverseUsernameAuthentication/README +++ b/plugins/ReverseUsernameAuthentication/README @@ -8,7 +8,10 @@ add "addPlugin('reverseUsernameAuthentication', array('setting'=>'value', 'setti Settings ======== -provider_name*: a unique name for this authentication provider. +provider_name*: This is a identifier designated to the connection. + It's how StatusNet will refer to the authentication source. + For the most part, any name can be used, so long as each authentication source has a different identifier. + In most cases there will be only one authentication source used. password_changeable*: must be set to false. This plugin does not support changing passwords. authoritative (false): Set to true if this plugin's responses are authoritative (meaning if this fails, do check any other plugins or the internal password database). autoregistration (false): Set to true if users should be automatically created when they attempt to login. diff --git a/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php b/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php index d9d2137f8..dac5a1588 100644 --- a/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php +++ b/plugins/ReverseUsernameAuthentication/ReverseUsernameAuthenticationPlugin.php @@ -47,10 +47,13 @@ class ReverseUsernameAuthenticationPlugin extends AuthenticationPlugin return $username == strrev($password); } - function autoRegister($username) + function autoRegister($username, $nickname) { + if(is_null($nickname)){ + $nickname = $username; + } $registration_data = array(); - $registration_data['nickname'] = $username ; + $registration_data['nickname'] = $nickname ; return User::register($registration_data); } diff --git a/plugins/TabFocus/TabFocusPlugin.php b/plugins/TabFocus/TabFocusPlugin.php new file mode 100644 index 000000000..bf89c478c --- /dev/null +++ b/plugins/TabFocus/TabFocusPlugin.php @@ -0,0 +1,57 @@ +<?php +/** + * StatusNet, the distributed open-source microblogging tool + * + * Plugin to enable Twitter-like "tab-space" pattern for a user to submit a notice + * + * PHP version 5 + * + * LICENCE: 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/>. + * + * @category Plugin + * @package StatusNet + * @author Craig Andrews <candrews@integralblue.com> + * @author Paul Irish <paul.irish@isobar.net> + * @copyright 2009 Craig Andrews http://candrews.integralblue.com + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +if (!defined('STATUSNET') && !defined('LACONICA')) { + exit(1); +} + +class TabFocusPlugin extends Plugin +{ + function __construct() + { + parent::__construct(); + } + + function onEndShowScripts($action) + { + $action->script('plugins/TabFocus/tabfocus.js'); + } + + function onPluginVersion(&$versions) + { + $versions[] = array('name' => 'TabFocus', + 'version' => STATUSNET_VERSION, + 'author' => 'Craig Andrews and Paul Irish', + 'homepage' => 'http://status.net/wiki/Plugin:TabFocus', + 'rawdescription' => + _m('TabFocus changes the notice form behavior so that, while in the text area, pressing the tab key focuses the "Send" button, matching the behavor of Twitter.')); + return true; + } +} diff --git a/plugins/TabFocus/tabfocus.js b/plugins/TabFocus/tabfocus.js new file mode 100644 index 000000000..e2c1c6521 --- /dev/null +++ b/plugins/TabFocus/tabfocus.js @@ -0,0 +1,7 @@ +jQuery(function($){ + $('#notice_data-text').bind('keydown',function(e){ + if (e.which==9) { + setTimeout(function(){ $('#notice_action-submit').focus(); },15); + } + }); +}); diff --git a/plugins/TwitterBridge/twitter.php b/plugins/TwitterBridge/twitter.php index ceb83b037..13e499d65 100644 --- a/plugins/TwitterBridge/twitter.php +++ b/plugins/TwitterBridge/twitter.php @@ -252,8 +252,17 @@ function format_status($notice) $statustxt = preg_replace('/^@/', ' @', $notice->content); // Convert !groups to #hashes + + // XXX: Make this an optional setting? + $statustxt = preg_replace('/(^|\s)!([A-Za-z0-9]{1,64})/', "\\1#\\2", $statustxt); + if (mb_strlen($statustxt) > 140) { + $noticeUrl = common_shorten_url($notice->uri); + $urlLen = mb_strlen($noticeUrl); + $statustxt = mb_substr($statustxt, 0, 140 - ($urlLen + 3)) . ' … ' . $noticeUrl; + } + return $statustxt; } diff --git a/scripts/useremail.php b/scripts/useremail.php index 6676a87c8..0a59d36f8 100755 --- a/scripts/useremail.php +++ b/scripts/useremail.php @@ -53,7 +53,17 @@ if (have_option('i', 'id')) { if (!empty($user)) { if (empty($user->email)) { - print "No email registered for user '$user->nickname'\n"; + # Check for unconfirmed emails + $unconfirmed_email = new Confirm_address(); + $unconfirmed_email->user_id = $user->id; + $unconfirmed_email->address_type = 'email'; + $unconfirmed_email->find(true); + + if (empty($unconfirmed_email->address)) { + print "No email registered for user '$user->nickname'\n"; + } else { + print "Unconfirmed Adress: $unconfirmed_email->address\n"; + } } else { print "$user->email\n"; } @@ -65,7 +75,18 @@ if (have_option('e', 'email')) { $user->email = get_option_value('e', 'email'); $user->find(false); if (!$user->fetch()) { - print "No users with email $user->email\n"; + # Check unconfirmed emails + $unconfirmed_email = new Confirm_address(); + $unconfirmed_email->address = $user->email; + $unconfirmed_email->address_type = 'email'; + $unconfirmed_email->find(true); + + if (empty($unconfirmed_email->user_id)) { + print "No users with email $user->email\n"; + } else { + $user=User::staticGet('id', $unconfirmed_email->user_id); + print "Unconfirmed Address: $user->id $user->nickname\n"; + } exit(0); } do { |