diff options
Diffstat (limited to 'plugins/OpenID')
-rw-r--r-- | plugins/OpenID/OpenIDPlugin.php | 133 | ||||
-rw-r--r-- | plugins/OpenID/locale/OpenID.pot | 85 | ||||
-rw-r--r-- | plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po | 606 | ||||
-rw-r--r-- | plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po | 200 | ||||
-rw-r--r-- | plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po | 97 | ||||
-rw-r--r-- | plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po | 96 | ||||
-rw-r--r-- | plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po | 96 | ||||
-rw-r--r-- | plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po | 94 | ||||
-rw-r--r-- | plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po | 93 | ||||
-rw-r--r-- | plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po | 96 | ||||
-rw-r--r-- | plugins/OpenID/openidadminpanel.php | 2 |
11 files changed, 1207 insertions, 391 deletions
diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index a033a5010..cdaabbbf7 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -46,7 +46,6 @@ if (!defined('STATUSNET')) { * @link http://status.net/ * @link http://openid.net/ */ - class OpenIDPlugin extends Plugin { // Plugin parameter: set true to disallow non-OpenID logins @@ -60,7 +59,6 @@ class OpenIDPlugin extends Plugin global $config; $config['site']['openidonly'] = (bool)$this->openidOnly; } - } /** @@ -72,7 +70,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onStartInitializeRouter($m) { $m->connect('main/openid', array('action' => 'openidlogin')); @@ -98,7 +95,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onStartConnectPath(&$path, &$defaults, &$rules, &$result) { if (common_config('site', 'openidonly')) { @@ -127,7 +123,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onArgsInitialize($args) { if (common_config('site', 'openidonly')) { @@ -158,7 +153,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onEndPublicXRDS($action, &$xrdsOutputter) { $xrdsOutputter->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)', @@ -189,7 +183,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onEndUserXRDS($action, &$xrdsOutputter) { $xrdsOutputter->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)', @@ -218,7 +211,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onStartPrimaryNav($action) { if (common_config('site', 'openidonly') && !common_logged_in()) { @@ -260,7 +252,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onStartLoginGroupNav(&$action) { if (common_config('site', 'openidonly')) { @@ -281,7 +272,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onEndLoginGroupNav(&$action) { $this->showOpenIDLoginTab($action); @@ -296,7 +286,6 @@ class OpenIDPlugin extends Plugin * * @return void */ - function showOpenIDLoginTab($action) { $action_name = $action->trimmed('action'); @@ -319,7 +308,6 @@ class OpenIDPlugin extends Plugin * * @return void */ - function onStartAccountSettingsPasswordMenuItem($menu, &$unused) { if (common_config('site', 'openidonly')) { return false; @@ -334,7 +322,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onEndAccountSettingsNav(&$action) { $action_name = $action->trimmed('action'); @@ -358,7 +345,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onAutoload($cls) { switch ($cls) @@ -400,7 +386,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onSensitiveAction($action, &$ssl) { switch ($action) @@ -424,7 +409,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook return */ - function onLoginAction($action, &$login) { switch ($action) @@ -447,7 +431,6 @@ class OpenIDPlugin extends Plugin * * @return void */ - function onEndShowHeadElements($action) { if ($action instanceof ShowstreamAction) { @@ -471,7 +454,6 @@ class OpenIDPlugin extends Plugin * * @return boolean whether to continue */ - function onRedirectToLogin($action, $user) { if (common_config('site', 'openid_only') || (!empty($user) && User_openid::hasOpenID($user->id))) { @@ -488,7 +470,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onEndShowPageNotice($action) { $name = $action->trimmed('action'); @@ -527,7 +508,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onStartLoadDoc(&$title, &$output) { if ($title == 'openid') { @@ -549,7 +529,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onEndLoadDoc($title, &$output) { if ($title == 'help') { @@ -568,7 +547,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onCheckSchema() { $schema = Schema::get(); @@ -601,7 +579,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onUserDeleteRelated($user, &$tables) { $tables[] = 'User_openid'; @@ -616,7 +593,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onEndAdminPanelNav($nav) { if (AdminPanelAction::canAdmin('openid')) { @@ -625,7 +601,9 @@ class OpenIDPlugin extends Plugin $nav->out->menuItem( common_local_url('openidadminpanel'), - _m('OpenID'), + // TRANS: OpenID configuration menu item. + _m('MENU','OpenID'), + // TRANS: Tooltip for OpenID configuration menu item. _m('OpenID configuration'), $action_name == 'openidadminpanel', 'nav_openid_admin_panel' @@ -642,7 +620,6 @@ class OpenIDPlugin extends Plugin * * @return boolean hook value */ - function onPluginVersion(&$versions) { $versions[] = array('name' => 'OpenID', @@ -654,4 +631,108 @@ class OpenIDPlugin extends Plugin _m('Use <a href="http://openid.net/">OpenID</a> to login to the site.')); return true; } + + function onStartOAuthLoginForm($action, &$button) + { + if (common_config('site', 'openidonly')) { + // Cancel the regular password login form, we won't need it. + $this->showOAuthLoginForm($action); + // TRANS: button label for OAuth authorization page when needing OpenID authentication first. + $button = _m('BUTTON', 'Continue'); + return false; + } else { + // Leave the regular password login form in place. + // We'll add an OpenID link at bottom...? + return true; + } + } + + /** + * @fixme merge with common code for main OpenID login form + * @param HTMLOutputter $action + */ + protected function showOAuthLoginForm($action) + { + $action->elementStart('fieldset'); + // TRANS: OpenID plugin logon form legend. + $action->element('legend', null, _m('OpenID login')); + + $action->elementStart('ul', 'form_data'); + $action->elementStart('li'); + $provider = common_config('openid', 'trusted_provider'); + $appendUsername = common_config('openid', 'append_username'); + if ($provider) { + // TRANS: Field label. + $action->element('label', array(), _m('OpenID provider')); + $action->element('span', array(), $provider); + if ($appendUsername) { + $action->element('input', array('id' => 'openid_username', + 'name' => 'openid_username', + 'style' => 'float: none')); + } + $action->element('p', 'form_guide', + // TRANS: Form guide. + ($appendUsername ? _m('Enter your username.') . ' ' : '') . + // TRANS: Form guide. + _m('You will be sent to the provider\'s site for authentication.')); + $action->hidden('openid_url', $provider); + } else { + // TRANS: OpenID plugin logon form field label. + $action->input('openid_url', _m('OpenID URL'), + '', + // TRANS: OpenID plugin logon form field instructions. + _m('Your OpenID URL')); + } + $action->elementEnd('li'); + $action->elementEnd('ul'); + + $action->elementEnd('fieldset'); + } + + /** + * Handle a POST user credential check in apioauthauthorization. + * If given an OpenID URL, we'll pass us over to the regular things + * and then redirect back here on completion. + * + * @fixme merge with common code for main OpenID login form + * @param HTMLOutputter $action + */ + function onStartOAuthLoginCheck($action, &$user) + { + $provider = common_config('openid', 'trusted_provider'); + if ($provider) { + $openid_url = $provider; + if (common_config('openid', 'append_username')) { + $openid_url .= $action->trimmed('openid_username'); + } + } else { + $openid_url = $action->trimmed('openid_url'); + } + + if ($openid_url) { + require_once dirname(__FILE__) . '/openid.php'; + oid_assert_allowed($openid_url); + + $returnto = common_local_url( + 'ApiOauthAuthorize', + array(), + array( + 'oauth_token' => $action->arg('oauth_token'), + 'mode' => $action->arg('mode') + ) + ); + common_set_returnto($returnto); + + // This will redirect if functional... + $result = oid_authenticate($openid_url, + 'finishopenidlogin'); + if (is_string($result)) { # error message + throw new ServerException($result); + } else { + exit(0); + } + } + + return true; + } } diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index 8ef57965f..2d8efbf5c 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+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" @@ -38,7 +38,7 @@ msgid "" msgstr "" #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" msgstr "" @@ -109,7 +109,7 @@ msgstr "" msgid "OpenID removed." msgstr "" -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "" @@ -170,7 +170,7 @@ msgstr "" #: openidadminpanel.php:260 msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" @@ -242,67 +242,100 @@ msgid "" msgstr "" #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" msgstr "" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "" +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +msgctxt "BUTTON" +msgid "Continue" +msgstr "" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "" + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format @@ -481,28 +514,6 @@ msgstr "" msgid "OpenID Login" msgstr "" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "" - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "" - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po new file mode 100644 index 000000000..efea4febe --- /dev/null +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -0,0 +1,606 @@ +# Translation of StatusNet - OpenID to Catalan (Català) +# Expored from translatewiki.net +# +# Author: Toniher +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - OpenID\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" +"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ca\n" +"X-Message-Group: #out-statusnet-plugin-openid\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: openidsettings.php:58 openidadminpanel.php:65 +msgid "OpenID settings" +msgstr "Paràmetres de l'OpenID" + +#: openidsettings.php:69 +#, php-format +msgid "" +"[OpenID](%%doc.openid%%) lets you log into many sites with the same user " +"account. Manage your associated OpenIDs from here." +msgstr "" +"[OpenID](%%doc.openid%%) us permet iniciar una sessió a molts llocs amb un " +"mateix compte d'usuari. Gestioneu les vostres connexions OpenID associades " +"des d'aquí." + +#: openidsettings.php:100 +msgid "Add OpenID" +msgstr "Afegeix una connexió OpenID" + +#: openidsettings.php:103 +msgid "" +"If you want to add an OpenID to your account, enter it in the box below and " +"click \"Add\"." +msgstr "" +"Si voleu afegir una connexió OpenID al vostre compte, introduïu-la en la " +"caixa a continuació i feu clic a «Afegeix»." + +#. TRANS: OpenID plugin logon form field label. +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 +msgid "OpenID URL" +msgstr "URL de la connexió OpenID" + +#: openidsettings.php:118 +msgid "Add" +msgstr "Afegeix" + +#: openidsettings.php:130 +msgid "Remove OpenID" +msgstr "Suprimeix la connexió OpenID" + +#: openidsettings.php:135 +msgid "" +"Removing your only OpenID would make it impossible to log in! If you need to " +"remove it, add another OpenID first." +msgstr "" +"Si suprimiu la vostra única connexió OpenID, serà impossible que hi inicieu " +"cap sessió. Si cal que la suprimiu, primer afegiu-ne una altra." + +#: openidsettings.php:150 +msgid "" +"You can remove an OpenID from your account by clicking the button marked " +"\"Remove\"." +msgstr "" +"Podeu suprimir una connexió OpenID del vostre compte si feu clic al botó " +"marcat amb «Suprimeix»." + +#: openidsettings.php:173 openidsettings.php:214 +msgid "Remove" +msgstr "Suprimeix" + +#: openidsettings.php:187 +msgid "OpenID Trusted Sites" +msgstr "Llocs de confiança de l'OpenID" + +#: openidsettings.php:190 +msgid "" +"The following sites are allowed to access your identity and log you in. You " +"can remove a site from this list to deny it access to your OpenID." +msgstr "" + +#. TRANS: Message given when there is a problem with the user's session token. +#: openidsettings.php:232 finishopenidlogin.php:42 openidlogin.php:51 +msgid "There was a problem with your session token. Try again, please." +msgstr "" + +#: openidsettings.php:239 +msgid "Can't add new providers." +msgstr "" + +#: openidsettings.php:252 +msgid "Something weird happened." +msgstr "" + +#: openidsettings.php:276 +msgid "No such OpenID trustroot." +msgstr "" + +#: openidsettings.php:280 +msgid "Trustroots removed" +msgstr "" + +#: openidsettings.php:303 +msgid "No such OpenID." +msgstr "" + +#: openidsettings.php:308 +msgid "That OpenID does not belong to you." +msgstr "" + +#: openidsettings.php:312 +msgid "OpenID removed." +msgstr "" + +#: openidadminpanel.php:54 +msgid "OpenID" +msgstr "" + +#: openidadminpanel.php:147 +msgid "Invalid provider URL. Max length is 255 characters." +msgstr "" + +#: openidadminpanel.php:153 +msgid "Invalid team name. Max length is 255 characters." +msgstr "" + +#: openidadminpanel.php:210 +msgid "Trusted provider" +msgstr "" + +#: openidadminpanel.php:212 +msgid "" +"By default, users are allowed to authenticate with any OpenID provider. If " +"you are using your own OpenID service for shared sign-in, you can restrict " +"access to only your own users here." +msgstr "" + +#: openidadminpanel.php:220 +msgid "Provider URL" +msgstr "" + +#: openidadminpanel.php:221 +msgid "" +"All OpenID logins will be sent to this URL; other providers may not be used." +msgstr "" + +#: openidadminpanel.php:228 +msgid "Append a username to base URL" +msgstr "" + +#: openidadminpanel.php:230 +msgid "" +"Login form will show the base URL and prompt for a username to add at the " +"end. Use when OpenID provider URL should be the profile page for individual " +"users." +msgstr "" + +#: openidadminpanel.php:238 +msgid "Required team" +msgstr "" + +#: openidadminpanel.php:239 +msgid "Only allow logins from users in the given team (Launchpad extension)." +msgstr "" + +#: openidadminpanel.php:251 +msgid "Options" +msgstr "Opcions" + +#: openidadminpanel.php:258 +msgid "Enable OpenID-only mode" +msgstr "" + +#: openidadminpanel.php:260 +msgid "" +"Require all users to login via OpenID. Warning: disables password " +"authentication for all users!" +msgstr "" + +#: openidadminpanel.php:278 +msgid "Save OpenID settings" +msgstr "" + +#. TRANS: OpenID plugin server error. +#: openid.php:138 +msgid "Cannot instantiate OpenID consumer object." +msgstr "" + +#. TRANS: OpenID plugin message. Given when an OpenID is not valid. +#: openid.php:150 +msgid "Not a valid OpenID." +msgstr "" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request fails. +#. TRANS: %s is the failure message. +#: openid.php:155 +#, php-format +msgid "OpenID failure: %s" +msgstr "" + +#. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. +#. TRANS: %s is the failure message. +#: openid.php:205 +#, php-format +msgid "Could not redirect to server: %s" +msgstr "" + +#. TRANS: OpenID plugin user instructions. +#: openid.php:244 +msgid "" +"This form should automatically submit itself. If not, click the submit " +"button to go to your OpenID provider." +msgstr "" + +#. TRANS: OpenID plugin server error. +#: openid.php:280 +msgid "Error saving the profile." +msgstr "" + +#. TRANS: OpenID plugin server error. +#: openid.php:292 +msgid "Error saving the user." +msgstr "" + +#. TRANS: OpenID plugin client exception (403). +#: openid.php:322 +msgid "Unauthorized URL used for OpenID login." +msgstr "" + +#. TRANS: Title +#: openid.php:370 +msgid "OpenID Login Submission" +msgstr "" + +#. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. +#: openid.php:381 +msgid "Requesting authorization from your login provider..." +msgstr "" + +#. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. +#: openid.php:385 +msgid "" +"If you are not redirected to your login provider in a few seconds, try " +"pushing the button below." +msgstr "" + +#. TRANS: Tooltip for main menu option "Login" +#: OpenIDPlugin.php:218 +msgctxt "TOOLTIP" +msgid "Login to the site" +msgstr "" + +#. TRANS: Main menu option when not logged in to log in +#: OpenIDPlugin.php:221 +msgctxt "MENU" +msgid "Login" +msgstr "" + +#. TRANS: Tooltip for main menu option "Help" +#: OpenIDPlugin.php:226 +msgctxt "TOOLTIP" +msgid "Help me!" +msgstr "Ajuda'm!" + +#. TRANS: Main menu option for help on the StatusNet site +#: OpenIDPlugin.php:229 +msgctxt "MENU" +msgid "Help" +msgstr "Ajuda" + +#. TRANS: Tooltip for main menu option "Search" +#: OpenIDPlugin.php:235 +msgctxt "TOOLTIP" +msgid "Search for people or text" +msgstr "" + +#. TRANS: Main menu option when logged in or when the StatusNet instance is not private +#: OpenIDPlugin.php:238 +msgctxt "MENU" +msgid "Search" +msgstr "Cerca" + +#. TRANS: OpenID plugin menu item on site logon page. +#. TRANS: OpenID plugin menu item on user settings page. +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 +msgctxt "MENU" +msgid "OpenID" +msgstr "OpenID" + +#. TRANS: OpenID plugin tooltip for logon menu item. +#: OpenIDPlugin.php:297 +msgid "Login or register with OpenID" +msgstr "Inici de sessió o registre amb OpenID" + +#. TRANS: OpenID plugin tooltip for user settings menu item. +#: OpenIDPlugin.php:333 +msgid "Add or remove OpenIDs" +msgstr "Afegeix o suprimeix connexions OpenID" + +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 +msgid "OpenID configuration" +msgstr "Configuració de l'OpenID" + +#. TRANS: OpenID plugin description. +#: OpenIDPlugin.php:631 +msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." +msgstr "" +"Fa servir <a href=\"http://openid.net/\">OpenID</a> per connectar-se al lloc." + +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continua" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "Inici de sessió amb OpenID" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "Proveïdor d'OpenID" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Introduïu el vostre nom d'usuari." + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "Se us portarà al lloc del proveïdor perquè us hi autentiqueu." + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "L'URL del vostre OpenID" + +#. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). +#: openidserver.php:116 +#, php-format +msgid "You are not authorized to use the identity %s." +msgstr "No esteu autoritzar a utilitzar la identitat %s." + +#. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). +#: openidserver.php:137 +msgid "Just an OpenID provider. Nothing to see here, move along..." +msgstr "Només un proveïdor OpenID. Res per veure aquí, movem-nos-en…" + +#. TRANS: Client error message trying to log on with OpenID while already logged on. +#: finishopenidlogin.php:37 openidlogin.php:33 +msgid "Already logged in." +msgstr "Ja heu iniciat una sessió." + +#. TRANS: Message given if user does not agree with the site's license. +#: finishopenidlogin.php:48 +msgid "You can't register if you don't agree to the license." +msgstr "No podeu registrar-vos-hi si no accepteu la llicència." + +#. TRANS: Messag given on an unknown error. +#: finishopenidlogin.php:57 +msgid "An unknown error has occured." +msgstr "S'ha produït un error desconegut." + +#. TRANS: Instructions given after a first successful logon using OpenID. +#. TRANS: %s is the site name. +#: finishopenidlogin.php:73 +#, php-format +msgid "" +"This is the first time you've logged into %s so we must connect your OpenID " +"to a local account. You can either create a new account, or connect with " +"your existing account, if you have one." +msgstr "" + +#. TRANS: Title +#: finishopenidlogin.php:80 +msgid "OpenID Account Setup" +msgstr "Configuració del compte OpenID" + +#: finishopenidlogin.php:110 +msgid "Create new account" +msgstr "" + +#: finishopenidlogin.php:112 +msgid "Create a new user with this nickname." +msgstr "" + +#: finishopenidlogin.php:115 +msgid "New nickname" +msgstr "" + +#: finishopenidlogin.php:117 +msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +msgstr "" + +#. TRANS: Button label in form in which to create a new user on the site for an OpenID. +#: finishopenidlogin.php:142 +msgctxt "BUTTON" +msgid "Create" +msgstr "Crea" + +#. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:148 +msgid "Connect existing account" +msgstr "" + +#. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:151 +msgid "" +"If you already have an account, login with your username and password to " +"connect it to your OpenID." +msgstr "" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:155 +msgid "Existing nickname" +msgstr "" + +#. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:159 +msgid "Password" +msgstr "Contrasenya" + +#. TRANS: Button label in form in which to connect an OpenID to an existing user on the site. +#: finishopenidlogin.php:163 +msgctxt "BUTTON" +msgid "Connect" +msgstr "Connecta-hi" + +#. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. +#: finishopenidlogin.php:176 finishaddopenid.php:90 +msgid "OpenID authentication cancelled." +msgstr "" + +#. TRANS: OpenID authentication failed; display the error message. %s is the error message. +#. TRANS: OpenID authentication failed; display the error message. +#. TRANS: %s is the error message. +#: finishopenidlogin.php:180 finishaddopenid.php:95 +#, php-format +msgid "OpenID authentication failed: %s" +msgstr "" + +#: finishopenidlogin.php:200 finishaddopenid.php:111 +msgid "" +"OpenID authentication aborted: you are not allowed to login to this site." +msgstr "" + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site. +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. +#: finishopenidlogin.php:252 finishopenidlogin.php:262 +msgid "Registration not allowed." +msgstr "No es permet el registre." + +#. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. +#: finishopenidlogin.php:270 +msgid "Not a valid invitation code." +msgstr "No és un codi d'invitació vàlid." + +#. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. +#: finishopenidlogin.php:281 +msgid "Nickname must have only lowercase letters and numbers and no spaces." +msgstr "" +"El sobrenom ha de contenir només lletres minúscules i nombres, i cap espai." + +#. TRANS: OpenID plugin message. The entered new user name is blacklisted. +#: finishopenidlogin.php:287 +msgid "Nickname not allowed." +msgstr "No es permet el sobrenom." + +#. TRANS: OpenID plugin message. The entered new user name is already used. +#: finishopenidlogin.php:293 +msgid "Nickname already in use. Try another one." +msgstr "El sobrenom ja és en ús. Proveu-ne un altre." + +#. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. +#. TRANS: OpenID plugin server error. A stored OpenID cannot be found. +#: finishopenidlogin.php:301 finishopenidlogin.php:388 +msgid "Stored OpenID not found." +msgstr "No s'ha trobat la connexió OpenID emmagatzemada." + +#. TRANS: OpenID plugin server error. +#: finishopenidlogin.php:311 +msgid "Creating new account for OpenID that already has a user." +msgstr "" +"S'està creant un compte nou per a una connexió OpenID que ja té un usuari." + +#. TRANS: OpenID plugin message. +#: finishopenidlogin.php:376 +msgid "Invalid username or password." +msgstr "El nom d'usuari o la contrasenya no són vàlids." + +#. TRANS: OpenID plugin server error. The user or user profile could not be saved. +#: finishopenidlogin.php:396 +msgid "Error connecting user to OpenID." +msgstr "S'ha produït un error en connectar l'usuari amb la connexió OpenID." + +#. TRANS: OpenID plugin message. Rememberme logins have to reauthenticate before changing any profile settings. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:82 +#, php-format +msgid "" +"For security reasons, please re-login with your [OpenID](%%doc.openid%%) " +"before changing your settings." +msgstr "" +"Per motius de seguretat, torneu a iniciar una sessió amb [OpenID](%%doc." +"openid%%) abans de canviar els paràmetres." + +#. TRANS: OpenID plugin message. +#. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". +#: openidlogin.php:88 +#, php-format +msgid "Login with an [OpenID](%%doc.openid%%) account." +msgstr "Inicia una sessió amb un compte [OpenID](%%doc.openid%%)." + +#. TRANS: OpenID plugin message. Title. +#. TRANS: Title after getting the status of the OpenID authorisation request. +#: openidlogin.php:122 finishaddopenid.php:187 +msgid "OpenID Login" +msgstr "Inici de sessió amb OpenID" + +#. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. +#: openidlogin.php:169 +msgid "Remember me" +msgstr "Recorda'm" + +#. TRANS: OpenID plugin logon form field instructions. +#: openidlogin.php:171 +msgid "Automatically login in the future; not for shared computers!" +msgstr "" +"Inicia una sessió automàticament en el futur; no recomanable en ordinadors " +"compartits!" + +#. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. +#: openidlogin.php:176 +msgctxt "BUTTON" +msgid "Login" +msgstr "Inicia una sessió" + +#: openidtrust.php:52 +msgid "OpenID Identity Verification" +msgstr "Verificació de la identitat d'OpenID" + +#: openidtrust.php:70 +msgid "" +"This page should only be reached during OpenID processing, not directly." +msgstr "" +"Hauria d'arribar-se a aquesta pàgina només durant el processament de " +"l'OpenID, no directament." + +#: openidtrust.php:118 +#, php-format +msgid "" +"%s has asked to verify your identity. Click Continue to verify your " +"identity and login without creating a new password." +msgstr "" +"%s us ha demanat verificar la identitat. Feu clic a Continuar per verificar " +"la vostra identitat i iniciar una sessió sense crear cap contrasenya nova." + +#: openidtrust.php:136 +msgid "Continue" +msgstr "Continua" + +#: openidtrust.php:137 +msgid "Cancel" +msgstr "Cancel·la" + +#. TRANS: Client error message +#: finishaddopenid.php:68 +msgid "Not logged in." +msgstr "No s'ha iniciat una sessió." + +#. TRANS: message in case a user tries to add an OpenID that is already connected to them. +#: finishaddopenid.php:122 +msgid "You already have this OpenID!" +msgstr "Ja teniu aquest OpenID!" + +#. TRANS: message in case a user tries to add an OpenID that is already used by another user. +#: finishaddopenid.php:125 +msgid "Someone else already has this OpenID." +msgstr "Algú altre ja té aquest OpenID." + +#. TRANS: message in case the OpenID object cannot be connected to the user. +#: finishaddopenid.php:138 +msgid "Error connecting user." +msgstr "S'ha produït un error en connectar l'usuari" + +#. TRANS: message in case the user or the user profile cannot be saved in StatusNet. +#: finishaddopenid.php:145 +msgid "Error updating profile" +msgstr "S'ha produït un error en actualitzar el perfil" diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index a5fad3a9d..3c88ec4db 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:02+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" "Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -32,10 +32,12 @@ msgid "" "[OpenID](%%doc.openid%%) lets you log into many sites with the same user " "account. Manage your associated OpenIDs from here." msgstr "" +"[OpenID](%%doc.openid%%) erlaubt die, dich auf vielen Seiten mit dem selben " +"Benutzerkonto anzumelden. Verwalte deine verknüpften OpenIDs von hier aus." #: openidsettings.php:100 msgid "Add OpenID" -msgstr "Füge OpenID hinzu" +msgstr "OpenID hinzufügen" #: openidsettings.php:103 msgid "" @@ -46,9 +48,9 @@ msgstr "" "nachfolgenden Feld ein und klicke auf „Hinzufügen“." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" -msgstr "OpenID URL" +msgstr "OpenID-URL" #: openidsettings.php:118 msgid "Add" @@ -80,7 +82,7 @@ msgstr "Entfernen" #: openidsettings.php:187 msgid "OpenID Trusted Sites" -msgstr "" +msgstr "Vertrauenswürdige OpenID-Seiten" #: openidsettings.php:190 msgid "" @@ -124,7 +126,7 @@ msgstr "Diese OpenID gehört dir nicht." msgid "OpenID removed." msgstr "OpenID entfernt." -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "OpenID" @@ -146,19 +148,24 @@ msgid "" "you are using your own OpenID service for shared sign-in, you can restrict " "access to only your own users here." msgstr "" +"Standardmäßig dürfen sich Benutzer mit jedem OpenID-Provider " +"authentifizieren. Wenn du deinen eigenen OpenID-Servide benutzt, kannst du " +"hier den Zugang auf deine eigenen Benutzer beschränken." #: openidadminpanel.php:220 msgid "Provider URL" -msgstr "" +msgstr "Provider-URL" #: openidadminpanel.php:221 msgid "" "All OpenID logins will be sent to this URL; other providers may not be used." msgstr "" +"Alle OpenID-Anmeldungen werden an diese URL gesendet; andere Provider können " +"nicht verwendet werden." #: openidadminpanel.php:228 msgid "Append a username to base URL" -msgstr "" +msgstr "Einen Benutzernamen an die Basis-URL anfügen" #: openidadminpanel.php:230 msgid "" @@ -166,32 +173,39 @@ msgid "" "end. Use when OpenID provider URL should be the profile page for individual " "users." msgstr "" +"Die Anmelde-Form wird eine Basis-URL anzeigen und um einen Benutzernamen am " +"Ende bitten. Benutzer dass, wenn die OpenID-Provider-URL die Profilseite " +"individueller Benutzer sein sollte." #: openidadminpanel.php:238 msgid "Required team" -msgstr "" +msgstr "Erforderliche Mannschaft" #: openidadminpanel.php:239 msgid "Only allow logins from users in the given team (Launchpad extension)." msgstr "" +"Nur Anmeldungen von Benutzern aus der gegebenen Mannschaft erlauben " +"(Launchpad-Erweiterung)." #: openidadminpanel.php:251 msgid "Options" -msgstr "" +msgstr "Optionen" #: openidadminpanel.php:258 msgid "Enable OpenID-only mode" -msgstr "" +msgstr "Nur-OpenID-Modus aktivieren" #: openidadminpanel.php:260 msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" +"Von allen Benutzern OpenID-Anmeldung verlangen. Warnung: deaktiviert " +"Passwort-Authentifizierung aller Benutzer!" #: openidadminpanel.php:278 msgid "Save OpenID settings" -msgstr "" +msgstr "OpenId-Einstellungen speichern" #. TRANS: OpenID plugin server error. #: openid.php:138 @@ -208,14 +222,14 @@ msgstr "Keine gültige OpenID." #: openid.php:155 #, php-format msgid "OpenID failure: %s" -msgstr "" +msgstr "OpenId-Fehler: %s" #. TRANS: OpenID plugin server error. Given when the OpenID authentication request cannot be redirected. #. TRANS: %s is the failure message. #: openid.php:205 #, php-format msgid "Could not redirect to server: %s" -msgstr "" +msgstr "Konnte keine Verbindung zum Server erstellen: %s" #. TRANS: OpenID plugin user instructions. #: openid.php:244 @@ -227,17 +241,17 @@ msgstr "" #. TRANS: OpenID plugin server error. #: openid.php:280 msgid "Error saving the profile." -msgstr "" +msgstr "Fehler beim Speichern des Profils." #. TRANS: OpenID plugin server error. #: openid.php:292 msgid "Error saving the user." -msgstr "" +msgstr "Fehler beim Speichern des Benutzers." #. TRANS: OpenID plugin client exception (403). #: openid.php:322 msgid "Unauthorized URL used for OpenID login." -msgstr "" +msgstr "Unauthorisierte URL für OpenID-Anmeldung benutzt." #. TRANS: Title #: openid.php:370 @@ -247,7 +261,7 @@ msgstr "" #. TRANS: OpenID plugin message used while requesting authorization user's OpenID login provider. #: openid.php:381 msgid "Requesting authorization from your login provider..." -msgstr "" +msgstr "Authorisierung von deinem Login-Provider wird angefragt …" #. TRANS: OpenID plugin message. User instruction while requesting authorization user's OpenID login provider. #: openid.php:385 @@ -255,81 +269,117 @@ msgid "" "If you are not redirected to your login provider in a few seconds, try " "pushing the button below." msgstr "" +"Wenn du nicht in wenigen Sekunden zu deinem Login-Provider weitergeleitet " +"wirst, versuche den Button unten zu klicken." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" -msgstr "" +msgstr "Auf der Seite anmelden" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Anmelden" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Hilf mir!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Hilfe" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" -msgstr "" +msgstr "Suche nach Leuten oder Text" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Suche" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "Anmelden oder Registrieren per OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "Hinzufügen oder Entfernen von OpenIDs" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" -msgstr "" +msgstr "OpenId-Konfiguration" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "" "Benutzung der <a href=\"http://openid.net/\">OpenID</a> zur Anmeldung auf " "der Seite" +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Weiter" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Gib deinen Benutzernamen ein." + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "" + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "Ihre OpenID URL" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format msgid "You are not authorized to use the identity %s." -msgstr "" +msgstr "Du bist nicht berechtigt, die Identität %s zu benutzen." #. TRANS: OpenID plugin client error given when not getting a response for a given OpenID provider (500). #: openidserver.php:137 msgid "Just an OpenID provider. Nothing to see here, move along..." -msgstr "" +msgstr "Nur ein OpenID-Provider. Hier gibt es nichts zu sehen …" #. TRANS: Client error message trying to log on with OpenID while already logged on. #: finishopenidlogin.php:37 openidlogin.php:33 @@ -340,11 +390,12 @@ msgstr "Bereits angemeldet." #: finishopenidlogin.php:48 msgid "You can't register if you don't agree to the license." msgstr "" +"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst." #. TRANS: Messag given on an unknown error. #: finishopenidlogin.php:57 msgid "An unknown error has occured." -msgstr "" +msgstr "Ein unbekannter Fehler ist aufgetreten." #. TRANS: Instructions given after a first successful logon using OpenID. #. TRANS: %s is the site name. @@ -355,6 +406,10 @@ msgid "" "to a local account. You can either create a new account, or connect with " "your existing account, if you have one." msgstr "" +"Dies ist das erste Mal, dass du dich auf %s anmeldest, sodass wir deine " +"OpenID mit einem lokalen Benutzerkonto verbinden müssen. Du kannst entweder " +"ein neues Benutzerkonto erstellen oder dich mit deinem existierendem " +"Benutzerkonto verbinden." #. TRANS: Title #: finishopenidlogin.php:80 @@ -367,15 +422,15 @@ msgstr "Neues Benutzerkonto erstellen" #: finishopenidlogin.php:112 msgid "Create a new user with this nickname." -msgstr "" +msgstr "Neues Benutzerkonto mit diesem Benutzernamen erstellen." #: finishopenidlogin.php:115 msgid "New nickname" -msgstr "" +msgstr "Neuer Benutzername" #: finishopenidlogin.php:117 msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" +msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" #. TRANS: Button label in form in which to create a new user on the site for an OpenID. #: finishopenidlogin.php:142 @@ -386,7 +441,7 @@ msgstr "Erstellen" #. TRANS: Used as form legend for form in which to connect an OpenID to an existing user on the site. #: finishopenidlogin.php:148 msgid "Connect existing account" -msgstr "" +msgstr "Bestehendes Benutzerkonto verbinden" #. TRANS: User instructions for form in which to connect an OpenID to an existing user on the site. #: finishopenidlogin.php:151 @@ -394,11 +449,13 @@ msgid "" "If you already have an account, login with your username and password to " "connect it to your OpenID." msgstr "" +"Wenn du bereits ein Benutzerkonto hast, melde dich mit deinem Benutzernamen " +"und Passwort an, um ihn mit deiner OpenID zu verbinden." #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. #: finishopenidlogin.php:155 msgid "Existing nickname" -msgstr "" +msgstr "Bestehender Benutzername" #. TRANS: Field label in form in which to connect an OpenID to an existing user on the site. #: finishopenidlogin.php:159 @@ -409,12 +466,12 @@ msgstr "Passwort" #: finishopenidlogin.php:163 msgctxt "BUTTON" msgid "Connect" -msgstr "" +msgstr "Verbinden" #. TRANS: Status message in case the response from the OpenID provider is that the logon attempt was cancelled. #: finishopenidlogin.php:176 finishaddopenid.php:90 msgid "OpenID authentication cancelled." -msgstr "" +msgstr "OpenID-Authentifizierung abgebrochen." #. TRANS: OpenID authentication failed; display the error message. %s is the error message. #. TRANS: OpenID authentication failed; display the error message. @@ -422,38 +479,42 @@ msgstr "" #: finishopenidlogin.php:180 finishaddopenid.php:95 #, php-format msgid "OpenID authentication failed: %s" -msgstr "" +msgstr "OpenID-Authentifizierung gescheitert: %s" #: finishopenidlogin.php:200 finishaddopenid.php:111 msgid "" "OpenID authentication aborted: you are not allowed to login to this site." msgstr "" +"OpenID-Authentifizierung abgebrochen: du darfst dich nicht auf dieser Seite " +"anmelden." #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. #: finishopenidlogin.php:252 finishopenidlogin.php:262 msgid "Registration not allowed." -msgstr "" +msgstr "Registrierung nicht erlaubt." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. #: finishopenidlogin.php:270 msgid "Not a valid invitation code." -msgstr "" +msgstr "Kein gültiger Einladungscode." #. TRANS: OpenID plugin message. The entered new user name did not conform to the requirements. #: finishopenidlogin.php:281 msgid "Nickname must have only lowercase letters and numbers and no spaces." msgstr "" +"Der Benutzername darf nur aus Kleinbuchstaben und Zahlen bestehen. " +"Leerzeichen sind nicht erlaubt." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. #: finishopenidlogin.php:287 msgid "Nickname not allowed." -msgstr "" +msgstr "Benutzername nicht erlaubt." #. TRANS: OpenID plugin message. The entered new user name is already used. #: finishopenidlogin.php:293 msgid "Nickname already in use. Try another one." -msgstr "" +msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. @@ -469,7 +530,7 @@ msgstr "" #. TRANS: OpenID plugin message. #: finishopenidlogin.php:376 msgid "Invalid username or password." -msgstr "" +msgstr "Benutzername oder Passwort falsch." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. #: finishopenidlogin.php:396 @@ -484,13 +545,15 @@ msgid "" "For security reasons, please re-login with your [OpenID](%%doc.openid%%) " "before changing your settings." msgstr "" +"Bitte melde dich aus Sicherheitsgründen noch einmal mit deiner [OpenID](%%" +"doc.openid%%), bevor du deine Einstellungen änderst." #. TRANS: OpenID plugin message. #. TRANS: "OpenID" is the display text for a link with URL "(%%doc.openid%%)". #: openidlogin.php:88 #, php-format msgid "Login with an [OpenID](%%doc.openid%%) account." -msgstr "" +msgstr "Mit einem [OpenID](%%doc.openid%%)-Benutzerkonto anmelden." #. TRANS: OpenID plugin message. Title. #. TRANS: Title after getting the status of the OpenID authorisation request. @@ -498,28 +561,6 @@ msgstr "" msgid "OpenID Login" msgstr "" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "Gib deinen Benutzernamen ein." - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "" - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "Ihre OpenID URL" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" @@ -528,7 +569,7 @@ msgstr "Anmeldedaten merken" #. TRANS: OpenID plugin logon form field instructions. #: openidlogin.php:171 msgid "Automatically login in the future; not for shared computers!" -msgstr "" +msgstr "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" #. TRANS: OpenID plugin logon form button label to start logon with the data provided in the logon form. #: openidlogin.php:176 @@ -551,6 +592,9 @@ msgid "" "%s has asked to verify your identity. Click Continue to verify your " "identity and login without creating a new password." msgstr "" +"%s hat dich gebeten, deine Identität zu bestätigen. Klicke auf „Weiter“, um " +"deine Identität zu bestätigen und dich anzumelden ohne ein neues Passwort zu " +"erstellen." #: openidtrust.php:136 msgid "Continue" @@ -563,7 +607,7 @@ msgstr "Abbrechen" #. TRANS: Client error message #: finishaddopenid.php:68 msgid "Not logged in." -msgstr "" +msgstr "Nicht angemeldet." #. TRANS: message in case a user tries to add an OpenID that is already connected to them. #: finishaddopenid.php:122 @@ -573,7 +617,7 @@ msgstr "Du hast bereits diese OpenID!" #. TRANS: message in case a user tries to add an OpenID that is already used by another user. #: finishaddopenid.php:125 msgid "Someone else already has this OpenID." -msgstr "" +msgstr "Jemand anders hat bereits diese Open-ID." #. TRANS: message in case the OpenID object cannot be connected to the user. #: finishaddopenid.php:138 diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index 1785ecb4a..d25c86fc9 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -1,6 +1,7 @@ # Translation of StatusNet - OpenID to French (Français) # Expored from translatewiki.net # +# Author: Peter17 # Author: Verdy p # -- # This file is distributed under the same license as the StatusNet package. @@ -9,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:02+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" "Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -48,7 +49,7 @@ msgstr "" "case ci-dessous et cliquez sur « Ajouter »." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" msgstr "Adresse URL OpenID" @@ -79,7 +80,7 @@ msgstr "" #: openidsettings.php:173 openidsettings.php:214 msgid "Remove" -msgstr "Retirer" +msgstr "Enlever" #: openidsettings.php:187 msgid "OpenID Trusted Sites" @@ -129,7 +130,7 @@ msgstr "Ce compte OpenID ne vous appartient pas." msgid "OpenID removed." msgstr "Compte OpenID retiré." -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "OpenID" @@ -204,10 +205,10 @@ msgstr "Activer le mode OpenID seul" #: openidadminpanel.php:260 msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" -"Exiger que tous les utilisateurs se connectent via OpenID. AVERTISSEMENT : " +"Exiger que tous les utilisateurs se connectent via OpenID. Avertissement : " "cela désactive l’authentification par mot de passe pour tous les " "utilisateurs !" @@ -284,68 +285,102 @@ msgstr "" "quelques secondes, essayez en cliquant le bouton ci-dessous." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Connexion au site" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Connexion" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Aidez-moi !" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Aide" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Rechercher" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "Se connecter ou s’inscrire avec OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "Ajouter ou retirer des identifiants OpenID" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" msgstr "Configuration d’OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "" "Utiliser <a href=\"http://openid.net/\">OpenID</a> pour se connecter au site." +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuer" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "Connexion OpenID" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "Fournisseur OpenID" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Entrez votre nom d’utilisateur." + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "Vous serez envoyé sur le site du fournisseur pour l’authentification." + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "Votre URL OpenID" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format @@ -536,28 +571,6 @@ msgstr "Connexion avec un compte [OpenID](%%doc.openid%%)." msgid "OpenID Login" msgstr "Connexion OpenID" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "Connexion OpenID" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "Fournisseur OpenID" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "Entrez votre nom d’utilisateur." - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "Vous serez envoyé sur le site du fournisseur pour l’authentification." - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "Votre URL OpenID" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 01d28a70e..9a416ec88 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:35+0000\n" "Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -47,7 +47,7 @@ msgstr "" "clicca \"Adder\"." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" msgstr "URL OpenID" @@ -124,7 +124,7 @@ msgstr "Iste OpenID non appertine a te." msgid "OpenID removed." msgstr "OpenID removite." -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "OpenID" @@ -196,11 +196,11 @@ msgstr "Activar modo OpenID sol" #: openidadminpanel.php:260 msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" -"Requirer que tote le usatores aperi session via OpenID. ATTENTION: isto " -"disactiva le authentication per contrasigno pro tote le usatores!" +"Requirer que tote le usatores aperi session via OpenID. Aviso: disactiva le " +"authentication per contrasigno pro tote le usatores!" #: openidadminpanel.php:278 msgid "Save OpenID settings" @@ -275,68 +275,102 @@ msgstr "" "tenta pulsar le button hic infra." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Authenticar te a iste sito" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Aperir session" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Adjuta me!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Adjuta" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Cercar personas o texto" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Cercar" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "Aperir session o crear conto via OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "Adder o remover OpenIDs" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" msgstr "Configuration de OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "" "Usar <a href=\"http://openid.net/\">OpenID</a> pro aperir session al sito." +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Continuar" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "Apertura de session via OpenID" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "Fornitor de OpenID" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Entra tu nomine de usator." + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "Tu essera inviate al sito del fornitor pro authentication." + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "Tu URL de OpenID" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format @@ -525,28 +559,6 @@ msgstr "Aperir session con un conto [OpenID](%%doc.openid%%)." msgid "OpenID Login" msgstr "Apertura de session via OpenID" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "Apertura de session via OpenID" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "Fornitor de OpenID" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "Entra tu nomine de usator." - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "Tu essera inviate al sito del fornitor pro authentication." - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "Tu URL de OpenID" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index dc68a5821..a28736e4e 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" "Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -48,7 +48,7 @@ msgstr "" "полето подолу и кликнете на „Додај“." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" msgstr "URL на OpenID" @@ -124,7 +124,7 @@ msgstr "Тој OpenID не Ви припаѓа Вам." msgid "OpenID removed." msgstr "OpenID е отстранет." -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "OpenID" @@ -194,11 +194,11 @@ msgstr "Вклучи режим „само OpenID“" #: openidadminpanel.php:260 msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" -"Барај од сите корисници да се најават преку OpenID. ПРЕДУПРЕДУВАЊЕ: ова ја " -"оневозможува потврдата на лозинка за сите корисници!" +"Барај од сите корисници да се најавуваат преку OpenID. ПРЕДУПРЕДУВАЊЕ: ова " +"ја оневозможува потврдата на лозинка за сите корисници!" #: openidadminpanel.php:278 msgid "Save OpenID settings" @@ -272,67 +272,101 @@ msgstr "" "тогаш пристиснете го копчето подолу." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Најава на мреж. место" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Најава" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Напомош!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Помош" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пребарување на луѓе или текст" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Пребарај" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "Најава или регистрација со OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "Додај или отстрани OpenID-ја" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" msgstr "Поставки за OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "Користете <a href=\"http://openid.net/\">OpenID</a> за најава." +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Продолжи" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "Најава со OpenID" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "Услужител за OpenID" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Внесете го Вашето корисничко име." + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "Ќе бидете префрлени на мреж. место на услужникот за потврда." + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "URL-адреса на Вашиот OpenID" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format @@ -521,28 +555,6 @@ msgstr "Најава со сметка на [OpenID](%%doc.openid%%)." msgid "OpenID Login" msgstr "OpenID-Најава" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "Најава со OpenID" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "Услужител за OpenID" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "Внесете го Вашето корисничко име." - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "Ќе бидете префрлени на мреж. место на услужникот за потврда." - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "URL-адреса на Вашиот OpenID" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index 6286a98fc..b64129047 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" "Last-Translator: Siebrand Mazeland <s.mazeland@xs4all.nl>\n" "Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -50,7 +50,7 @@ msgstr "" "en klik op \"Toevoegen\"." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" msgstr "OpenID-URL" @@ -128,7 +128,7 @@ msgstr "Die OpenID is niet van u." msgid "OpenID removed." msgstr "OpenID verwijderd." -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "OpenID" @@ -199,12 +199,12 @@ msgstr "Alleen OpenID inschakelen" #: openidadminpanel.php:260 msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" "Alle gebruikers verplichten aan te melden via OpenID. Waarschuwing: als deze " "instelling wordt gebruikt, kan geen enkele gebruiker met een wachtwoord " -"aanmelden." +"aanmelden!" #: openidadminpanel.php:278 msgid "Save OpenID settings" @@ -278,69 +278,103 @@ msgstr "" "aanmeldprovider, klik dan op de onderstaande knop." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Aanmelden bij de site" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Aanmelden" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Help me" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Hulp" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Zoeken naar mensen of tekst" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Zoeken" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "Aanmelden of registreren met OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "OpenID's toevoegen of verwijderen" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" msgstr "OpenID-instellingen" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "" "Gebruik <a href=\"http://openid.net/\">OpenID</a> om aan te melden bij de " "site." +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Doorgaan" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "Aanmelden via OpenID" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "OpenID-provider" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Voer uw gebruikersnaam in" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "U wordt naar de site van de provider omgeleid om aan te melden." + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "Uw OpenID-URL" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format @@ -529,28 +563,6 @@ msgstr "Aanmelden met een [OpenID](%%doc.openid%%)-gebruiker." msgid "OpenID Login" msgstr "Aanmelden via OpenID" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "Aanmelden via OpenID" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "OpenID-provider" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "Voer uw gebruikersnaam in" - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "U wordt naar de site van de provider omgeleid om aan te melden." - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "Uw OpenID-URL" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index e7fdc2fc9..5f41aff84 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" "Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -48,7 +48,7 @@ msgstr "" "nasa ibaba at pindutin ang \"Idagdag\"." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" msgstr "URL ng OpenID" @@ -126,7 +126,7 @@ msgstr "Hindi mo pag-aari ang OpenID na iyan." msgid "OpenID removed." msgstr "Tinanggal ang OpenID." -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "OpenID" @@ -202,8 +202,9 @@ msgid "Enable OpenID-only mode" msgstr "Paganahin ang gawi na OpenID lamang" #: openidadminpanel.php:260 +#, fuzzy msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" "Igiit sa lahat ng mga tagagamit na lumagda sa pamamagitan ng OpenID. " @@ -284,68 +285,102 @@ msgstr "" "ng ilang mga segundo, subukang pindutin ang pindutang nasa ibaba." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Lumagda sa sityo" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Lumagda" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Saklolohan ako!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Saklolo" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Maghanap ng mga tao o teksto" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Maghanap" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "Lumagda o magpatala na may OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "Idagdag o alisin ang mga OpenID" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" msgstr "Pagkakaayos ng OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "" "Gamitin ang <a href=\"http://openid.net/\">OpenID</a> upang lumagda sa sityo." +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Magpatuloy" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "Panglagdang OpenID" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "Tagapagbigay ng OpenID" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Ipasok ang iyong pangalan ng tagagamit." + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "Ipapadala ka sa sityo ng tagapagbigay para sa pagpapatunay." + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "Ang iyong URL ng OpenID" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format @@ -539,28 +574,6 @@ msgstr "Lumagda sa pamamagitan ng isang akawnt ng [OpenID](%%doc.openid%%)." msgid "OpenID Login" msgstr "Panglagdang OpenID" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "Panglagdang OpenID" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "Tagapagbigay ng OpenID" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "Ipasok ang iyong pangalan ng tagagamit." - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "Ipapadala ka sa sityo ng tagapagbigay para sa pagpapatunay." - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "Ang iyong URL ng OpenID" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 63f2c1304..bd381baf3 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-09 14:04+0000\n" -"PO-Revision-Date: 2010-10-09 14:08:03+0000\n" +"POT-Creation-Date: 2010-10-23 18:02+0000\n" +"PO-Revision-Date: 2010-10-23 18:05:38+0000\n" "Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74529); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-20 17:54:48+0000\n" +"X-Generator: MediaWiki 1.17alpha (r75280); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -49,7 +49,7 @@ msgstr "" "натисніть «Додати»." #. TRANS: OpenID plugin logon form field label. -#: openidsettings.php:108 openidlogin.php:161 +#: openidsettings.php:108 OpenIDPlugin.php:681 openidlogin.php:161 msgid "OpenID URL" msgstr "URL-адреса OpenID" @@ -127,7 +127,7 @@ msgstr "Даний OpenID належить не вам." msgid "OpenID removed." msgstr "OpenID видалено." -#: openidadminpanel.php:54 OpenIDPlugin.php:628 +#: openidadminpanel.php:54 msgid "OpenID" msgstr "OpenID" @@ -199,11 +199,11 @@ msgstr "Увімкнути режим входу лише за OpenID" #: openidadminpanel.php:260 msgid "" -"Require all users to login via OpenID. WARNING: disables password " +"Require all users to login via OpenID. Warning: disables password " "authentication for all users!" msgstr "" -"Вимагає, щоб всі користувачі входили лише за наявності OpenID. УВАГА: ця " -"опція вимикає автентифікацію за паролем для всіх користувачів." +"Вимагає, щоб всі користувачі входили лише за допомогою OpenID. Увага: ця " +"опція вимикає автентифікацію за паролем для всіх користувачів!" #: openidadminpanel.php:278 msgid "Save OpenID settings" @@ -277,68 +277,102 @@ msgstr "" "OpenID-провайдера, просто натисніть кнопку внизу." #. TRANS: Tooltip for main menu option "Login" -#: OpenIDPlugin.php:226 +#: OpenIDPlugin.php:218 msgctxt "TOOLTIP" msgid "Login to the site" msgstr "Вхід на сайт" #. TRANS: Main menu option when not logged in to log in -#: OpenIDPlugin.php:229 +#: OpenIDPlugin.php:221 msgctxt "MENU" msgid "Login" msgstr "Увійти" #. TRANS: Tooltip for main menu option "Help" -#: OpenIDPlugin.php:234 +#: OpenIDPlugin.php:226 msgctxt "TOOLTIP" msgid "Help me!" msgstr "Допоможіть!" #. TRANS: Main menu option for help on the StatusNet site -#: OpenIDPlugin.php:237 +#: OpenIDPlugin.php:229 msgctxt "MENU" msgid "Help" msgstr "Довідка" #. TRANS: Tooltip for main menu option "Search" -#: OpenIDPlugin.php:243 +#: OpenIDPlugin.php:235 msgctxt "TOOLTIP" msgid "Search for people or text" msgstr "Пошук людей або текстів" #. TRANS: Main menu option when logged in or when the StatusNet instance is not private -#: OpenIDPlugin.php:246 +#: OpenIDPlugin.php:238 msgctxt "MENU" msgid "Search" msgstr "Пошук" #. TRANS: OpenID plugin menu item on site logon page. #. TRANS: OpenID plugin menu item on user settings page. -#: OpenIDPlugin.php:306 OpenIDPlugin.php:344 +#. TRANS: OpenID configuration menu item. +#: OpenIDPlugin.php:295 OpenIDPlugin.php:331 OpenIDPlugin.php:605 msgctxt "MENU" msgid "OpenID" msgstr "OpenID" #. TRANS: OpenID plugin tooltip for logon menu item. -#: OpenIDPlugin.php:308 +#: OpenIDPlugin.php:297 msgid "Login or register with OpenID" msgstr "Увійти або зареєструватися за допомогою OpenID" #. TRANS: OpenID plugin tooltip for user settings menu item. -#: OpenIDPlugin.php:346 +#: OpenIDPlugin.php:333 msgid "Add or remove OpenIDs" msgstr "Додати або видалити OpenID" -#: OpenIDPlugin.php:629 +#. TRANS: Tooltip for OpenID configuration menu item. +#: OpenIDPlugin.php:607 msgid "OpenID configuration" msgstr "Конфігурація OpenID" #. TRANS: OpenID plugin description. -#: OpenIDPlugin.php:654 +#: OpenIDPlugin.php:631 msgid "Use <a href=\"http://openid.net/\">OpenID</a> to login to the site." msgstr "" "Використання <a href=\"http://openid.net/\">OpenID</a> для входу на сайт." +#. TRANS: button label for OAuth authorization page when needing OpenID authentication first. +#: OpenIDPlugin.php:641 +#, fuzzy +msgctxt "BUTTON" +msgid "Continue" +msgstr "Продовжити" + +#. TRANS: OpenID plugin logon form legend. +#: OpenIDPlugin.php:658 openidlogin.php:140 +msgid "OpenID login" +msgstr "Вхід з OpenID" + +#. TRANS: Field label. +#: OpenIDPlugin.php:666 openidlogin.php:148 +msgid "OpenID provider" +msgstr "OpenID-провайдер" + +#. TRANS: Form guide. +#: OpenIDPlugin.php:675 openidlogin.php:156 +msgid "Enter your username." +msgstr "Введіть ім’я користувача." + +#. TRANS: Form guide. +#: OpenIDPlugin.php:677 openidlogin.php:157 +msgid "You will be sent to the provider's site for authentication." +msgstr "Вас буде перенаправлено на веб-сторінку провайдера для автентифікації." + +#. TRANS: OpenID plugin logon form field instructions. +#: OpenIDPlugin.php:684 openidlogin.php:164 +msgid "Your OpenID URL" +msgstr "URL вашого OpenID" + #. TRANS: OpenID plugin client error given trying to add an unauthorised OpenID to a user (403). #: openidserver.php:116 #, php-format @@ -529,28 +563,6 @@ msgstr "Увійти з [OpenID](%%doc.openid%%)." msgid "OpenID Login" msgstr "Вхід з OpenID" -#. TRANS: OpenID plugin logon form legend. -#: openidlogin.php:140 -msgid "OpenID login" -msgstr "Вхід з OpenID" - -#: openidlogin.php:148 -msgid "OpenID provider" -msgstr "OpenID-провайдер" - -#: openidlogin.php:156 -msgid "Enter your username." -msgstr "Введіть ім’я користувача." - -#: openidlogin.php:157 -msgid "You will be sent to the provider's site for authentication." -msgstr "Вас буде перенаправлено на веб-сторінку провайдера для автентифікації." - -#. TRANS: OpenID plugin logon form field instructions. -#: openidlogin.php:164 -msgid "Your OpenID URL" -msgstr "URL вашого OpenID" - #. TRANS: OpenID plugin logon form checkbox label for setting to put the OpenID information in a cookie. #: openidlogin.php:169 msgid "Remember me" diff --git a/plugins/OpenID/openidadminpanel.php b/plugins/OpenID/openidadminpanel.php index ce4806cc8..38df183fe 100644 --- a/plugins/OpenID/openidadminpanel.php +++ b/plugins/OpenID/openidadminpanel.php @@ -257,7 +257,7 @@ class OpenIDAdminPanelForm extends AdminForm $this->out->checkbox( 'openidonly', _m('Enable OpenID-only mode'), (bool) $this->value('openidonly', 'site'), - _m('Require all users to login via OpenID. WARNING: disables password authentication for all users!'), + _m('Require all users to login via OpenID. Warning: disables password authentication for all users!'), 'true' ); $this->unli(); |